*, *::before, *::after { box-sizing: border-box; }
html { background: #f0eee9; }
body {
  margin: 0;
  color: #1a1a1a;
  background: #f0eee9;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 1.6;
}

:root {
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --ink-mute: #777;
  --line: #d8c9bf;
  --line-strong: #c5b3a8;
  --paper: #faf8f3;
  --paper-shade: #f0ede3;
  --accent: #b65d6b;
  --accent-soft: #f1dce0;
  --warm: #efc46f;
  --content-width: 1120px;
}

.artboard {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}
.wf {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(0,0,0,.025), transparent 58%),
    radial-gradient(ellipse at bottom right, rgba(0,0,0,.035), transparent 60%),
    var(--paper);
}
.wf > :not(header) { position: relative; z-index: 1; }
.wf > header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0,0,0,.32), rgba(0,0,0,.16) 52%, rgba(0,0,0,0));
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
}
.nav-logo {
  width: 172px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.18);
  font: 700 12px/1.2 "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: .08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.nav-links span,
.nav-links a {
  color: inherit;
  text-decoration: none;
}
.nav-mini {
  padding: 6px 12px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 2px;
  font-size: 13px;
}
.nav-entry {
  padding: 6px 12px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 2px;
  text-shadow: none;
  box-shadow: 2px 2px 0 rgba(255,255,255,.5);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #e8d4c8;
  border-bottom: 1.5px solid var(--line);
}
.hero-image {
  position: relative;
  width: 100%;
  height: clamp(560px, 56.25vw, 760px);
  background: #e8d4c8;
  border-bottom: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.is-active {
  opacity: 1;
}
.hero-slide--current {
  background-image: url("/img/company/recruitment/shebelle/hero.webp");
}
.hero-image::before,
.hero-image::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-image::before {
  inset: 0 auto 0 0;
  width: min(54%, 760px);
  background: linear-gradient(to right, rgba(18,14,14,.28), rgba(18,14,14,.14) 62%, rgba(18,14,14,0));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 68%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 68%, transparent 100%);
}
.hero-image::after {
  inset: 0;
  opacity: .62;
  background: linear-gradient(to right, rgba(0,0,0,.30), rgba(0,0,0,.10) 52%, rgba(0,0,0,0));
}
.ph::before,
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    linear-gradient(to top right, transparent calc(50% - .5px), var(--ink) calc(50% - .5px), var(--ink) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(to bottom right, transparent calc(50% - .5px), var(--ink) calc(50% - .5px), var(--ink) calc(50% + .5px), transparent calc(50% + .5px));
}
.hero-label,
.ph span {
  position: absolute;
  inset: auto 24px 24px auto;
  z-index: 1;
  padding: 4px 9px;
  color: var(--ink-mute);
  background: rgba(250,248,243,.9);
  border: 1px dashed rgba(26,26,26,.45);
  font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: .06em;
}
.hero-copy {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100vw - var(--content-width)) / 2 + 56px));
  z-index: 2;
  max-width: 560px;
  color: #fff;
  transform: translateY(-50%);
  text-shadow: 0 2px 10px rgba(0,0,0,.32);
}
.hero-kicker {
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
  opacity: .9;
  letter-spacing: .08em;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .02em;
}
.hero h1 mark {
  color: var(--warm);
  background: transparent;
}
.hero-lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.7;
  opacity: .94;
}
.hero-switcher {
  position: absolute;
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.34);
  border-top-color: rgba(255,255,255,.58);
  border-radius: 999px;
  background: rgba(26,22,22,.34);
  box-shadow: 0 12px 32px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.hero-switch {
  position: relative;
  width: 24px;
  height: 4px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  cursor: pointer;
  transition: width .28s ease, background-color .28s ease, transform .28s ease;
}
.hero-switch::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(90deg, var(--warm), #fff2c2);
  transition: opacity .28s ease;
}
.hero-switch:hover,
.hero-switch:focus-visible {
  background: rgba(255,255,255,.86);
  transform: translateY(-1px);
  outline: none;
}
.hero-switch.is-active {
  width: 42px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 0 18px rgba(239,196,111,.34);
}
.hero-switch.is-active::before {
  opacity: 1;
}

.section {
  padding: 72px 24px;
  border-bottom: 1.5px solid var(--line);
}
.section--no-bottom-divider {
  border-bottom: 0;
}
.section--transparent {
  background: transparent;
}
.section.alt { background: var(--paper-shade); }
.section.alt.section--transparent {
  background: transparent;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 12px;
}
.section > .section-head,
.section > .note,
.section > .about-grid,
.section > .feature-grid,
.section > .work-grid,
.section > .growth-grid,
.section > .welcome-grid {
  width: min(var(--content-width), 100%);
  margin-left: auto;
  margin-right: auto;
}
.sec-num {
  color: var(--ink-mute);
  font: 700 18px/1.3 Georgia, serif;
  letter-spacing: .12em;
}
.sec-num.light { color: rgba(255,255,255,.82); }
.section-title {
  margin-top: 8px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.35;
}
.section-right {
  color: var(--ink-mute);
  font: 700 18px/1.3 Georgia, serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.note {
  margin: 8px 0 36px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
}

.about-grid,
.work-grid,
.growth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}
.lead-title {
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
}
.scribble {
  padding: 0 2px;
  background-image: linear-gradient(transparent 78%, var(--accent) 78%, var(--accent) 94%, transparent 94%);
}
.body-copy {
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 2.05;
}
.body-copy p {
  margin: 0;
}
.body-copy p + p {
  margin-top: 18px;
}
.mobile-break {
  display: none;
}
.copy-panel {
  position: relative;
  padding: 28px;
  background: rgba(255,255,255,.56);
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
}
.copy-panel::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 2px;
  background: var(--accent);
}
.copy-panel .body-copy {
  font-size: 18px;
  line-height: 1.95;
}
.copy-panel .body-copy p {
  padding: 18px 20px;
  background: rgba(250,248,243,.72);
  border-left: 4px solid rgba(182,93,107,.72);
}
.copy-panel .body-copy p + p {
  margin-top: 14px;
}
.copy-panel .body-copy mark {
  padding: 0 4px;
  color: var(--ink);
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%);
  font-weight: 700;
}
.copy-panel--about {
  padding: 8px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.copy-panel--about::before {
  top: 0;
  left: 0;
  width: 120px;
  height: 2px;
}
.copy-panel--about .body-copy p {
  padding: 20px 0;
  background: transparent;
  border-left: 0;
  border-bottom: 1px dashed var(--line-strong);
}
.copy-panel--about .body-copy p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.copy-panel--work {
  padding: 10px 0 10px 34px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.copy-panel--work::before {
  top: 0;
  bottom: 0;
  left: 6px;
  width: 1px;
  height: auto;
  background: linear-gradient(to bottom, transparent, var(--accent) 16%, var(--accent) 84%, transparent);
}
.copy-panel--work .body-copy p {
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
  border: 0;
}
.copy-panel--work .body-copy p::before {
  content: "";
  position: absolute;
  top: .76em;
  left: -34px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(182,93,107,.42);
}
.copy-panel--work .body-copy p + p {
  margin-top: 28px;
  padding-top: 0;
  border-top: 0;
}
.copy-panel--work .body-copy p + p::before {
  top: .76em;
}
.copy-panel--work .body-copy mark {
  padding: 0;
  color: var(--accent);
  background: transparent;
  font-size: 1.06em;
}
.copy-panel--future {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 8px 8px 0 rgba(182,93,107,.22);
}
.copy-panel--future::before {
  background: var(--warm);
}
.copy-panel--future .body-copy {
  color: rgba(250,248,243,.88);
}
.copy-panel--future .body-copy p {
  padding: 0 0 18px;
  background: transparent;
  border-left: 0;
  border-bottom: 1px solid rgba(250,248,243,.2);
}
.copy-panel--future .body-copy p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.copy-panel--future .body-copy mark {
  color: var(--paper);
  background: linear-gradient(transparent 62%, rgba(239,196,111,.5) 62%);
}
.copy-panel--future-list {
  background: #fff;
  border-top: 5px solid var(--accent);
  box-shadow: 0 18px 42px rgba(26,26,26,.08);
}
.copy-panel--future-list::before {
  display: none;
}
.copy-panel--future-list .body-copy p {
  background: transparent;
  border-left: 0;
}
.copy-panel--future-list .body-copy p:nth-child(2) {
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid rgba(182,93,107,.22);
  font-weight: 700;
}
.section.future-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--paper-shade) 0%, var(--paper-shade) 46%, var(--paper) 46%, var(--paper) 100%);
}
.section.section--fixed-bg {
  background-image:
    linear-gradient(90deg, rgba(250,248,243,.34) 0%, rgba(250,248,243,.68) 34%, rgba(250,248,243,.84) 50%, rgba(250,248,243,.68) 66%, rgba(250,248,243,.34) 100%),
    linear-gradient(rgba(250,248,243,.22), rgba(250,248,243,.22)),
    url("/img/company/recruitment/shebelle/section-bg-luxury-01.webp?v=20260521-01");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.salon-recruit[data-salon-section-bg="02"] .section.section--fixed-bg {
  background-image:
    linear-gradient(90deg, rgba(250,248,243,.34) 0%, rgba(250,248,243,.68) 34%, rgba(250,248,243,.84) 50%, rgba(250,248,243,.68) 66%, rgba(250,248,243,.34) 100%),
    linear-gradient(rgba(250,248,243,.22), rgba(250,248,243,.22)),
    url("/img/company/recruitment/shebelle/section-bg-luxury-02.webp?v=20260521-01");
}
.salon-recruit[data-salon-section-bg="03"] .section.section--fixed-bg {
  background-image:
    linear-gradient(90deg, rgba(250,248,243,.34) 0%, rgba(250,248,243,.68) 34%, rgba(250,248,243,.84) 50%, rgba(250,248,243,.68) 66%, rgba(250,248,243,.34) 100%),
    linear-gradient(rgba(250,248,243,.22), rgba(250,248,243,.22)),
    url("/img/company/recruitment/shebelle/section-bg-luxury-03.webp?v=20260521-01");
}
.salon-recruit[data-salon-section-bg="04"] .section.section--fixed-bg {
  background-image:
    linear-gradient(90deg, rgba(250,248,243,.34) 0%, rgba(250,248,243,.68) 34%, rgba(250,248,243,.84) 50%, rgba(250,248,243,.68) 66%, rgba(250,248,243,.34) 100%),
    linear-gradient(rgba(250,248,243,.22), rgba(250,248,243,.22)),
    url("/img/company/recruitment/shebelle/section-bg-luxury-04.webp?v=20260521-01");
}
.salon-recruit[data-salon-section-bg="05"] .section.section--fixed-bg {
  background-image:
    linear-gradient(90deg, rgba(250,248,243,.34) 0%, rgba(250,248,243,.68) 34%, rgba(250,248,243,.84) 50%, rgba(250,248,243,.68) 66%, rgba(250,248,243,.34) 100%),
    linear-gradient(rgba(250,248,243,.22), rgba(250,248,243,.22)),
    url("/img/company/recruitment/shebelle/section-bg-luxury-05.webp?v=20260521-01");
}
.salon-recruit[data-salon-section-bg="06"] .section.section--fixed-bg {
  background-image:
    linear-gradient(90deg, rgba(250,248,243,.34) 0%, rgba(250,248,243,.68) 34%, rgba(250,248,243,.84) 50%, rgba(250,248,243,.68) 66%, rgba(250,248,243,.34) 100%),
    linear-gradient(rgba(250,248,243,.22), rgba(250,248,243,.22)),
    url("/img/company/recruitment/shebelle/section-bg-luxury-06.webp?v=20260521-01");
}
.salon-bg-switcher {
  display: none;
}
.salon-bg-switch {
  min-width: 42px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(26,26,26,.2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.salon-bg-switch:hover,
.salon-bg-switch.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}
.future-grid {
  position: relative;
  align-items: stretch;
  gap: 56px;
  margin-top: 34px;
}
.copy-panel--future,
.copy-panel--future-list {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.copy-panel--future::before,
.copy-panel--future-list::before {
  display: none;
}
.copy-panel--future {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.copy-panel--future .body-copy {
  position: relative;
  color: var(--ink);
  font-size: 19px;
  line-height: 2.08;
}
.copy-panel--future .body-copy::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent);
}
.copy-panel--future .body-copy p {
  padding: 0;
  background: transparent;
  border: 0;
}
.copy-panel--future .body-copy p:first-child {
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.9;
}
.copy-panel--future .body-copy p + p {
  margin-top: 22px;
}
.copy-panel--future .body-copy mark {
  color: var(--accent);
  background: transparent;
  font-weight: 700;
}
.copy-panel--future-list {
  position: relative;
  padding-left: 38px;
}
.copy-panel--future-list::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 11px;
  width: 1px;
  background: var(--line-strong);
}
.copy-panel--future-list .body-copy {
  color: var(--ink-soft);
}
.copy-panel--future-list .body-copy p {
  position: relative;
  padding: 22px 0 22px 24px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.copy-panel--future-list .body-copy p:last-child {
  border-bottom: 0;
}
.copy-panel--future-list .body-copy p::before {
  content: "";
  position: absolute;
  top: 31px;
  left: -32px;
  z-index: 1;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
}
.copy-panel--future-list .body-copy p:nth-child(2) {
  color: var(--ink);
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  font-weight: 400;
}
.copy-panel--future-list .body-copy mark {
  color: var(--ink);
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%);
  font-weight: 700;
}
.copy-lead {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.65;
}
.copy-lead mark {
  padding: 0 4px;
  color: var(--ink);
  background: linear-gradient(transparent 64%, var(--accent-soft) 64%);
}
.focus-box {
  margin: 18px 0;
  padding: 18px 20px;
  background: var(--paper-shade);
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.9;
}
.focus-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.focus-list li {
  padding: 12px 14px;
  background: rgba(250,248,243,.86);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}
.body-divider {
  margin: 30px 0;
  border: 0;
  border-top: 1.5px solid var(--line-strong);
}

.ph {
  position: relative;
  min-height: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-shade);
  border: 1.5px solid var(--line-strong);
}
.ph.has-image::before,
.ph.has-image::after {
  display: none;
}
.ph.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.ph.salon-image--right-zoom img {
  object-position: 74% center;
  transform: scale(1.05);
  transform-origin: 74% center;
}
.ph.feature-image--shift-down img {
  object-position: center 30%;
}
.ph.feature-image--shift-lower img {
  object-position: center 8%;
}
.ph.feature-image--shift-lowest img {
  object-position: center 10%;
}
.ph.feature-image--esthetician img {
  object-position: 70% center;
}
.ph.feature-image--hands img {
  object-position: center 78%;
}
.ph span {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.ph.salon { height: 340px; background: #e2d7cd; }
.ph.feature { height: 130px; background: #eadcd6; }
.ph.treatment { height: 220px; background: #dfd1ca; }
.ph.counseling { height: 180px; background: #ece0da; }
.ph.training { height: 260px; background: #e2d7cd; }

.philosophy {
  position: relative;
  min-height: 560px;
  padding: 140px 24px;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: url("/img/company/recruitment/shebelle/philosophy-bg.webp") center / cover no-repeat;
  border-bottom: 1.5px solid var(--line);
}
.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background:
    linear-gradient(to top right, transparent calc(50% - .5px), var(--ink) calc(50% - .5px), var(--ink) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(to bottom right, transparent calc(50% - .5px), var(--ink) calc(50% - .5px), var(--ink) calc(50% + .5px), transparent calc(50% + .5px));
}
.philosophy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.58) 0%, rgba(0,0,0,.48) 42%, rgba(0,0,0,.32) 72%, rgba(0,0,0,.24) 100%),
    linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.12) 24%, rgba(0,0,0,.12) 76%, rgba(0,0,0,.36));
}
.philosophy::before { display: none; }
.philosophy-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
  text-shadow:
    0 1px 1px rgba(0,0,0,.95),
    0 2px 4px rgba(0,0,0,.9),
    0 6px 18px rgba(0,0,0,.82),
    0 14px 36px rgba(0,0,0,.72);
}
.mission {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
}
.philosophy .sec-num {
  font-size: 20px;
}
.philosophy h2 {
  margin: 16px 0 40px;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .12em;
  text-shadow:
    0 1px 1px rgba(0,0,0,1),
    0 3px 8px rgba(0,0,0,.95),
    0 10px 28px rgba(0,0,0,.88),
    0 20px 46px rgba(0,0,0,.78);
}
.philosophy h2 .award-accent { border-bottom: 3px solid var(--warm); }
.nowrap {
  white-space: nowrap;
}
.philosophy p {
  max-width: 528px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.9;
  opacity: 1;
  text-shadow:
    0 1px 1px rgba(0,0,0,1),
    0 2px 5px rgba(0,0,0,.95),
    0 6px 18px rgba(0,0,0,.85),
    0 12px 32px rgba(0,0,0,.75);
}
.philosophy p + p {
  margin-top: 18px;
}
.philosophy-text-left {
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.card {
  position: relative;
  padding: 20px;
  background: var(--paper);
  border: 2px solid var(--line-strong);
  border-radius: 4px;
}
.feature-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-no {
  color: var(--accent);
  font: 700 28px/1 Georgia, serif;
}
.feature-card .card-no {
  margin-bottom: 12px;
}
.card-title {
  margin: 10px 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}
.card-copy {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}
.feature-card .card-copy {
  font-weight: 700;
}

.work-grid {
  display: block;
  align-items: stretch;
  margin-top: 0;
}
.work-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.work-set + .work-set {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1.5px solid var(--line-strong);
}
.work-set:nth-of-type(even) .work-set__image {
  order: -1;
}
.work-set .ph {
  height: 280px;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line-strong);
}
.step-no {
  color: var(--accent);
  font: 700 28px/1.25 Georgia, serif;
}
.step-title {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 700;
}
.step-copy {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}
.image-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 100%;
}
.work-grid .ph.treatment,
.work-grid .ph.counseling {
  height: auto;
  min-height: 0;
}

.growth-grid {
  align-items: start;
  margin-top: 0;
  gap: 40px;
}
.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mini-card {
  padding: 20px;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
}
.mini-card-title {
  margin-bottom: 8px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.45;
}
.mini-card-copy {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}
.quote {
  margin-top: 16px;
  padding: 22px;
  background: var(--paper-shade);
  border-left: 3px solid var(--accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.9;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.welcome-card {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 118px;
  padding: 20px 22px;
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: 4px;
}
.welcome-no {
  flex: 0 0 74px;
  color: var(--accent);
  font: 700 46px/1 Georgia, serif;
  text-align: center;
}
.welcome-card .card-title {
  font-size: 22px;
  line-height: 1.25;
}
.welcome-card .card-copy {
  font-size: 17px;
  line-height: 1.45;
}

.cta {
  position: relative;
  padding: 80px 24px;
  color: var(--paper);
  text-align: center;
  background: var(--ink);
}
.cta h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}
.cta p {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8;
  opacity: .9;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: min(var(--content-width), 100%);
  margin: 0 auto;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: 3px;
  box-shadow: 2px 2px 0 currentColor;
  font: 700 14px/1.3 "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.button:hover,
.button:focus-visible {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--accent);
  transform: translate(-2px, -2px);
  outline: none;
}
.button:active {
  box-shadow: 1px 1px 0 currentColor;
  transform: translate(1px, 1px);
}
.button.dark {
  color: var(--paper);
  background: transparent;
  border-color: var(--paper);
  box-shadow: 2px 2px 0 var(--paper);
}
.button.dark:hover,
.button.dark:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--accent);
}
.button.primary {
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
}
.job-dialog {
  position: fixed;
  top: clamp(190px, var(--job-dialog-top, 50vh), calc(100vh - 150px));
  left: 50%;
  z-index: 2000;
  width: min(760px, calc(100vw - 48px));
  max-height: min(680px, calc(100vh - 48px));
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  overflow: visible;
  transform: translate(-50%, -50%);
}
.job-dialog::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(26,26,26,.58);
}
.job-dialog:not([open]) {
  display: none;
}
.job-dialog__panel {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  color: var(--ink);
  text-align: center;
  background: var(--paper);
  border: 2px solid var(--line-strong);
  border-radius: 4px;
  box-shadow: 8px 8px 0 rgba(182,93,107,.42);
}
.job-dialog__close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  font: 700 22px/1 "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-decoration: none;
}
.job-dialog h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}
.job-dialog p {
  max-width: 100%;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.cta-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.cta-job-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
  padding: 18px;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 3px;
  box-shadow: 2px 2px 0 currentColor;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.cta-job-card:hover,
.cta-job-card:focus-visible {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--accent);
  transform: translate(-2px, -2px);
  outline: none;
}
.cta-job-card__name {
  font: 700 16px/1.45 "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.cta-job-card__label {
  margin-top: 8px;
  font: 700 12px/1.4 "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: .04em;
  opacity: .74;
}
@media (max-width: 900px) {
  .artboard { border-left: 0; border-right: 0; margin-bottom: 0; }
  .salon-recruit {
    --salon-mobile-section-bg: url("/img/company/recruitment/shebelle/section-bg-luxury-01-mobile.webp?v=20260521-01");
  }
  .salon-recruit[data-salon-section-bg="02"] {
    --salon-mobile-section-bg: url("/img/company/recruitment/shebelle/section-bg-luxury-02-mobile.webp?v=20260521-01");
  }
  .salon-recruit[data-salon-section-bg="03"] {
    --salon-mobile-section-bg: url("/img/company/recruitment/shebelle/section-bg-luxury-03-mobile.webp?v=20260521-01");
  }
  .salon-recruit[data-salon-section-bg="04"] {
    --salon-mobile-section-bg: url("/img/company/recruitment/shebelle/section-bg-luxury-04-mobile.webp?v=20260521-01");
  }
  .salon-recruit[data-salon-section-bg="05"] {
    --salon-mobile-section-bg: url("/img/company/recruitment/shebelle/section-bg-luxury-05-mobile.webp?v=20260521-01");
  }
  .salon-recruit[data-salon-section-bg="06"] {
    --salon-mobile-section-bg: url("/img/company/recruitment/shebelle/section-bg-luxury-06-mobile.webp?v=20260521-01");
  }
  .wf {
    background:
      linear-gradient(90deg, rgba(250,248,243,.38) 0%, rgba(250,248,243,.76) 36%, rgba(250,248,243,.88) 50%, rgba(250,248,243,.76) 64%, rgba(250,248,243,.38) 100%),
      linear-gradient(rgba(250,248,243,.24), rgba(250,248,243,.24)),
      var(--salon-mobile-section-bg);
    background-attachment: scroll;
    background-position: center top;
    background-repeat: repeat-y;
    background-size: 100% auto;
  }
  .nav {
    min-height: 66px;
    padding: 12px 18px;
  }
  .nav-links { gap: 12px; font-size: 12px; }
  .nav-links span:nth-child(n+3):nth-child(-n+5) { display: none; }
  .nav-logo { width: 132px; }
  .hero-image { min-height: 560px; aspect-ratio: auto; }
  .hero-image::before {
    width: 86%;
    background: linear-gradient(to right, rgba(18,14,14,.28), rgba(18,14,14,.12) 42%, rgba(18,14,14,0));
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0%, #000 42%, transparent 100%);
  }
  .hero-slide--current {
    background-image: url("/img/company/recruitment/shebelle/hero-mobile-01.webp");
  }
  .hero-copy { left: 24px; right: 24px; max-width: none; }
  .hero h1 { font-size: clamp(30px, 8.4vw, 42px); }
  .hero-lead { font-size: clamp(18px, 5vw, 22px); }
  .section,
  .philosophy,
  .cta { padding: 56px 24px; }
  .section.section--fixed-bg {
    background: transparent;
    background-attachment: scroll;
  }
  .salon-recruit[data-salon-section-bg] .section.section--fixed-bg {
    background: transparent;
    background-attachment: scroll;
  }
  .salon-bg-switcher {
    right: 10px;
    bottom: 10px;
    max-width: calc(100vw - 20px);
    overflow-x: auto;
  }
  .section-title { font-size: 30px; }
  .about-grid,
  .work-grid,
  .growth-grid,
  .welcome-grid { grid-template-columns: 1fr; gap: 28px; }
  .work-set { grid-template-columns: 1fr; gap: 20px; }
  .work-set:nth-of-type(even) .work-set__image { order: 0; }
  .cta-job-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .ph.feature {
    height: 230px;
  }
  .ph.feature-image--zoom img {
    transform: scale(1.05);
    transform-origin: center 0;
  }
  .philosophy h2 { font-size: clamp(21px, 5.4vw, 28px); }
  .philosophy h2 .nowrap { white-space: nowrap; }
  .philosophy .sec-num { font-size: 17px; }
  .mission { font-size: 16px; }
  .philosophy p {
    font-size: 15px;
    text-align: left;
  }
  .step {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .welcome-card {
    gap: 12px;
  }
  .welcome-no {
    flex-basis: 58px;
    font-size: 40px;
  }
  .welcome-card .card-title {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .nav-links span:not(.nav-entry),
  .nav-mini { display: none; }
  .nav { justify-content: space-between; }
  .feature-grid,
  .training-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .lead-title { font-size: 23px; }
  .cta h2 {
    font-size: 24px;
    line-height: 1.45;
  }
  .cta p {
    font-size: 15px;
    line-height: 1.75;
  }
  .cta p br { display: none; }
  .hero-switcher {
    right: 14px;
    bottom: 16px;
    gap: 8px;
    padding: 8px 10px;
  }
  .copy-panel {
    padding: 22px 0;
  }
  .copy-panel .body-copy p {
    padding: 16px 14px;
  }
  .copy-panel--about .body-copy p,
  .copy-panel--about .body-copy mark {
    padding-right: 0;
    padding-left: 0;
  }
  .copy-panel--work {
    padding: 10px 0 10px 34px;
  }
  .copy-panel--work .body-copy p {
    padding: 0;
  }
  .copy-panel--future-list {
    padding: 0 0 0 30px;
  }
  .copy-panel--future-list::after {
    left: 4px;
  }
  .copy-panel--future .body-copy {
    font-size: 16px;
    line-height: 1.95;
  }
  .copy-panel--future .body-copy p {
    padding: 0;
  }
  .mobile-break {
    display: block;
  }
  .copy-panel--future .body-copy p:first-child {
    font-size: 16px;
    line-height: 1.85;
  }
  .copy-panel--future .body-copy p:first-child mark {
    padding: 0;
    font-size: .95em;
  }
  .copy-panel--future-list .body-copy {
    font-size: 15px;
    line-height: 1.8;
  }
  .copy-panel--future-list .body-copy p {
    padding: 20px 0;
  }
  .copy-panel--future-list .body-copy p::before {
    left: -31px;
  }
  .copy-lead {
    font-size: 19px;
  }
  .cta-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .job-dialog {
    top: 50%;
    width: min(100vw - 28px, 760px);
    max-height: calc(100vh - 28px);
  }
  .job-dialog__panel {
    max-height: calc(100vh - 28px);
    padding: 34px 12px 22px;
  }
  .job-dialog h3 {
    font-size: 16px;
    line-height: 1.35;
    white-space: nowrap;
  }
  .job-dialog p {
    font-size: 11px;
    line-height: 1.6;
    white-space: nowrap;
  }
}
