/* ハレモア採用サイト 共通スタイル
   トーン：紺（ユニフォーム）× 生成り × 晴れの金 */
:root {
  --ink: #16233f;
  --ink-2: #2b3a5c;
  --navy: #1d2f55;
  --paper: #f7f3ec;
  --paper-2: #efe8dc;
  --white: #ffffff;
  --sun: #c9973a;
  --sun-soft: #f3e4c4;
  --line-green: #06c755;
  --muted: #5d6679;
  --rule: #ddd4c4;
  --radius: 14px;
  --wrap: 1120px;
  --serif: "Shippori Mincho B1", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .04em;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.line { display: block; }
.nw { white-space: nowrap; }

/* ヘッダー */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; }
.brand img { width: 34px; }
.brand small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .08em; line-height: 1.3; }
.brand span { line-height: 1.3; white-space: nowrap; }
.gnav { display: flex; gap: 22px; font-size: 14px; }
.gnav a { text-decoration: none; color: var(--ink-2); }
.gnav a:hover { color: var(--sun); }
.header-cta { font-size: 14px; padding: 10px 18px; }
@media (max-width: 900px) { .gnav { display: none; } }
@media (max-width: 520px) { .btn.header-cta { display: none; } }

/* ボタン */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 32px; border-radius: 999px;
  background: var(--line-green); color: #fff; text-decoration: none;
  font-weight: 700; letter-spacing: .06em; line-height: 1.4;
  box-shadow: 0 6px 18px rgba(6, 199, 85, .25);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(6, 199, 85, .3); }
.btn svg { width: 22px; height: 22px; flex: none; }
.btn-sub { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); }

/* ヒーロー */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 640px; }
.hero-copy { padding: 88px 48px 72px max(16px, calc((100vw - var(--wrap)) / 2)); display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { font-size: 14px; letter-spacing: .14em; color: var(--sun-soft); margin: 0 0 20px; }
.hero h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(32px, 4.4vw, 54px); line-height: 1.45; margin: 0 0 28px; letter-spacing: .06em; }
.hero h1 em { font-style: normal; color: var(--sun-soft); }
.hero-lead { font-size: 16px; margin: 0 0 32px; color: #dfe4ef; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 36px; padding: 0; list-style: none; }
.hero-facts li { border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 6px 16px; font-size: 14px; }
.hero-photo { position: relative; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 30%; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0%, rgba(29,47,85,0) 18%); }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { order: -1; height: 300px; }
  .hero-photo::after { background: linear-gradient(0deg, var(--navy) 0%, rgba(29,47,85,0) 45%); }
  .hero-copy { padding: 8px 16px 56px; }
}

/* 事実ブロック */
.facts { background: var(--white); border-bottom: 1px solid var(--rule); }
.facts dl { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; }
.facts div { padding: 26px 20px; border-right: 1px solid var(--rule); }
.facts div:last-child { border-right: 0; }
.facts dt { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.facts dd { margin: 0; font-weight: 700; font-size: 18px; line-height: 1.5; }
.facts dd small { display: block; font-weight: 500; font-size: 12px; color: var(--muted); }
@media (max-width: 900px) {
  .facts dl { grid-template-columns: 1fr 1fr; }
  .facts div:nth-child(2) { border-right: 0; }
  .facts div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
}

/* セクション共通 */
.sec { padding: 104px 0; }
.sec-alt { background: var(--paper-2); }
.sec-dark { background: var(--navy); color: #fff; }
.sec-head { margin-bottom: 56px; }
.sec-label { font-size: 13px; letter-spacing: .2em; color: var(--sun); margin: 0 0 14px; font-weight: 700; }
.sec-dark .sec-label { color: var(--sun-soft); }
.sec-title { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 38px); line-height: 1.6; margin: 0; letter-spacing: .06em; }
.sec-lead { margin: 24px 0 0; color: var(--ink-2); }
.sec-dark .sec-lead { color: #dfe4ef; }
.center { text-align: center; }
@media (max-width: 600px) { .sec { padding: 72px 0; } .sec-head { margin-bottom: 40px; } }

/* 悩み */
.worries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; margin: 0; }
.worries li { background: var(--white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--rule); font-weight: 500; }
.worries li::before { content: "“"; display: block; font-family: var(--serif); font-size: 44px; line-height: .8; color: var(--sun); margin-bottom: 8px; }
.answer { margin-top: 48px; text-align: center; font-family: var(--serif); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.8; }
@media (max-width: 800px) { .worries { grid-template-columns: 1fr; } }

/* 比較表 */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); }
.compare th, .compare td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rule); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare thead th { background: var(--ink); color: #fff; font-size: 14px; }
.compare thead th.us { background: var(--sun); }
.compare tbody th { width: 22%; font-size: 14px; color: var(--muted); font-weight: 500; }
.compare td.us { font-weight: 700; background: #fffaf0; }
.note { font-size: 12px; color: var(--muted); margin-top: 12px; }
@media (max-width: 640px) {
  .compare thead { display: none; }
  .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100%; }
  .compare tr { border-bottom: 1px solid var(--rule); padding: 8px 0; }
  .compare tbody th { padding: 12px 18px 0; border: 0; }
  .compare td { border: 0; padding: 6px 18px; }
  .compare td::before { display: block; font-size: 11px; color: var(--muted); font-weight: 500; }
  .compare td.them::before { content: "一般的な保険施術の現場"; }
  .compare td.us::before { content: "ハレモア"; color: var(--sun); }
}

/* 2カラム */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.split h3 { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 28px); line-height: 1.6; margin: 0 0 20px; }
.split p { margin: 0 0 16px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } .split.rev .split-media { order: 0; } }

/* 数字 */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat { background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center; border: 1px solid var(--rule); }
.stat b { display: block; font-family: var(--serif); font-size: 34px; color: var(--navy); line-height: 1.3; }
.stat b small { font-size: 16px; }
.stat span { font-size: 13px; color: var(--muted); }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }

/* 給与 */
.pay { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pay-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 32px 24px; }
.pay-card h3 { margin: 0 0 12px; font-size: 15px; color: var(--sun-soft); font-weight: 700; letter-spacing: .1em; }
.pay-card .big { font-family: var(--serif); font-size: clamp(28px, 3vw, 38px); line-height: 1.3; margin: 0 0 12px; }
.pay-card .big small { font-size: 16px; }
.pay-card p { margin: 0; font-size: 14px; color: #dfe4ef; }
.pay-formula { margin: 40px 0 0; padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.08); text-align: center; font-size: 15px; line-height: 2; }
.pay-formula b { color: var(--sun-soft); }
@media (max-width: 860px) { .pay { grid-template-columns: 1fr; } }

/* ポリシー */
.policies { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.policy { background: var(--white); border-radius: var(--radius); padding: 36px 32px; border: 1px solid var(--rule); }
.policy .num { font-family: var(--serif); color: var(--sun); font-size: 14px; letter-spacing: .1em; }
.policy h3 { font-family: var(--serif); font-size: 22px; line-height: 1.6; margin: 6px 0 16px; }
.policy p { margin: 0 0 12px; font-size: 15px; }
.policy .src { font-size: 12px; color: var(--muted); margin: 16px 0 0; }
.policy-all { margin-top: 32px; padding: 28px 32px; border-radius: var(--radius); background: var(--paper-2); }
.policy-all ol { margin: 0; padding-left: 1.6em; columns: 2; column-gap: 40px; }
.policy-all li { margin-bottom: 4px; break-inside: avoid; }
@media (max-width: 800px) { .policies { grid-template-columns: 1fr; } .policy-all ol { columns: 1; } }

/* 人物像 */
.people { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; list-style: none; padding: 0; margin: 0; }
.people li { background: var(--white); border-radius: var(--radius); padding: 28px 18px; text-align: center; border-top: 4px solid var(--sun); font-weight: 700; line-height: 1.7; }
@media (max-width: 960px) { .people { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .people { grid-template-columns: 1fr; } }

/* ステップ */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 72px 1fr; gap: 20px; background: var(--white); border-radius: var(--radius); padding: 24px; border: 1px solid var(--rule); counter-increment: step; }
.steps li::before { content: "STEP\A" counter(step, decimal-leading-zero); white-space: pre; font-family: var(--serif); color: var(--sun); font-size: 13px; line-height: 1.4; text-align: center; border-right: 1px solid var(--rule); padding-right: 12px; }
.steps h3 { margin: 0 0 6px; font-size: 18px; }
.steps p { margin: 0; font-size: 15px; color: var(--ink-2); }
@media (max-width: 520px) { .steps li { grid-template-columns: 1fr; } .steps li::before { content: "STEP " counter(step, decimal-leading-zero); border: 0; text-align: left; padding: 0; } }

/* 1日の流れ */
.day { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--sun); }
.day li { position: relative; padding: 0 0 28px 28px; }
.day li::before { content: ""; position: absolute; left: -8px; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: var(--sun); }
.day b { display: block; font-size: 17px; }
.day span { font-size: 14px; color: var(--muted); }

/* ピラティス */
.pilates { background: #f4ece6; }
.tag { display: inline-block; font-size: 12px; padding: 4px 12px; border-radius: 999px; background: var(--navy); color: #fff; margin-right: 6px; }

/* 店舗 */
.shops { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.shop { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); }
.shop img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.shop-body { padding: 24px 24px 28px; }
.shop h3 { margin: 0 0 12px; font-size: 20px; }
.shop dl { margin: 0; display: grid; grid-template-columns: 88px 1fr; gap: 6px 12px; font-size: 14px; }
.shop dt { color: var(--muted); }
.shop dd { margin: 0; }
@media (max-width: 800px) { .shops { grid-template-columns: 1fr; } }
.shop-links { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.shop-links a, .stats-links a { display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 16px; border: 1px solid var(--navy); border-radius: 10px; text-decoration: none; font-size: 14px; font-weight: 700; color: var(--navy); }
.shop-links a::after, .stats-links a::after { content: "↗"; font-weight: 400; }
.shop-links a:hover, .stats-links a:hover { background: var(--navy); color: #fff; }
.stats-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin: 28px 0 0; text-align: center; }
.stats-links .line { width: 100%; font-size: 14px; color: var(--muted); }
.shop-links { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.shop-links a, .stats-links a { display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 16px; border: 1px solid var(--navy); border-radius: 10px; text-decoration: none; font-size: 14px; font-weight: 700; color: var(--navy); }
.shop-links a::after, .stats-links a::after { content: "↗"; font-weight: 400; }
.shop-links a:hover, .stats-links a:hover { background: var(--navy); color: #fff; }
.stats-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin: 28px 0 0; text-align: center; }
.stats-links .line { width: 100%; font-size: 14px; color: var(--muted); }

/* 募集要項 */
.job-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.job-tabs a { text-decoration: none; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--navy); font-size: 14px; font-weight: 700; }
.job-tabs a:hover { background: var(--navy); color: #fff; }
.req { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; }
.req th, .req td { padding: 18px 20px; border-bottom: 1px solid var(--rule); text-align: left; vertical-align: top; font-size: 15px; }
.req th { width: 180px; background: #faf7f1; font-weight: 700; color: var(--ink-2); }
.req td p { margin: 0 0 6px; }
.req td small { color: var(--muted); }
@media (max-width: 640px) { .req, .req tbody, .req tr { display: block; width: 100%; } .req th, .req td { display: block; width: 100%; } .req th { border-bottom: 0; padding-bottom: 4px; } .req td { padding-top: 4px; } }
.job-block { margin-bottom: 64px; scroll-margin-top: 80px; }
.job-block h3 { font-family: var(--serif); font-size: 24px; margin: 0 0 20px; }

/* FAQ */
.faq details { background: var(--white); border-radius: var(--radius); border: 1px solid var(--rule); margin-bottom: 12px; }
.faq summary { cursor: pointer; padding: 22px 56px 22px 24px; font-weight: 700; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; font-family: var(--serif); color: var(--sun); margin-right: 12px; }
.faq summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--muted); }
.faq details[open] summary::after { content: "−"; }
.faq .a { padding: 0 24px 22px 50px; margin: 0; color: var(--ink-2); }

/* CTA */
.cta { text-align: center; }
.cta .sec-title { margin-bottom: 20px; }
.cta-steps { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 32px 0 40px; padding: 0; list-style: none; }
.cta-steps li { background: rgba(255,255,255,.1); border-radius: 999px; padding: 8px 20px; font-size: 14px; }
.cta .btn { font-size: 18px; padding: 22px 44px; }
.cta .btn-sub { color: #c7cedd; }

/* フッター */
.site-footer { background: #101a31; color: #b9c1d3; font-size: 13px; padding: 48px 0 110px; }
.site-footer a { color: #dfe4ef; }
.site-footer .links { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 20px; }

/* スマホ固定CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(247,243,236,.96); border-top: 1px solid var(--rule); display: none; }
.sticky-cta .btn { width: 100%; padding: 14px; }
@media (max-width: 900px) { .sticky-cta { display: block; } }

/* 求人詳細ページ */
.breadcrumb { font-size: 13px; color: var(--muted); padding: 20px 0 0; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; }
.page-head { padding: 40px 0 48px; }
.page-head h1 { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 38px); line-height: 1.5; margin: 0 0 16px; }

/* 口コミ・SNS・Indeed */
.review-src { margin-top: 32px; }
.review-src__lead { text-align: center; color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.review-src__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); padding: 24px; }
.review-card h3 { margin: 0 0 4px; font-size: 17px; }
.review-card__score { margin: 0; font-size: 14px; color: var(--muted); }
.review-card__score b { font-family: var(--serif); font-size: 22px; color: var(--sun); }
.review-card .shop-links { margin-top: 14px; }
.review-src .note { text-align: center; }
@media (max-width: 700px) { .review-src__grid { grid-template-columns: 1fr; } }
.link-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.link-groups--3 { grid-template-columns: repeat(3, 1fr); }
.link-group { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); padding: 22px 20px; }
.link-group h3 { margin: 0 0 12px; font-size: 15px; letter-spacing: .08em; color: var(--sun); }
.link-group ul { list-style: none; margin: 0; padding: 0; }
.link-group li + li { border-top: 1px solid var(--rule); }
.link-group a { display: flex; flex-direction: column; padding: 10px 22px 10px 0; text-decoration: none; position: relative; line-height: 1.5; }
.link-group a::after { content: "↗"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--muted); }
.link-group a span { font-weight: 700; font-size: 14px; }
.link-group a small { font-size: 12px; color: var(--muted); }
.link-group a:hover span { color: var(--sun); }
.indeed { margin: 0 0 64px; padding: 32px; background: var(--paper-2); border-radius: var(--radius); }
.indeed > h3 { font-family: var(--serif); font-size: 22px; margin: 0 0 8px; }
.indeed > p { margin: 0 0 20px; color: var(--ink-2); font-size: 14px; }
@media (max-width: 1000px) { .link-groups { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) { .link-groups--3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .link-groups { grid-template-columns: 1fr; } .indeed { padding: 24px 16px; } }
