/* ═══════════════════════════════════════════
   はなあかり — 下層ページ共通スタイル
   style.css（ヘッダー/メニュー/ボタン/フッター）に追加で読み込む
═══════════════════════════════════════════ */
.page { position: relative; z-index: 1; }

/* ── ページヒーロー ── */
.page-hero {
  position: relative; z-index: 1;
  padding: 190px 24px 70px; text-align: center;
  background:
    radial-gradient(ellipse 60% 70% at 15% 10%, rgba(242,160,194,.22), transparent 60%),
    radial-gradient(ellipse 55% 60% at 88% 90%, rgba(237,231,154,.3), transparent 60%),
    var(--white);
  overflow: hidden;
}
.page-hero__en {
  display: block; font-family: var(--en); font-weight: 500;
  font-size: clamp(46px, 8vw, 84px); line-height: 1;
  background: linear-gradient(120deg, var(--pink), var(--yellow-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .85;
}
.page-hero__ja { font-weight: 700; font-size: clamp(22px, 3vw, 30px); letter-spacing: .16em; margin-top: 2px; }
.page-hero__ja::after {
  content: ""; display: block; margin: 16px auto 0;
  width: 50px; height: 8px; border-radius: 8px;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
}
.breadcrumb { margin-top: 26px; font-size: 12px; letter-spacing: .1em; color: var(--muted); }
.breadcrumb a { color: var(--pink-deep); }
.breadcrumb span { margin: 0 8px; opacity: .6; }

/* ── 本文コンテナ ── */
.page-body { max-width: 880px; margin: 0 auto; padding: 80px 24px 120px; position: relative; z-index: 1; }
.page-body--wide { max-width: 1040px; }

.block { margin-bottom: 72px; }
.block:last-child { margin-bottom: 0; }
.block__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 30px; }
.block__num { font-family: var(--en); font-weight: 600; font-size: 22px; color: var(--pink-deep); }
.block__title {
  font-weight: 700; font-size: clamp(19px, 2.3vw, 25px); letter-spacing: .12em;
}
.block__title::after {
  content: ""; display: inline-block; margin-left: 14px; vertical-align: middle;
  width: 40px; height: 7px; border-radius: 7px;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
}

.prose p { font-size: 15px; color: #6d5f52; margin-bottom: 20px; line-height: 2.1; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 700; }

.lead {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(18px, 2.4vw, 24px); line-height: 2; letter-spacing: .08em;
  color: var(--ink); margin-bottom: 30px;
}
.lead em { font-style: normal; color: var(--pink-deep); }

/* ── 方針カード（在り方） ── */
.principle {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.principle__item {
  background: #fff; border-radius: 20px; padding: 30px 30px 32px;
  box-shadow: 0 12px 40px rgba(85,70,60,.08);
  border-top: 8px solid;
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s;
}
.principle__item:hover { transform: translateY(-6px); box-shadow: 0 22px 56px rgba(85,70,60,.14); }
.principle__item:nth-child(6n+1) { border-color: var(--pink); }
.principle__item:nth-child(6n+2) { border-color: var(--yellow); }
.principle__item:nth-child(6n+3) { border-color: var(--peach); }
.principle__item:nth-child(6n+4) { border-color: var(--pink); }
.principle__item:nth-child(6n+5) { border-color: var(--yellow); }
.principle__item:nth-child(6n+6) { border-color: var(--peach); }
.principle__no { font-family: var(--en); font-weight: 600; font-size: 30px; color: rgba(226,123,166,.5); line-height: 1; }
.principle__item p { font-size: 14.5px; color: #6d5f52; margin-top: 10px; line-height: 1.95; }

/* ── 代表・スタッフ ── */
.leader {
  display: flex; gap: 40px; align-items: flex-start;
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 16px 50px rgba(85,70,60,.10);
}
.leader__badge {
  flex: 0 0 150px; height: 150px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--peach) 60%, var(--yellow));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; gap: 4px;
}
.leader__badge small { font-size: 11px; letter-spacing: .2em; opacity: .9; }
.leader__badge b { font-size: 22px; letter-spacing: .1em; }
.leader__photo {
  flex: 0 0 160px; width: 160px; height: 160px; border-radius: 50%;
  overflow: hidden; background: var(--peach);
  box-shadow: 0 12px 34px rgba(226,123,166,.28), 0 0 0 6px rgba(255,255,255,.85), 0 0 0 8px rgba(242,160,194,.4);
}
.leader__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.leader__body h3 { font-weight: 700; font-size: 18px; letter-spacing: .1em; margin-bottom: 4px; }
.leader__role { font-size: 12px; color: var(--pink-deep); letter-spacing: .12em; margin-bottom: 14px; }
.leader__body p { font-size: 14.5px; color: #6d5f52; line-height: 2; }
.leader__body p + p { margin-top: 16px; }

/* ── 定義テーブル ── */
.spec { border-top: 1px solid var(--line, rgba(154,137,123,.25)); }
.spec > div {
  display: grid; grid-template-columns: 200px 1fr;
  padding: 20px 6px; border-bottom: 1px solid rgba(154,137,123,.25);
  font-size: 14.5px;
}
.spec dt { color: var(--pink-deep); letter-spacing: .1em; font-weight: 500; }
.spec dd { color: #6d5f52; }

/* ── リスト ── */
.checklist li {
  position: relative; padding: 11px 0 11px 30px; font-size: 14.5px; color: #6d5f52;
  border-bottom: 1px dashed rgba(154,137,123,.3);
}
.checklist li::before {
  content: ""; position: absolute; left: 4px; top: 1.5em;
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--peach-deep));
}

/* ── FAQアコーディオン（既存 .faq__item を流用可） ── */

/* ── 求人カード ── */
.jobs { display: grid; gap: 22px; }
.job {
  background: #fff; border-radius: 22px; padding: 34px;
  box-shadow: 0 12px 40px rgba(85,70,60,.08);
  border-left: 8px solid var(--pink);
}
.job:nth-child(2) { border-color: var(--yellow-deep); }
.job:nth-child(3) { border-color: var(--peach-deep); }
.job__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.job__title { font-weight: 700; font-size: 19px; letter-spacing: .08em; }
.job__type { font-size: 12px; font-weight: 500; color: #fff; background: var(--pink-deep); border-radius: 999px; padding: 5px 16px; letter-spacing: .08em; }
.job:nth-child(2) .job__type { background: var(--yellow-deep); color: var(--ink); }
.job:nth-child(3) .job__type { background: var(--peach-deep); }
.job dl > div { display: grid; grid-template-columns: 130px 1fr; padding: 9px 0; border-bottom: 1px dashed rgba(154,137,123,.25); font-size: 14px; }
.job dt { color: var(--pink-deep); letter-spacing: .08em; }
.job dd { color: #6d5f52; }

/* ── 地図 ── */
.map { border-radius: 22px; overflow: hidden; box-shadow: 0 16px 50px rgba(85,70,60,.12); aspect-ratio: 16/8; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── 番号リスト（規程など） ── */
.ol-doc { counter-reset: doc; }
.ol-doc > li {
  position: relative; padding: 16px 0 16px 44px; font-size: 14.5px; color: #6d5f52;
  border-bottom: 1px solid rgba(154,137,123,.2); line-height: 2;
}
.ol-doc > li::before {
  counter-increment: doc; content: counter(doc);
  position: absolute; left: 0; top: 18px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(242,160,194,.2); color: var(--pink-deep);
  font-family: var(--en); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ol-doc h4 { font-weight: 700; color: var(--ink); font-size: 15px; margin-bottom: 2px; }

/* ── ページ下部CTA ── */
.page-cta {
  position: relative; z-index: 1;
  text-align: center; padding: 30px 24px 130px;
}
.page-cta__card {
  max-width: 780px; margin: 0 auto;
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(242,160,194,.22), transparent 60%),
    radial-gradient(ellipse 60% 55% at 90% 100%, rgba(237,231,154,.32), transparent 60%),
    #fff;
  border-radius: 30px; padding: 60px 30px;
  box-shadow: 0 26px 80px rgba(85,70,60,.14);
}
.page-cta h2 { font-weight: 700; font-size: clamp(20px, 3vw, 27px); letter-spacing: .12em; margin-bottom: 14px; }
.page-cta p { font-size: 14px; color: var(--muted); margin-bottom: 30px; }
.page-cta__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── レスポンシブ ── */
@media (max-width: 760px) {
  .page-hero { padding-top: 150px; }
  .principle { grid-template-columns: 1fr; }
  .leader { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .leader__photo { margin: 0 auto; }
  .spec > div { grid-template-columns: 120px 1fr; }
  .job dl > div { grid-template-columns: 100px 1fr; }
}
