/* ========== Staff LP ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sl-blue: #4a6fa5;
  --sl-blue-dark: #375a8c;
  --sl-blue-light: #eef2f8;
  --sl-gold: #b8973c;
  --sl-text: #2c2c2c;
  --sl-gray: #666;
  --sl-bg: #fff;
  --sl-bg2: #f4f7fb;
}

body.staff-lp {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  color: var(--sl-text);
  background: var(--sl-bg);
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ---- ヘッダー ---- */
.sl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

.sl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
  height: 56px;
}

.sl-header__logo img {
  height: 36px;
  width: auto;
}

.sl-header__line {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 8px;
  background: #06c755;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 16px;
  border-radius: 0;
  text-decoration: none;
}

.sl-header__line img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---- 共通ボタン ---- */
.sl-btn {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  background: linear-gradient(135deg, var(--sl-blue), var(--sl-blue-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 48px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(74, 111, 165, 0.35);
  transition: opacity 0.2s;
}

.sl-btn:hover {
  opacity: 0.85;
}

.sl-btn--white {
  background: #fff;
  color: var(--sl-blue-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ---- バッジ ---- */
.sl-job__badge,
.sl-wishes__badge,
.sl-points__badge,
.sl-voices__badge,
.sl-flow__badge,
.sl-faq__badge,
.sl-shop__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--sl-gold), #9a7a28);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 18px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ========== HERO ========== */
.sl-hero {
  position: relative;
  height: calc(100svh - 56px);
  min-height: 600px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.sl-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.sl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.95) 100%);
}

.sl-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sl-hero__top-text {
  text-align: center;
}

.sl-hero__top-text p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #fff;
  font-size: clamp(12px, 6vw, 27px);
  line-height: 1.8;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-shadow: 0 0 3px #BAB58A;
}

.sl-hero__bottom-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sl-hero__logo-wrap {
  margin-bottom: 24px;
}

.sl-hero__logo-img {
  width: 180px;
  height: auto;
}

.sl-hero__bottom-text {
  text-align: center;
  margin-bottom: 24px;
}

.sl-hero__bottom-text p {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #fff;
  font-size: 27px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-shadow: 0 0 3px #BAB58A;
}

.sl-hero__badge-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sl-hero__badge-text span {
  color: #999;
}

.sl-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.sl-hero__grid-item {
  border: 1px solid #fff;
  color: #fff;
  font-size: 11px;
  text-align: center;
  padding: 8px 4px;
  letter-spacing: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* ========== APPEAL ========== */
.sl-appeal {
  background: var(--sl-bg);
  padding-top: 60px;
  text-align: center;
}

.sl-appeal__card {
  margin-bottom: 56px;
}

.sl-appeal__card:last-child {
  margin-bottom: 0;
}

.sl-appeal__body {
  padding: 0 24px 32px;
}

.sl-appeal__bg {
  width: calc(100% - 40px);
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

.sl-appeal__bg--flat {
  width: 100%;
  margin: 0;
  border-radius: 20px 20px 0 0;
}

.sl-appeal__title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  color: #C5933E;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 24px;
}

.sl-appeal__text {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: #484848;
  line-height: 2;
  letter-spacing: 0.03em;
}

.sl-appeal__text span {
  color: #C5933E;
}

/* ========== こんな仕事です ========== */
.sl-job {
  background: var(--sl-bg);
  padding: 72px 24px;
  text-align: center;
}

.sl-job__inner {
  max-width: 480px;
  margin: 0 auto;
}

.sl-job__heading {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 32px;
}

.sl-job__heading span {
  color: var(--sl-blue);
}

.sl-job__img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.sl-job__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.sl-job__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sl-job__list li {
  font-size: 14px;
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.sl-job__list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--sl-blue);
  font-weight: 700;
}

/* ========== こんな希望 ========== */
.sl-wishes {
  background: url(../img/0d7b87b0f7b52f939dfa322492835221.jpg);
  padding: 60px 24px 0;
  text-align: center;
}

.sl-wishes__inner {
  max-width: 480px;
  margin: 0 auto;
}

.sl-wishes__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  color: #484848;
  line-height: 1.5;
  margin-bottom: 40px;
}

.sl-wishes__heading span {
  color: #5460A7;
  font-size: 36px;
}

.sl-wishes__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 8px;
}

.sl-wishes__list li {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #484848;
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
}

.sl-wishes__list li::before {
  content: '▶';
  font-family: sans-serif;
  position: absolute;
  left: 0;
  top: 2px;
  color: #484848;
  font-size: 18px;
}

.sl-wishes__img {
  margin-top: 40px;
  margin-right: -24px;
  overflow: hidden;
  border-radius: 30px 0 0 0;
}

.sl-wishes__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ========== 5つの待遇 ========== */
.sl-points {
  background: var(--sl-bg2);
  padding: 50px 24px;
  text-align: center;
}

.sl-points__inner {
  max-width: 480px;
  margin: 0 auto;
}

.sl-points__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  color: #484848;
  line-height: 1.3;
  margin-bottom: 48px;
}

.sl-points__heading span {
  color: #5460A7;
  font-size: 36px;
}

.sl-point {
  text-align: left;
  margin-bottom: 40px;
  background: #fff;
  padding: 40px 32px 32px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sl-point__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5460A7;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 6px 32px;
  position: absolute;
  top: 16px;
  left: -24px;
}

.sl-point__head {
  position: relative;
  margin-top: 32px;
  margin-bottom: 24px;
}

.sl-point__title {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #484848;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.sl-point__en {
  font-size: 12px;
  font-family: "Noto Serif JP", serif;
  color: #C5933E;
  font-weight: 500;
  letter-spacing: 0.05em;
  /* margin-top: 6px; */
  position: relative;
  z-index: 1;
}

.sl-point__icon {
  position: absolute;
  right: -10px;
  top: -30px;
  width: 90px;
  height: 90px;
  object-fit: contain;
  opacity: 0.2;
  z-index: 0;
}

.sl-point__desc {
  font-size: 15px;
  color: #484848;
  line-height: 2;
  position: relative;
  z-index: 1;
}

/* ========== 先輩の声 ========== */
.sl-voices {
  background: var(--sl-bg);
  padding: 60px 24px;
  text-align: center;
}

.sl-voices__inner {
  max-width: 480px;
  margin: 0 auto;
}

.sl-voices__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  color: #484848;
  margin-bottom: 48px;
}

.sl-voices__heading span {
  color: #5460A7;
  font-size: 36px;
}

.sl-voice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.sl-voice:last-child {
  margin-bottom: 0;
}

.sl-voice__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sl-voice__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sl-voice__text {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: #484848;
  line-height: 2;
  text-align: left;
}

.sl-voice__name {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  color: #666;
  text-align: right;
  width: 100%;
  margin-top: -8px;
}

/* ========== 入店までの流れ ========== */
.sl-flow {
  background: var(--sl-bg2);
  padding: 50px 24px;
  text-align: center;
}

.sl-flow__inner {
  max-width: 480px;
  margin: 0 auto;
}

.sl-flow__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  color: #484848;
  font-weight: 600;
  margin-bottom: 40px;
}

.sl-flow__steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: left;
}

.sl-flow__step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.sl-flow__step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.sl-flow__step-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sl-flow__step-num {
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  color: #5460A7;
  line-height: 1;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
  width: fit-content;
}

.sl-flow__step-num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -24px;
  width: calc(100% + 32px);
  height: 2px;
  background-color: #5460A7;
  opacity: 0.5;
}

.sl-flow__step-title {
  font-size: 25px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #484848;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.sl-flow__step-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  color: #484848;
  line-height: 2;
}

.sl-flow__step-img {
  width: 150px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.sl-flow__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== FAQ ========== */
.sl-faq {
  background: var(--sl-bg);
  padding-top: 72px;
  text-align: center;
}

.sl-faq__inner {
  max-width: 480px;
  padding: 0 24px;
  margin: 0 auto;
}

.sl-faq__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  color: #484848;
  font-weight: 600;
  margin-bottom: 40px;
}

.sl-faq__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sl-faq__item {
  background: #F4F6FB;
  border-radius: 8px;
}

.sl-faq__q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #484848;
  cursor: pointer;
  text-align: left;
  line-height: 1.6;
}

.sl-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #5460A7;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sl-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.sl-faq__a p {
  font-size: 14px;
  color: #666;
  line-height: 2.0;
  padding-bottom: 28px;
}

.sl-faq__item.is-open .sl-faq__a {
  max-height: 300px;
}

.sl-faq__img {
  display: block;
  width: 100%;
  object-fit: cover;
  margin-top: 50px;
}

/* ========== 店舗情報 ========== */
.sl-shop {
  background-image: url('../img/0d7b87b0f7b52f939dfa322492835221.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 60px;
  text-align: center;
}

.sl-shop__inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

.sl-shop__header {
  margin-bottom: 48px;
}

.sl-shop__en {
  display: block;
  font-family: "Noto Serif JP", serif;
  color: #5460A7;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.sl-shop__heading {
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #484848;
  letter-spacing: 0.1em;
}

.sl-shop__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sl-shop__block {
  text-align: center;
}

.sl-shop__name {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  color: #5460A7;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.sl-shop__label {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  color: #5460A7;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.sl-shop__text {
  font-size: 17px;
  color: #484848;
  line-height: 2;
}

.sl-shop__tel {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  color: #484848;
}

.sl-shop__tel-label {
  color: #5460A7;
  font-weight: 500;
}

.sl-shop__tel a {
  color: #484848;
  text-decoration: underline;
  text-decoration-color: #484848;
  text-underline-offset: 4px;
}

.sl-shop__map {
  margin-top: 40px;
  overflow: hidden;
}

.sl-shop__map iframe {
  display: block;
}

/* ========== CTA ========== */
.sl-cta {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}

.sl-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.sl-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 35, 60, 0.78);
}

.sl-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.sl-cta__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.sl-cta__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.sl-cta__tel {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* ========== FOOTER ========== */
.sl-footer {
  color: #484848;
  padding: 24px;
  text-align: center;
}

.sl-footer__copy {
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ========== 簡易レスポンシブ (PC対応) ========== */
@media screen and (min-width: 768px) {
  body.staff-lp {
    background-color: #f5f5f5;
  }
  .sl-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    position: relative;
    overflow-x: hidden;
  }
}