/* =========================================================
   梨花和服 採用LP — recruit-lp.css
   PCファースト / 単一カラム（最大幅480px・中央寄せ）
   ブレークポイント：max-width: 768px（スマートフォン）
   ========================================================= */

/* ---- デザイントークン ---- */
:root {
  /* color */
  --rose: #c26b7c; /* メインアクセント / CTA */
  --rose-deep: #b85c6e; /* テキストアクセント */
  --pink-bg: #f7dce0; /* バッジ・ピル背景 */
  --ink: #463a37; /* 見出し */
  --ink-soft: #5c4e48; /* 本文 */
  --ink-mute: #7a655d; /* 補足 */
  --ink-faint: #8a766f;
  --base: #fcf7f2; /* 基本背景 */
  --beige: #f6ebe0; /* セクション背景 */
  --pink-tint: #fbf1ee; /* 実績セクション背景 */
  --line: #ebd9d0; /* 罫線・枠 */
  --white: #ffffff;
  --footer-bg: #463a37;

  /* タグ配色 */
  --tag-pink-bg: #f7dce0;
  --tag-pink-fg: #b85c6e;
  --tag-peach-bg: #fbe3cd;
  --tag-peach-fg: #c58a53;
  --tag-sage-bg: #e9ecd6;
  --tag-sage-fg: #7e8a4f;
  --tag-blue-bg: #e1e7ec;
  --tag-blue-fg: #6e8197;
  --tag-lilac-bg: #f0e1ec;

  /* type */
  --f-round: "M PLUS Rounded 1c", sans-serif;
  --f-body: "Zen Kaku Gothic New", sans-serif;

  /* radius / shadow */
  --r-card: 16px;
  --r-cta: 16px;
  --shadow-cta: 0 10px 20px rgba(194, 107, 124, 0.32);
  --shadow-card: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* ---- 特定の設定 ---- */
body.page-recruit-marketing {
  margin: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: #e8ddd3;
  line-height: 1.6;
}
/* ---- レイアウト枠（PCではカード表示、SPでは全幅） ---- */
.recruit_lp {
  max-width: 580px;
  margin: 24px auto;
  background: var(--base);
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(70, 58, 55, 0.14);
}

@media (max-width: 768px) {
  .recruit_lp {
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ---- 共通 ---- */
.section {
  padding: 30px 22px;
}
.section--base {
  background: var(--base);
}
.section--beige {
  background: var(--beige);
}
.section--pink {
  background: var(--pink-tint);
}

.eyebrow {
  display: inline-block;
  background: var(--pink-bg);
  color: var(--rose-deep);
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
}
.section__lead {
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* ---- CTA ボタン ---- */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  padding: 17px;
  border: none;
  border-radius: var(--r-cta);
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(194, 107, 124, 0.4);
}
.cta:active {
  transform: translateY(0);
}
.cta--full {
  width: 100%;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(168deg, #fbe6e2 0%, #fcf1eb 58%, #fcf7f2 100%);
  padding: 22px 22px 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}
.brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 15px;
}
.brand__name {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink-faint);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--rose-deep);
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(194, 107, 124, 0.12);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 34px;
  line-height: 1.32;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 16px;
}
.accent {
  color: var(--rose);
}

/* タグ */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 20px;
}
.tag {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 13px;
  border-radius: 11px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
.tag--pink {
  background: var(--tag-pink-bg);
  color: var(--tag-pink-fg);
  /* transform: rotate(-3deg); */
}
.tag--peach {
  background: var(--tag-peach-bg);
  color: var(--tag-peach-fg);
  /* transform: rotate(2deg); */
}
.tag--sage {
  background: var(--tag-sage-bg);
  color: var(--tag-sage-fg);
  /* transform: rotate(-2deg); */
}
.tag--blue {
  background: var(--tag-blue-bg);
  color: var(--tag-blue-fg);
  /* transform: rotate(2.5deg); */
}

/* カルーセル */
.hero__carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hero__carousel::-webkit-scrollbar {
  display: none;
}
.slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 写真差し替え時はこの背景を削除し <img> を入れてください */
  background: repeating-linear-gradient(
    45deg,
    #ecddd3,
    #ecddd3 12px,
    #f5eae0 12px,
    #f5eae0 24px
  );
}
.slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide__no {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: "SF Mono", Menlo, monospace;
  font-size: 11px;
  color: #9c7f86;
  background: rgba(255, 255, 255, 0.85);
  padding: 5px 10px;
  border-radius: 8px;
}
.slide__ph {
  font-family: "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: #9c857a;
  background: rgba(255, 255, 255, 0.82);
  padding: 7px 13px;
  border-radius: 9px;
  text-align: center;
  line-height: 1.5;
}
.hero__dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #e3c9cf;
  transition: all 0.25s ease;
}
.hero__dot.is-active {
  width: 22px;
  background: var(--rose);
}
.hero__hint {
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
  font-size: 11px;
  color: #b0958c;
}

.hero__lead {
  margin: 18px 0 22px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-mute);
}

/* チップ */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}
.chip {
  font-weight: 700;
  font-size: 12px;
  color: var(--ink-mute);
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 11px;
  border-radius: 10px;
}

/* ========== こんな方へ ========== */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: #fff;
  border-radius: 14px;
  padding: 15px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.check b {
  font-weight: 700;
  color: var(--ink);
}
.check__mark {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ========== STATS ========== */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 20px;
}
.stat {
  background: #fff;
  border-radius: var(--r-card);
  padding: 18px 16px;
}
.stat__num {
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 27px;
  color: var(--rose);
  line-height: 1.1;
}
.stat__num span {
  font-size: 15px;
}
.stat__label {
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 6px;
}
.note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: #fff;
  border-radius: 13px;
  padding: 12px 15px;
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ========== 仕事内容 ========== */
.jobs {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 20px;
}
.job {
  background: #fff;
  border-radius: var(--r-card);
  padding: 17px;
  display: flex;
  gap: 13px;
}
.job__no {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--rose);
  color: #fff;
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job__title {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}
.job__desc {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-mute);
}

.skillbox {
  margin-top: 18px;
  background: var(--beige);
  border-radius: var(--r-card);
  padding: 18px 17px;
}
.skillbox__title {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 11px;
}
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill {
  font-weight: 700;
  font-size: 12px;
  color: var(--rose-deep);
  background: #fff;
  padding: 7px 12px;
  border-radius: 999px;
}

/* ========== ママが働きやすい理由 ========== */
.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 20px;
}
.perk {
  background: #fff;
  border-radius: var(--r-card);
  padding: 16px 15px;
}
.perk__icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 11px;
}
.perk__icon--peach {
  background: var(--tag-peach-bg);
}
.perk__icon--blue {
  background: var(--tag-blue-bg);
}
.perk__icon--sage {
  background: var(--tag-sage-bg);
}
.perk__icon--pink {
  background: var(--tag-pink-bg);
}
.perk__icon--lilac {
  background: var(--tag-lilac-bg);
}
.perk__title {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.perk__desc {
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 4px;
  line-height: 1.6;
}

/* ========== 募集要項 ========== */
.terms {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 20px;
}
.term {
  padding: 15px 17px;
}
.term + .term {
  border-top: 1px solid #f2e7dd;
}
.term dt {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 12px;
  color: var(--rose-deep);
  margin-bottom: 5px;
}
.term dd {
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ========== 選考フロー ========== */
.flow {
  margin-top: 20px;
}
.flow__step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.flow__step + .flow__step {
  margin-top: 16px;
  position: relative;
}
.flow__step + .flow__step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -16px;
  width: 2px;
  height: 16px;
  background: #e3c9cf;
}
.flow__no {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e3c9cf;
  color: var(--rose);
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__no--fill {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}
.flow__label {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

/* ========== 応募フォーム ========== */
.section--entry {
  background: linear-gradient(180deg, #fbe6e2 0%, #fcf1eb 100%);
  padding: 32px 22px 36px;
}
.entry__head {
  text-align: center;
  margin-bottom: 22px;
}
.entry__kicker {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 13px;
  color: var(--rose);
  margin-bottom: 8px;
}
.entry__title {
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 8px;
}
.entry__lead {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-mute);
}

.entry-form {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(194, 107, 124, 0.12);
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.req {
  color: var(--rose);
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--base);
  color: var(--ink);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
}
.field input:invalid:not(:placeholder-shown) {
  border-color: #d98a8a;
}
.field textarea {
  resize: vertical;
}
.entry-form .cta {
  margin-top: 6px;
}
.entry-form__note {
  margin-top: 13px;
  text-align: center;
  font-weight: 500;
  font-size: 11px;
  color: #9c857a;
}

.entry-done {
  background: #fff;
  border-radius: 20px;
  padding: 38px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(194, 107, 124, 0.12);
}
.entry-done__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 18px;
}
.entry-done__title {
  font-family: var(--f-round);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}
.entry-done__text {
  font-weight: 500;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-mute);
}

/* ========== footer ========== */
.footer {
  background: var(--footer-bg);
  padding: 30px 22px 34px;
}
.brand--footer {
  margin-bottom: 18px;
}
.footer__name {
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.company {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.company__row {
  display: flex;
  gap: 12px;
}
.company__row dt {
  flex: none;
  width: 74px;
  font-family: var(--f-round);
  font-weight: 700;
  font-size: 11.5px;
  color: #c9ada6;
}
.company__row dd {
  font-weight: 500;
  font-size: 12.5px;
  line-height: 1.6;
  color: #ede3dd;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}
.footer__links a {
  font-weight: 700;
  font-size: 11.5px;
  color: #fbe6e2;
  text-decoration: none;
  border: 1px solid #6b5c57;
  padding: 7px 13px;
  border-radius: 999px;
}
.footer__copy {
  margin-top: 22px;
  font-weight: 500;
  font-size: 10.5px;
  color: #9c8b84;
}

/* アニメーションを控える設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
