@charset "UTF-8";
/* ==========================================================================
   #推しワーク LP  style.css
   モバイルキャンバス型 / 上品かわいい7 : ポップ3
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --pink: #FF6F7D;
  --pink-hover: #F25869;
  --pink-light: #FF8290;
  --rose: #C25C68;
  --yellow: #FFD45A;
  --ink: #5B4A44;
  --body: #8A756D;
  --body-2: #7C6A63;
  --body-3: #6E5C54;
  --muted: #B6A39B;
  --cream: #FFF8F4;
  --soft-pink: #FFE6EB;
  --line: #F2E3DD;
  --field-border: #FBE0E5;

  --canvas-w: 430px;
  --side-w: 286px;
  --side-gap: 247px;
  --header-offset: 78px;

  --shadow-card: 0 16px 34px -22px rgba(120,80,70,.45);
  --shadow-cta: 0 16px 32px -8px rgba(255,111,125,.55);

  --font-jp: 'M PLUS Rounded 1c', 'Zen Maru Gothic', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  --font-display: 'Quicksand', var(--font-jp);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: radial-gradient(120% 80% at 50% 0%, #FFE9EE 0%, #FFF3EF 40%, #FBF1EA 100%) fixed;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ==========================================================================
   モバイルキャンバス（中央カラム）
   ========================================================================== */
.canvas {
  max-width: var(--canvas-w);
  margin: 0 auto;
  background: var(--cream);
  position: relative;
  box-shadow: 0 30px 80px -34px rgba(150,80,90,.5);
  overflow: hidden;
}

/* ---- 固定ヘッダー ---- */
.site-header {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: var(--canvas-w); z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 22px);
  background: rgba(255,248,244,.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,111,125,.1);
}
.site-header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-header__logo img { height: 38px; width: auto; }
.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; min-width: 0; }
.site-header__cta {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: var(--pink); color: #fff; text-decoration: none; font-weight: 700;
  font-size: clamp(12px, 3vw, 14px); padding: 10px 18px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255,111,125,.32); transition: background .2s, transform .2s;
}
.site-header__cta:hover { background: var(--pink-hover); transform: translateY(-1px); }
.menu-toggle {
  flex: 0 0 auto; width: 42px; height: 42px; border: none; border-radius: 50%;
  background: rgba(255,255,255,.76); color: var(--rose); cursor: pointer;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  box-shadow: 0 8px 20px -14px rgba(120,80,70,.5);
}
.menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: currentColor; }

.mobile-menu { position: fixed; inset: 0; z-index: 80; pointer-events: none; visibility: hidden; }
.mobile-menu.is-open { pointer-events: auto; visibility: visible; }
.mobile-menu__overlay {
  position: absolute; inset: 0; border: 0; background: rgba(91,74,68,.32);
  opacity: 0; transition: opacity .24s ease; cursor: pointer;
}
.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }
.mobile-menu__drawer {
  position: absolute; top: 0; right: max(0px, calc((100vw - var(--canvas-w)) / 2));
  width: min(82vw, 320px); height: 100%; padding: 24px 22px;
  background: #FFFDFC; border-left: 1px solid #FFE0E6;
  box-shadow: -22px 0 48px -30px rgba(120,80,70,.55);
  transform: translateX(104%); transition: transform .28s ease;
  display: flex; flex-direction: column; gap: 7px; outline: none;
}
.mobile-menu.is-open .mobile-menu__drawer { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.mobile-menu__title { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .16em; color: #C9A9A0; }
.mobile-menu__close {
  width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--soft-pink);
  color: var(--rose); font-size: 24px; line-height: 1; cursor: pointer;
}
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between; min-height: 46px;
  padding: 10px 8px; text-decoration: none; border-bottom: 1px dashed #F3E2DD;
  font-family: var(--font-display), 'Zen Maru Gothic', var(--font-jp);
  color: #8A756D; font-weight: 700; font-size: 16px;
}
.mobile-nav a::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #E7CFC8;
  transition: background .2s, transform .2s;
}
.mobile-nav a.is-active { color: var(--rose); }
.mobile-nav a.is-active::after { background: var(--pink); transform: scale(1.28); }

/* ==========================================================================
   ボタン（CTA）
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  white-space: nowrap; text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 700; line-height: 1;
  background: var(--pink); color: #fff;
  font-size: clamp(15px, 4vw, 18px); padding: 16px 38px; border-radius: 999px;
  box-shadow: var(--shadow-cta); transition: background .2s, transform .2s, box-shadow .2s;
}
.btn:hover { background: var(--pink-hover); transform: translateY(-2px); box-shadow: 0 22px 40px -10px rgba(255,111,125,.6); }
.btn:active { transform: translateY(0); }
.btn .heart { font-size: 1.1em; }
.btn--block { width: 100%; padding: 18px; font-size: clamp(16px,4.2vw,19px); }
.btn--ghost { background: #fff; color: var(--pink); box-shadow: 0 20px 40px -12px rgba(180,40,60,.45); }
.btn--ghost:hover { background: #fff; box-shadow: 0 26px 48px -14px rgba(180,40,60,.5); }
.btn[disabled] { opacity: .5; cursor: not-allowed; pointer-events: none; }
.cta-note { margin: 12px 0 0; text-align: center; font-size: clamp(11px,2.9vw,13px); color: var(--muted); }

/* ==========================================================================
   セクション共通
   ========================================================================== */
.section { position: relative; padding: clamp(50px, 8vw, 66px) clamp(16px, 4vw, 22px); overflow: hidden; scroll-margin-top: var(--header-offset); }
.fv, .entry, .final-cta { scroll-margin-top: var(--header-offset); }
.section__inner { max-width: min(620px, 92vw); margin: 0 auto; }
.section__head { text-align: center; margin-bottom: clamp(22px, 3.5vw, 30px); }

.eyebrow { margin: 0 0 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: .18em; font-size: 13px; color: var(--pink); }
.eyebrow__jp { margin-left: 8px; color: #B98C84; font-weight: 600; font-family: 'Zen Maru Gothic', var(--font-jp); font-size: 12px; letter-spacing: .06em; }

.sec-title { margin: 0; font-size: clamp(23px, 5.6vw, 36px); font-weight: 900; color: var(--ink); line-height: 1.55; text-wrap: balance; }
.sec-title .accent { color: var(--pink); }
.title-line { display: block; max-width: 100%; white-space: nowrap; }
.sec-title--whats { font-size: clamp(16px, 4.4vw, 23px); font-weight: 700; line-height: 1.75; letter-spacing: 0; }
.sec-title--merit { font-size: clamp(16px, 4.6vw, 30px); line-height: 1.6; letter-spacing: 0; }
.sec-title--whom { line-height: 1.45; }
.sec-lead { margin: 18px auto 0; max-width: 600px; font-size: clamp(13px, 3.4vw, 16px); color: var(--body); line-height: 2; text-wrap: pretty; }

.divider { display: flex; align-items: center; justify-content: center; gap: 9px; width: 160px; margin: 12px auto; }
.divider span { height: 2px; flex: 1; border-radius: 2px; }
.divider span:first-child { background: linear-gradient(90deg, transparent, #FFC9D2); }
.divider span:last-child { background: linear-gradient(90deg, #FFC9D2, transparent); }

/* セクション背景バリエーション */
.bg-cream { background: var(--cream); }
.bg-pinkgrad { background: linear-gradient(180deg, #FFF8F4 0%, #FFF0F3 100%); }
.bg-rosegrad { background: linear-gradient(180deg, #FFF8F4 0%, #FFE9EE 100%); }

/* ==========================================================================
   浮遊モチーフ
   ========================================================================== */
.motif { position: absolute; pointer-events: none; }
.motif--blob { border-radius: 50%; }
.motif--heart { color: #FFC2CC; }
.motif--star { color: var(--yellow); }
@keyframes oFloat { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-16px) rotate(var(--r,0deg)); } }
@keyframes oFloatSlow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }
.anim-float { animation: oFloat 7s ease-in-out infinite; }
.anim-float-slow { animation: oFloatSlow 10s ease-in-out infinite; }

/* ==========================================================================
   スクロールリビール
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1); }
[data-reveal][data-in] { opacity: 1; transform: none; }

/* ==========================================================================
   01 FV / HERO
   ========================================================================== */
.fv { padding: clamp(80px, 14vw, 92px) clamp(16px, 4vw, 22px) clamp(40px, 7vw, 70px); background: radial-gradient(120% 80% at 80% 0%, #FFEAEF 0%, #FFF8F4 55%); }
.fv__inner { max-width: min(660px, 94vw); margin: 0 auto; position: relative; }
.fv__badge-wrap { text-align: center; margin-bottom: clamp(20px, 3vw, 30px); }
.fv__badge { display: inline-block; font-family: var(--font-display); font-weight: 600; letter-spacing: .14em; font-size: clamp(11px,2.6vw,13px); color: var(--pink); background: #fff; padding: 7px 16px; border-radius: 999px; box-shadow: 0 6px 16px rgba(255,111,125,.14); }
.fv__visual { border-radius: clamp(20px,3vw,32px); overflow: hidden; box-shadow: 0 30px 70px -28px rgba(255,111,125,.5); border: 4px solid #fff; }
.fv__visual img { width: 100%; height: auto; display: block; }
.fv__card { margin: clamp(18px,3vw,28px) auto 0; position: relative; z-index: 2; background: #fff; border-radius: clamp(20px,3vw,28px); padding: clamp(24px,4vw,40px) clamp(20px,4vw,44px); box-shadow: 0 24px 60px -26px rgba(120,80,70,.4); border: 1px solid var(--soft-pink); text-align: center; }
.fv__catch { margin: 0 0 4px; font-size: clamp(18px,4.5vw,26px); font-weight: 900; line-height: 1.6; color: var(--ink); text-wrap: balance; }
.fv__desc { margin: 16px auto 0; max-width: 560px; font-size: clamp(13px,3.3vw,15.5px); color: var(--body); line-height: 1.95; text-wrap: pretty; }
.fv__actions { margin-top: 18px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.fv__actions .cta-note { margin: 0; }

/* ==========================================================================
   タグ・チップ
   ========================================================================== */
.tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.tag { background: #fff; border: 1px solid var(--soft-pink); color: var(--rose); font-weight: 700; font-size: clamp(12px,3vw,14px); padding: 9px 18px; border-radius: 999px; box-shadow: 0 6px 14px rgba(255,111,125,.1); }
.tag--yellow { background: #FFF6E0; color: #C99A1E; border: none; box-shadow: none; }

/* ==========================================================================
   03 共感（お悩み）
   ========================================================================== */
.pains { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 11px; }
.pain { background: #fff; border: 1px solid #F7E9EC; border-radius: 18px; padding: 14px 16px; box-shadow: 0 10px 24px -18px rgba(120,80,70,.45); }
.pain--accent { background: linear-gradient(135deg,#FFF0F3,#FFE3E9); border-color: #FFC9D2; }
.pain__top { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.pain__glyph { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; color: #9B7B70; }
.pain__from { font-size: 12px; font-weight: 700; color: #9A857C; letter-spacing: .02em; }
.pain__text { margin: 0; padding-left: 40px; font-size: clamp(14px,3.6vw,15.5px); font-weight: 700; color: var(--ink); line-height: 1.6; }
.pain--accent .pain__text { color: var(--rose); }
.glyph-yellow { background: #FFEFC6; }
.glyph-lav { background: #ECE6F6; }
.glyph-pink { background: #FFE2E8; }

/* ==========================================================================
   04 リフレーミング（BEFORE / AFTER）
   ========================================================================== */
.reframe { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(12px,3vw,16px); }
.reframe__card { width: 100%; max-width: 380px; border-radius: 24px; padding: clamp(24px,4vw,34px); }
.reframe__card--before { background: #F6F1ED; border: 1px dashed #D8C9C1; }
.reframe__card--after { background: linear-gradient(160deg,#FF8290,#FF6F7D); box-shadow: 0 24px 44px -20px rgba(255,111,125,.7); }
.reframe__label { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .12em; background: #fff; padding: 6px 14px; border-radius: 999px; }
.reframe__card--before .reframe__label { color: #A8968D; }
.reframe__card--after .reframe__label { color: var(--pink); }
.reframe__text { margin: 16px 0 0; font-size: clamp(16px,4vw,19px); font-weight: 700; line-height: 1.75; }
.reframe__card--before .reframe__text { color: var(--body); }
.reframe__card--after .reframe__text { color: #fff; }
.reframe__arrow { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; align-self: center; padding: 2px 0; }
.reframe__arrow span { width: 56px; height: 56px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; box-shadow: 0 10px 22px -8px rgba(255,180,60,.7); }

/* ==========================================================================
   05 メリット
   ========================================================================== */
.merits { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: clamp(14px,2vw,20px); }
.merit { background: #fff; border-radius: 22px; padding: clamp(20px,3vw,24px); box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.merit__n { position: absolute; top: -8px; right: 6px; font-family: var(--font-display); font-weight: 700; font-size: 54px; color: var(--soft-pink); }
.merit__title { margin: 0 0 8px; font-size: clamp(15px,4vw,18px); font-weight: 900; color: var(--rose); line-height: 1.5; position: relative; }
.merit__desc { margin: 0; font-size: 13.5px; color: var(--body); line-height: 1.85; position: relative; }

/* ==========================================================================
   06 制度サポート
   ========================================================================== */
.systems { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px,1fr)); gap: clamp(13px,2vw,16px); }
.system { position: relative; background: #fff; border-radius: 18px; padding: 20px 20px 18px 30px; box-shadow: 0 14px 30px -22px rgba(120,80,70,.45); border: 1px solid #FBEAEE; overflow: hidden; }
.system__rail { position: absolute; left: 12px; top: 16px; bottom: 16px; border-left: 2px dashed #F2DCE0; }
.system__notch { position: absolute; left: -7px; top: 50%; width: 14px; height: 14px; border-radius: 50%; background: var(--cream); transform: translateY(-50%); }
.system__heart { position: absolute; top: 13px; right: 14px; font-size: 13px; opacity: .65; }
.system__top { display: flex; align-items: center; gap: 11px; margin-bottom: 9px; padding-right: 20px; }
.system__glyph { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; color: #9B7B70; }
.system__title { margin: 0; font-size: clamp(14.5px,3.6vw,16px); font-weight: 900; color: var(--rose); line-height: 1.4; word-break: keep-all; }
.system__desc { margin: 0; font-size: 12.5px; color: var(--body-2); line-height: 1.8; }
.system__note { margin: 9px 0 0; padding-top: 8px; font-size: 11px; color: var(--muted); border-top: 1px dashed #F0E1DC; }
.accent-yellow { color: var(--yellow); }
.accent-pink { color: #FF8FA0; }
.soft-yellow { background: #FFF1D6; }
.soft-pink2 { background: var(--soft-pink); }
.notes-box { margin-top: clamp(26px,4vw,40px); background: #FFF6E0; border-radius: 18px; padding: clamp(18px,3vw,26px) clamp(20px,3vw,30px); }
.notes-box__title { margin: 0 0 8px; font-weight: 700; color: #C99A1E; font-size: 13px; }
.notes-box ul { margin: 0; padding-left: 18px; color: #9C8568; font-size: 12.5px; line-height: 1.95; }

/* ==========================================================================
   07 お仕事内容
   ========================================================================== */
.work-callout { margin-bottom: clamp(18px,3vw,24px); background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 15px 18px; display: flex; align-items: center; gap: 12px; }
.work-callout__icon { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; background: #FFF1D6; color: #C99A1E; display: flex; align-items: center; justify-content: center; font-size: 17px; line-height: 1; }
.work-callout p { margin: 0; font-size: clamp(13px,3.4vw,14.5px); font-weight: 700; color: var(--ink); line-height: 1.65; }
.work-groups { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 4px clamp(18px,3vw,24px); box-shadow: 0 14px 30px -24px rgba(120,80,70,.4); }
.work-group { padding: clamp(16px,3vw,20px) 0; border-bottom: 1px solid #F6EAE6; }
.work-group:last-child { border-bottom: none; }
.work-group__head { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.work-group__icon { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; background: var(--soft-pink); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 17px; line-height: 1; }
.work-group__title { margin: 0; font-size: 15px; font-weight: 900; color: var(--rose); }
.work-group__items { display: flex; flex-direction: column; gap: 9px; padding-left: 3px; }
.work-item { display: flex; align-items: flex-start; gap: 9px; }
.work-item span:first-child { flex: 0 0 auto; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); margin-top: 8px; }
.work-item span:last-child { font-size: 13.5px; color: var(--body-3); line-height: 1.7; }
.work-foot { margin: clamp(24px,4vw,36px) auto 0; max-width: 600px; text-align: center; font-size: 13px; color: var(--body); line-height: 1.95; }

/* ==========================================================================
   08 1日のスケジュール（タイムライン）
   ========================================================================== */
.timeline { position: relative; }
.timeline__line { position: absolute; left: 85px; top: 18px; bottom: 24px; width: 3px; transform: translateX(-1.5px); background: linear-gradient(180deg, var(--yellow), var(--pink)); border-radius: 3px; }
.tl-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.tl-item__time { flex: 0 0 60px; text-align: right; padding-top: 13px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--rose); }
.tl-item__dot { flex: 0 0 18px; display: flex; justify-content: center; padding-top: 16px; position: relative; z-index: 1; }
.tl-item__dot span { width: 14px; height: 14px; border-radius: 50%; background: var(--pink); border: 3px solid #fff; box-shadow: 0 0 0 2px #FFD9DF; }
.tl-item__body { flex: 1; background: #fff; border-radius: 16px; padding: 13px 18px; box-shadow: 0 12px 26px -18px rgba(120,80,70,.4); }
.tl-item__body p { margin: 0; font-size: 13.5px; color: var(--ink); line-height: 1.7; }
.note-center { margin: clamp(20px,3vw,30px) 0 0; text-align: center; font-size: 11.5px; color: var(--muted); }

/* ==========================================================================
   09 向いている人
   ========================================================================== */
.whom-card { background: #fff; border-radius: 24px; padding: clamp(24px,4vw,40px); box-shadow: 0 20px 44px -26px rgba(120,80,70,.45); }
.whom-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(10px,1.6vw,14px); }
.whom-item { display: flex; align-items: flex-start; gap: 12px; padding: 6px 0; }
.whom-item__check { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--pink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; margin-top: 2px; }
.whom-item span:last-child { font-size: clamp(13.5px,3.5vw,15px); color: var(--ink); font-weight: 500; line-height: 1.6; }
.whom-welcome { margin-top: clamp(22px,3vw,30px); padding-top: clamp(20px,3vw,26px); border-top: 1px dashed #F0DFDA; }
.whom-welcome__title { margin: 0 0 12px; font-size: 13px; font-weight: 700; color: var(--rose); text-align: center; }
.whom-welcome__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }

/* ==========================================================================
   10 応募後の流れ
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: clamp(14px,2vw,20px); }
.step { background: #fff; border-radius: 22px; padding: clamp(22px,3vw,28px); box-shadow: var(--shadow-card); position: relative; }
.step__top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.step__n { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(160deg,#FF8290,#FF6F7D); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; box-shadow: 0 8px 18px -8px rgba(255,111,125,.7); }
.step__title { margin: 0; font-size: clamp(14.5px,3.6vw,16px); font-weight: 900; color: var(--rose); line-height: 1.4; word-break: keep-all; }
.step__desc { margin: 0; font-size: 13px; color: var(--body); line-height: 1.85; }

/* ==========================================================================
   11 FAQ
   ========================================================================== */
.faqs { display: flex; flex-direction: column; gap: 12px; }
.faq { background: #fff; border-radius: 18px; box-shadow: 0 12px 30px -22px rgba(120,80,70,.5); overflow: hidden; }
.faq__q { width: 100%; display: flex; align-items: center; gap: 14px; padding: clamp(16px,3vw,22px) clamp(16px,3vw,24px); background: none; border: none; cursor: pointer; text-align: left; }
.faq__num { flex: 0 0 auto; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--pink); }
.faq__qtext { flex: 1; font-size: clamp(14px,3.6vw,16px); font-weight: 700; color: var(--ink); line-height: 1.6; }
.faq__sign { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--soft-pink); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; transition: transform .25s ease; }
.faq[aria-expanded="true"] .faq__sign { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq[aria-expanded="true"] .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { margin: 0; padding: 0 clamp(16px,3vw,24px) clamp(18px,3vw,24px) clamp(46px,8vw,56px); font-size: clamp(13px,3.4vw,14.5px); color: var(--body-2); line-height: 1.95; }

/* ==========================================================================
   12 募集要項
   ========================================================================== */
.recruit { background: #fff; border-radius: 24px; padding: clamp(8px,2vw,18px) clamp(16px,3vw,30px); box-shadow: 0 20px 44px -28px rgba(120,80,70,.45); }
.recruit__row { display: flex; flex-wrap: wrap; gap: 4px 20px; padding: clamp(14px,2.5vw,18px) 4px; border-bottom: 1px solid #FBEDEF; }
.recruit__row:last-child { border-bottom: none; }
.recruit__label { flex: 0 0 110px; font-size: 13px; font-weight: 700; color: var(--rose); }
.recruit__value { flex: 1 1 240px; font-size: 13.5px; color: var(--ink); line-height: 1.8; white-space: pre-line; }

/* ==========================================================================
   13 制度利用条件
   ========================================================================== */
.conditions { background: #FBF3EE; border-radius: 24px; padding: clamp(26px,4vw,44px); }
.conditions__eyebrow { margin: 0 0 8px; font-family: var(--font-display); font-weight: 700; letter-spacing: .14em; font-size: 12px; color: #B89A6E; }
.conditions__title { margin: 0 0 12px; font-size: clamp(18px,4.4vw,24px); font-weight: 900; color: var(--body-2); line-height: 1.5; }
.conditions__lead { margin: 0 0 20px; font-size: 13px; color: #9C8A82; line-height: 1.9; }
.conditions ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.conditions li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--body-3); line-height: 1.75; }
.conditions li > span:first-child { flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; background: var(--soft-pink); color: var(--pink); display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 3px; }
.conditions li > span:last-child { flex: 1; min-width: 0; }
.conditions__notice { margin-top: 4px; padding: 14px; border: 1px solid #EEDFD9; border-radius: 12px; background: rgba(255,255,255,.58); }
.conditions__notice-title { display: block; font-size: 13px; color: var(--rose); line-height: 1.6; }
.conditions__notice-title span { white-space: nowrap; }
.conditions__notice-text { display: block; margin-top: 5px; font-size: 12.5px; color: var(--body-3); line-height: 1.85; overflow-wrap: anywhere; }

.heart-row { display: flex; align-items: flex-end; justify-content: center; gap: 10px; padding: 10px 0 0; background: var(--cream); }

/* ==========================================================================
   14 最終CTA
   ========================================================================== */
.final-cta { padding: clamp(78px,12vw,102px) clamp(16px,4vw,22px); background: radial-gradient(120% 90% at 50% 0%, #FF8290 0%, #FF6F7D 55%, #F25869 100%); text-align: center; }
.final-cta__inner { max-width: min(620px,92vw); margin: 0 auto; position: relative; }
.final-cta__tag { margin: 0 0 22px; font-size: clamp(11px,2.8vw,13px); font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.85); font-family: var(--font-display); }
.final-cta__title { margin: 0 0 22px; font-size: clamp(25px,6.4vw,42px); font-weight: 900; color: #fff; line-height: 1.55; text-wrap: balance; }
.final-cta__lead { margin: 0 auto 34px; max-width: 480px; font-size: clamp(14px,3.6vw,16.5px); color: rgba(255,255,255,.92); line-height: 2; text-wrap: pretty; }
.final-cta .cta-note { color: rgba(255,255,255,.85); }

/* ==========================================================================
   応募フォーム
   ========================================================================== */
.entry { padding: clamp(50px,8vw,66px) clamp(16px,4vw,22px) clamp(90px,12vw,120px); background: linear-gradient(180deg,#FFF0F3 0%,#FFF8F4 40%); }
.entry__inner { max-width: min(640px,94vw); margin: 0 auto; }
.entry__head { text-align: center; margin-bottom: clamp(28px,4vw,44px); }
.entry__lead { margin: 0 auto; max-width: 480px; font-size: 13.5px; color: var(--body); line-height: 1.9; }
.form { display: flex; flex-direction: column; gap: clamp(16px,2.5vw,22px); }
.form-block { background: #fff; border-radius: 22px; padding: clamp(22px,3.5vw,32px); box-shadow: 0 16px 38px -26px rgba(120,80,70,.45); }
.form-block__title { margin: 0 0 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 900; color: var(--rose); }
.form-block__title span { width: 22px; height: 22px; border-radius: 7px; background: var(--soft-pink); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-family: var(--font-display); }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 16px; }
.form-grid + .form-field { margin-top: 16px; }
.form-field { display: block; }
.form-field > label { display: block; font-size: 12.5px; font-weight: 700; color: var(--body); margin-bottom: 7px; }
.req { color: var(--pink); font-size: 11px; margin-left: 4px; }
.opt { color: var(--muted); font-size: 11px; margin-left: 4px; font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; box-sizing: border-box; padding: 13px 15px;
  border: 1.5px solid var(--field-border); border-radius: 12px; background: #FFFCFB;
  font-family: inherit; font-size: 15px; color: var(--ink); outline: none;
  transition: border-color .2s, background .2s;
}
.form-field input[type="date"] { padding: 12px 15px; }
.form-field input[type="file"] { padding: 10px 12px; border-style: dashed; border-color: #FBC9D1; font-size: 12.5px; color: var(--body); }
.form-field textarea { resize: vertical; line-height: 1.7; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--pink); background: #fff; }
.form-field input:invalid:not(:placeholder-shown) { border-color: #F0A6B0; }
.form-field.is-error input,
.form-field.is-error select,
.form-field.is-error textarea { border-color: #E95A6D; background: #FFF7F8; }
.form-hint { margin: 8px 0 0; font-size: 11.5px; color: var(--muted); line-height: 1.7; }
.form-example { margin: 9px 0 0; padding: 10px 12px; border-radius: 12px; background: #FFF8F4; border: 1px dashed #F2D6D1; font-size: 11.5px; color: var(--body); line-height: 1.75; }
.form-example span { display: inline-block; margin-right: 7px; color: var(--rose); font-weight: 700; }
.field-error { margin: 7px 0 0; font-size: 12px; color: #D74255; line-height: 1.6; font-weight: 700; }
.agree.is-error span { color: #D74255; }

/* honeypot（視覚的・支援技術的に隠す） */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.privacy-box { background: #FBF3EE; border-radius: 16px; padding: clamp(18px,3vw,22px); }
.privacy-box__title { margin: 0 0 9px; font-size: 13.5px; font-weight: 900; color: var(--rose); }
.privacy-box p { margin: 0; font-size: 12px; color: var(--body); line-height: 1.95; }
.system-use-note { margin: -2px 6px 0; padding: 10px 12px; border-left: 3px solid #F0BBC2; background: #FFF8F6; font-size: 11.5px; color: var(--body); line-height: 1.85; overflow-wrap: anywhere; }
.agree { display: flex; align-items: flex-start; gap: 11px; padding: 4px 6px; cursor: pointer; }
.agree input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--pink); flex: 0 0 auto; }
.agree span { font-size: 13px; color: var(--body-2); line-height: 1.7; }
.agree a { color: var(--pink); font-weight: 700; text-decoration: underline; }
.form-error { margin: 0; padding: 12px 16px; border-radius: 12px; background: #FFEAEC; color: #C2384A; font-size: 13px; font-weight: 700; }

/* ==========================================================================
   フッター
   ========================================================================== */
.footer { background: var(--ink); color: #fff; padding: clamp(44px,7vw,64px) clamp(16px,4vw,40px) clamp(28px,4vw,40px); text-align: center; }
.footer__inner { max-width: 680px; margin: 0 auto; }
.footer__logo { width: 88px; height: 88px; margin: 0 auto 16px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px -10px rgba(0,0,0,.4); }
.footer__logo img { height: 52px; width: auto; }
.footer__name { margin: 0 0 6px; font-size: 15px; font-weight: 700; letter-spacing: .04em; }
.footer__tag { margin: 0 0 26px; font-size: 13px; color: rgba(255,255,255,.65); }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-bottom: 26px; font-size: 12.5px; }
.footer__nav a { color: rgba(255,255,255,.8); text-decoration: none; padding: 4px 0; transition: color .2s; }
.footer__nav a:hover { color: var(--yellow); }
.footer__sns { display: flex; justify-content: center; gap: 14px; margin-bottom: 28px; }
.footer__sns a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: background .2s; }
.footer__sns a:hover { background: var(--pink); }
.footer__copy { margin: 0; font-size: 11px; color: rgba(255,255,255,.45); line-height: 1.8; }

/* ==========================================================================
   スティッキー（スマホCTA）
   ========================================================================== */
.mobile-cta {
  position: fixed; left: 50%; bottom: clamp(14px,3vw,24px); transform: translateX(-50%); z-index: 60;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: var(--pink); color: #fff; text-decoration: none; font-weight: 700;
  font-size: clamp(14px,3.8vw,16px); padding: 14px 28px; border-radius: 999px;
  box-shadow: 0 16px 34px -8px rgba(255,111,125,.6); transition: background .2s, transform .2s;
}
.mobile-cta:hover { background: var(--pink-hover); transform: translateX(-50%) translateY(-2px); }

/* ==========================================================================
   PC サイドパネル（1200px以上で表示）
   ========================================================================== */
.side { display: none; }
.side-panel { background: #FFFDFC; border: 1px solid #FFE0E6; border-radius: 26px; box-shadow: 0 24px 60px -30px rgba(150,80,90,.5); }

.brand__mark { width: 74px; height: 74px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 26px -10px rgba(255,111,125,.7); margin-bottom: 20px; }
.brand__mark img { height: 42px; width: auto; filter: brightness(0) invert(1); }
.brand__tagline { margin: 0 0 18px; font-size: 13px; font-weight: 700; color: var(--rose); letter-spacing: .02em; }
.brand__concept { margin: 0 0 14px; font-size: 20px; font-weight: 900; color: var(--ink); line-height: 1.6; }
.brand__copy { margin: 0 0 22px; font-size: 12.5px; color: var(--body); line-height: 1.95; }
.brand__badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--rose); font-weight: 700; font-size: 12px; padding: 9px 15px; border-radius: 11px; border: 1.5px solid #FFD9DF; box-shadow: 0 6px 16px -9px rgba(255,111,125,.45); transform: rotate(-1.8deg); }
.brand__badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }

.side-cta { display: flex; align-items: center; justify-content: center; gap: 9px; background: var(--pink); color: #fff; text-decoration: none; font-weight: 700; font-size: 16px; padding: 15px 18px; border-radius: 999px; box-shadow: 0 14px 30px -10px rgba(255,111,125,.6); white-space: nowrap; transition: background .2s, transform .2s; }
.side-cta:hover { background: var(--pink-hover); transform: translateY(-2px); }
.side-subcopy { margin: 12px 0 0; text-align: center; font-size: 12px; color: var(--muted); }
.side-rule { height: 1px; background: #F3E2DD; margin: 22px 2px; }
.side-nav__label { margin: 0 0 10px 2px; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .16em; color: #C9A9A0; }
.side-nav { display: flex; flex-direction: column; gap: 1px; }
.side-nav a { display: flex; align-items: center; gap: 13px; text-decoration: none; padding: 8px 2px; }
.side-nav__dot { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: #E7CFC8; transition: width .28s ease, height .28s ease, background .28s ease; }
.side-nav__text { font-family: var(--font-display), 'Zen Maru Gothic', var(--font-jp); font-size: 14px; font-weight: 500; color: #A8968D; letter-spacing: .02em; transition: color .28s ease; }
.side-nav a.is-active .side-nav__dot { width: 11px; height: 11px; background: var(--pink); }
.side-nav a.is-active .side-nav__text { color: var(--rose); font-weight: 700; }

@media (min-width: 1200px) {
  :root { --header-offset: 62px; }
  .side {
    display: block; position: fixed; top: 50%; transform: translateY(-50%);
    width: var(--side-w); z-index: 45; box-sizing: border-box; max-height: 92vh;
  }
  .side-panel { padding: 30px 26px; }
  .side--right .side-panel { padding: 26px 24px; }
  .side--left { left: calc(50% - var(--side-gap) - var(--side-w)); }
  .side--right { left: calc(50% + var(--side-gap)); }
  .mobile-cta { display: none !important; }
  .menu-toggle, .mobile-menu { display: none !important; }

  .site-header { background: rgba(255,248,244,.55); padding-top: 9px; padding-bottom: 9px; border-bottom: none; }
  .site-header__logo img { height: 30px; }
  .site-header__cta { padding: 8px 14px; font-size: 12px; box-shadow: none; opacity: .9; }
}

@media (max-width: 360px) {
  .site-header { padding-left: 12px; padding-right: 12px; }
  .site-header__logo img { height: 34px; }
  .site-header__cta { font-size: 12px; padding: 9px 13px; gap: 5px; }
  .menu-toggle { width: 40px; height: 40px; }
  .sec-title--whats { font-size: 15.5px; }
  .sec-title--merit { font-size: 15.5px; }
}

/* ==========================================================================
   モーション低減
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .anim-float, .anim-float-slow { animation: none !important; }
  .faq__a { transition: none; }
}
