/* =====================================================
   ナエマネージャー 機能紹介 専用スタイル
   - HTML/CSSでアプリUIを再現したミニチュアモックアップ
   ===================================================== */

/* ---------- イントロブロック ---------- */
.mgr-intro {
  background: linear-gradient(135deg, var(--color-bg-section) 0%, #fff 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.mgr-intro__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.mgr-intro__title em {
  color: var(--color-primary);
  font-style: normal;
}
.mgr-intro__body {
  font-size: 15px;
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.mgr-intro__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mgr-intro__visual {
  display: flex;
  justify-content: center;
}

/* ---------- 機能カードグリッド（ミニチュアUI付き） ---------- */
.mgr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}
.mgr-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.mgr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}
.mgr-card__mock {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  height: 140px;
  padding: 10px;
  overflow: hidden;
  position: relative;
}
.mgr-card__body {
  padding: 16px;
}
.mgr-card__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mgr-card__title .num {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center; justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  font-weight: 700;
}
.mgr-card__desc {
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.6;
}

/* ---------- 詳細セクション（左モック・右説明） ---------- */
.mgr-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px dashed var(--color-border);
}
.mgr-detail:nth-child(even) { direction: rtl; }
.mgr-detail:nth-child(even) > * { direction: ltr; }

.mgr-detail__mock-wrap {
  background: linear-gradient(135deg, #f0f6f0, #fff);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
}
.mgr-detail__label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.mgr-detail__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.4;
  margin-bottom: 14px;
}
.mgr-detail__body {
  font-size: 15px;
  color: var(--color-text-mid);
  line-height: 1.9;
  margin-bottom: 18px;
}
.mgr-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mgr-detail__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  line-height: 1.6;
}
.mgr-detail__list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   モックアップ共通パーツ
   ===================================================== */

/* アプリウィンドウ枠 */
.mock {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #d4e6d4;
  font-size: 10px;
  color: var(--color-text-dark);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mock--lg { font-size: 12px; }

.mock__bar {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock--lg .mock__bar { padding: 10px 14px; font-size: 12px; }
.mock__bar::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 14px 0 0 #fff3, 28px 0 0 #fff3;
}
.mock__bar .spacer { flex: 1; }
.mock__body {
  flex: 1;
  padding: 8px;
  background: #fafdfa;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.mock--lg .mock__body { padding: 14px; gap: 10px; }

/* 地図風プレースホルダ（航空写真イメージ） */
.mock-map {
  flex: 1;
  background:
    radial-gradient(ellipse at 30% 40%, #6b8c4a 0%, transparent 45%),
    radial-gradient(ellipse at 70% 60%, #5a7a3d 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, #7a9c5a 0%, transparent 40%),
    linear-gradient(135deg, #8aa86a 0%, #6a8a4a 100%);
  border-radius: 4px;
  position: relative;
  min-height: 60px;
  overflow: hidden;
}
/* 区画ポリゴン */
.mock-map::before {
  content: "";
  position: absolute;
  left: 18%; top: 22%;
  width: 28%; height: 30%;
  border: 1.5px solid #fff;
  background: rgba(255,255,200,0.18);
  border-radius: 2px;
  transform: rotate(-4deg);
}
.mock-map::after {
  content: "";
  position: absolute;
  right: 14%; bottom: 18%;
  width: 32%; height: 26%;
  border: 1.5px solid #ffd76b;
  background: rgba(255,215,107,0.18);
  border-radius: 2px;
  transform: rotate(3deg);
}
.mock-map .pin {
  position: absolute;
  width: 10px; height: 10px;
  background: #e53935;
  border: 1.5px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.mock--lg .mock-map .pin { width: 14px; height: 14px; }

/* カレンダーグリッド */
.mock-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 9px;
}
.mock--lg .mock-cal { gap: 3px; font-size: 11px; }
.mock-cal__cell {
  background: #fff;
  border: 1px solid #e0ede0;
  aspect-ratio: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2px 3px;
  color: var(--color-text-mid);
  position: relative;
}
.mock-cal__cell--head {
  background: var(--color-bg-section);
  font-weight: 700;
  color: var(--color-text-dark);
  align-items: center;
  justify-content: center;
}
.mock-cal__cell--today {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}
.mock-cal__cell .dot {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}
.mock-cal__cell .dot--red { background: #e57373; }
.mock-cal__cell .dot--blue { background: #64b5f6; }

/* テーブル風 */
.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}
.mock--lg .mock-table { font-size: 12px; }
.mock-table th, .mock-table td {
  border: 1px solid #e0ede0;
  padding: 4px 6px;
  text-align: left;
}
.mock--lg .mock-table th, .mock--lg .mock-table td { padding: 8px 10px; }
.mock-table th {
  background: var(--color-bg-section);
  color: var(--color-text-dark);
  font-weight: 700;
}
.mock-table tr:nth-child(even) td { background: #fafdfa; }
.mock-table .pill {
  display: inline-block;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 9999px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
}
.mock--lg .mock-table .pill { font-size: 10px; padding: 2px 8px; }
.mock-table .pill--done { background: var(--color-primary); }
.mock-table .pill--plan { background: #f4a958; }
.mock-table .pill--warn { background: #e57373; }

/* リスト行 */
.mock-list { display: flex; flex-direction: column; gap: 3px; }
.mock--lg .mock-list { gap: 6px; }
.mock-list__row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e0ede0;
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 10px;
}
.mock--lg .mock-list__row { padding: 8px 10px; font-size: 12px; gap: 10px; }
.mock-list__row .avatar {
  width: 14px; height: 14px;
  background: var(--color-primary-light);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock--lg .mock-list__row .avatar { width: 22px; height: 22px; font-size: 10px; }
.mock-list__row .grow { flex: 1; }
.mock-list__row .meta { color: var(--color-text-light); font-size: 9px; }
.mock--lg .mock-list__row .meta { font-size: 11px; }

/* サイドバー併用レイアウト */
.mock-split {
  flex: 1;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 6px;
  min-height: 0;
}
.mock--lg .mock-split { grid-template-columns: 130px 1fr; gap: 10px; }
.mock-side {
  background: #fff;
  border: 1px solid #e0ede0;
  border-radius: 4px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 9px;
}
.mock--lg .mock-side { padding: 8px; font-size: 11px; gap: 4px; }
.mock-side__item {
  padding: 3px 5px;
  border-radius: 3px;
  color: var(--color-text-mid);
}
.mock--lg .mock-side__item { padding: 6px 8px; }
.mock-side__item--active {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

/* ステージバー（生育ステージ） */
.mock-stage {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 9px;
}
.mock-stage__step {
  flex: 1;
  height: 6px;
  background: #e0ede0;
  border-radius: 3px;
}
.mock-stage__step--done { background: var(--color-primary); }
.mock-stage__step--current { background: var(--color-accent); position: relative; }
.mock-stage__step--current::after {
  content: "";
  position: absolute;
  right: -3px; top: -2px;
  width: 10px; height: 10px;
  background: var(--color-accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

/* チップ群 */
.mock-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.mock-chip {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  padding: 2px 6px;
  font-size: 9px;
  color: var(--color-text-dark);
}
.mock--lg .mock-chip { padding: 4px 10px; font-size: 11px; }
.mock-chip--accent { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }

/* バー（金額・収益） */
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
}
.mock-bar__label { width: 60px; color: var(--color-text-mid); }
.mock-bar__track { flex: 1; height: 8px; background: #e0ede0; border-radius: 4px; overflow: hidden; }
.mock-bar__fill { height: 100%; background: var(--color-primary); border-radius: 4px; }
.mock-bar__val { font-weight: 700; color: var(--color-text-dark); width: 50px; text-align: right; }

/* モバイル風端末枠 */
.mock-phone {
  width: 140px;
  height: 240px;
  border: 4px solid #2a3a2a;
  border-radius: 22px;
  background: #fff;
  padding: 6px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* イントロ用大きめモック */
.mock--hero {
  width: 100%;
  max-width: 380px;
  height: 240px;
  margin: 0 auto;
}

/* ============================================================
   インタラクティブデモ用追加スタイル (manager-demo.js)
   ============================================================ */

/* カード ホバー強化 */
.mgr-card {
  transition: transform var(--transition), box-shadow var(--transition);
}
.mgr-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
}

/* ---------- 1. ダッシュボード ---------- */
.dash-demo {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  height: 100%;
}
.dash-demo__map {
  position: relative;
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 40%, #8d9b6e 100%);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  min-height: 180px;
}
.dash-demo__svg { width: 100%; height: 100%; display: block; }
.dash-demo__poly {
  cursor: pointer;
  transition: fill .2s ease, stroke-width .2s ease;
}
.dash-demo__poly:hover,
.dash-demo__poly:focus {
  fill-opacity: 0.85;
  stroke-width: 2;
  outline: none;
}
.dash-demo__poly.is-active {
  stroke: var(--color-primary-dark);
  stroke-width: 2.5;
}
.dash-demo__tip {
  position: absolute;
  background: rgba(26, 46, 26, 0.92);
  color: #fff;
  padding: 3px 8px;
  font-size: 11px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s ease;
  white-space: nowrap;
  z-index: 2;
}
.dash-demo__tip.is-show { opacity: 1; }
.dash-demo__panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 11px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
  overflow: hidden;
}
.dash-demo__panel.is-show { opacity: 1; transform: translateY(0); }
.dash-demo__panel-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}
.dash-demo__panel-dl { margin: 0; }
.dash-demo__panel-dl > div { display: flex; gap: 6px; padding: 3px 0; border-top: 1px dashed var(--color-border); }
.dash-demo__panel-dl > div:first-child { border-top: none; }
.dash-demo__panel-dl dt { color: var(--color-text-light); min-width: 56px; margin: 0; }
.dash-demo__panel-dl dd { margin: 0; color: var(--color-text-dark); font-weight: 600; }

/* ---------- 2. 作業予定 ---------- */
.tasks-demo__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.tasks-demo__navbtn {
  background: var(--color-bg-section);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: 11px;
  cursor: pointer;
  color: var(--color-text-dark);
  font-family: inherit;
  transition: background .15s ease;
}
.tasks-demo__navbtn:hover { background: var(--color-primary-light); color: #fff; }
.tasks-demo__weeklabel {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--color-primary-dark);
  display: inline-block;
}
.tasks-demo__gridwrap { position: relative; }
.tasks-demo__grid {
  display: grid;
  grid-template-columns: 28px repeat(7, 1fr);
  gap: 2px;
  font-size: 10px;
}
.tasks-demo__corner { background: transparent; }
.tasks-demo__dayhead,
.tasks-demo__slothead {
  background: var(--color-bg-section);
  color: var(--color-text-mid);
  text-align: center;
  padding: 3px 0;
  font-weight: 700;
  border-radius: 3px;
}
.tasks-demo__cell {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  min-height: 26px;
  padding: 2px;
}
.tasks-demo__task {
  width: 100%;
  border: none;
  padding: 3px 4px;
  font-size: 10px;
  border-radius: 3px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: transform .15s ease, filter .15s ease;
}
.tasks-demo__task:hover { transform: scale(1.05); filter: brightness(1.05); }
.tasks-demo__task.is-plan { background: #e3f2fd; color: #1565c0; }
.tasks-demo__task.is-done { background: #e8f5e9; color: #2e7d32; }
.tasks-demo__task.is-warn { background: #ffebee; color: #c62828; }
.tasks-demo__pop {
  position: absolute;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 10px 12px;
  font-size: 11px;
  min-width: 140px;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 5;
}
.tasks-demo__pop.is-show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.tasks-demo__pop-title { font-weight: 700; font-size: 13px; margin-bottom: 4px; color: var(--color-primary-dark); }
.tasks-demo__pop-row { color: var(--color-text-mid); padding: 2px 0; }
.tasks-demo__pop-status { padding: 1px 6px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.tasks-demo__pop-status.is-plan { background: #e3f2fd; color: #1565c0; }
.tasks-demo__pop-status.is-done { background: #e8f5e9; color: #2e7d32; }
.tasks-demo__pop-status.is-warn { background: #ffebee; color: #c62828; }
.tasks-demo__pop-close {
  position: absolute; top: 2px; right: 4px;
  background: transparent; border: none; cursor: pointer;
  font-size: 14px; color: var(--color-text-light);
  font-family: inherit;
}

/* ---------- 3. 栽培設計 ---------- */
.design-demo__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}
.design-demo__tab {
  background: transparent;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-light);
  font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s ease, border-color .15s ease;
}
.design-demo__tab:hover { color: var(--color-primary); }
.design-demo__tab.is-active {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-primary);
}
.design-demo__tablewrap {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}
.design-demo__tablewrap.is-show { opacity: 1; transform: translateY(0); }

/* ---------- 4. シフト ---------- */
.shift-demo__toggle {
  display: inline-flex;
  background: var(--color-bg-section);
  border-radius: var(--radius-full);
  padding: 3px;
  margin-bottom: 8px;
}
.shift-demo__togbtn {
  border: none;
  background: transparent;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text-mid);
  font-family: inherit;
  transition: background .2s ease, color .2s ease;
}
.shift-demo__togbtn.is-active {
  background: var(--color-primary);
  color: #fff;
}
.shift-demo__list { display: none; flex-direction: column; gap: 4px; }
.shift-demo__list.is-show { display: flex; }
.shift-demo__cal {
  display: none;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.shift-demo__cal.is-show { display: grid; }
.shift-demo__calcell {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  min-height: 30px;
  padding: 2px;
  font-size: 9px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.shift-demo__caldate { color: var(--color-text-light); font-weight: 700; font-size: 9px; }
.shift-demo__chip {
  display: inline-block;
  padding: 1px 3px;
  border-radius: 2px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: filter .15s ease, transform .15s ease;
}
.shift-demo__chip:hover, .shift-demo__chip:focus {
  filter: brightness(1.1) saturate(1.2);
  transform: translateY(-1px);
  outline: none;
}
.shift-demo__chip--a { background: #c8e6c9; color: #1b5e20; }
.shift-demo__chip--b { background: #ffe0b2; color: #6a4500; }
.shift-demo__chip--c { background: #bbdefb; color: #0d47a1; }

/* ---------- 5. 現地メモ ---------- */
.memo-demo__map {
  position: relative;
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7 50%, #9ccc65);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  height: 180px;
  margin-bottom: 8px;
  overflow: hidden;
}
.memo-demo__pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: opacity .25s ease, transform .15s ease;
}
.memo-demo__pin:hover, .memo-demo__pin:focus {
  transform: translate(-50%, -50%) scale(1.2);
  outline: none;
  z-index: 3;
}
.memo-demo__pin.is-dim { opacity: 0.18; }
.memo-demo__bubble {
  position: absolute;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
  font-size: 11px;
  min-width: 120px;
  max-width: 160px;
  box-shadow: var(--shadow-md);
  transform: translate(-50%, -120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 4;
  color: var(--color-text-dark);
}
.memo-demo__bubble.is-show { opacity: 1; }
.memo-demo__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.memo-demo__chip {
  border: 1.5px solid var(--chip-color, var(--color-border));
  background: #fff;
  color: var(--color-text-mid);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  opacity: 0.45;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
}
.memo-demo__chip.is-active {
  opacity: 1;
  background: var(--chip-color);
  color: #fff;
}

/* ---------- 6. モバイル スライド ---------- */
.mobile-demo__stage {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.mobile-demo__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .5s ease, transform .5s ease;
}
.mobile-demo__slide.is-show { opacity: 1; transform: translateY(0); }

/* ---------- レスポンシブ ---------- */
@media (max-width: 768px) {
  .dash-demo { grid-template-columns: 1fr; }
  .dash-demo__map { min-height: 140px; }
  .tasks-demo__grid { font-size: 9px; grid-template-columns: 24px repeat(7, 1fr); }
  .tasks-demo__task { font-size: 9px; padding: 2px; }
  .shift-demo__calcell { min-height: 26px; }
  .memo-demo__map { height: 140px; }
}
