/* パルーデ売上日報 — 画面スタイル
 *
 * 入校・売上管理（nyuko-uriage）と同じ考え方:
 * フロントの PC で毎日使うので、装飾より「数字が読みやすいこと」を優先する。
 * 数字は等幅かつ tabular-nums で桁を揃える。
 */

:root {
  --bg: #f4f6f5;
  --bg-tint: #edf1ef;
  --panel: #ffffff;
  --panel-raised: #ffffff;
  --border: #dfe5e9;
  --border-strong: #c5cfd5;
  --text: #17212a;
  --text-dim: #71808c;
  --accent: #b99052;
  --accent-hover: #9e7740;
  --accent-soft: #f5f1e8;
  --accent-strong: #80602f;
  --good: #24956a;
  --bad: #b33a48;
  --sat: #3f6fc0;
  --sun: #b33a48;
  --warn: #94620a;
  --warn-bg: #fff7df;
  --row-alt: #f8fafc;
  --today: #fff4ce;
  --derived: #f0f4f7;
  --topbar: #12303a;
  --topbar-text: #f3f8fb;
  --topbar-dim: #b6c1c9;
  --chart-1: #b99052;
  --chart-2: #397887;
  --chart-3: #26996b;
  --chart-4: #8266bb;
  --chart-5: #c44958;
  --chart-6: #c99a24;
  --chart-7: #318db9;
  --chart-other: #7c8998;
  --shadow: 0 14px 40px rgba(18, 48, 58, .07);
  --shadow-lg: 0 24px 60px rgba(23, 35, 52, .16);
  --radius: 12px;
  --radius-lg: 18px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d151c;
    --bg-tint: #111e27;
    --panel: #15212b;
    --panel-raised: #192832;
    --border: #273844;
    --border-strong: #3a4d5a;
    --text: #edf4f7;
    --text-dim: #9dafba;
    --accent: #d1ad70;
    --accent-hover: #dfc18e;
    --accent-soft: #342f25;
    --accent-strong: #efd29e;
    --good: #65c79a;
    --bad: #ef7b87;
    --sat: #7ea0df;
    --sun: #ef7b87;
    --warn: #e0b45d;
    --warn-bg: #352c19;
    --row-alt: #192630;
    --today: #3a321c;
    --derived: #1b2933;
    --topbar: #0d2932;
    --topbar-text: #f3fafc;
    --topbar-dim: #a8c2ce;
    --chart-1: #d1ad70;
    --chart-2: #6eafbd;
    --chart-3: #65c79a;
    --chart-4: #b5a0e2;
    --chart-5: #ef7b87;
    --chart-6: #e0b45d;
    --chart-7: #72b9df;
    --chart-other: #9dafba;
    --shadow: 0 1px 2px rgba(0, 0, 0, .18), 0 12px 28px rgba(0, 0, 0, .18);
    --shadow-lg: 0 28px 70px rgba(0, 0, 0, .38);
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.num, input[type="number"], input[inputmode="numeric"], td.num, th.num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* --- 全体レイアウト ------------------------------------------------------ */

header.topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  min-height: 64px;
  background: var(--topbar);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 8px 28px rgba(11, 35, 49, .16);
  position: sticky;
  top: 0;
  z-index: 20;
  overflow-x: auto;
}

.topbar .brand {
  color: var(--topbar-text);
  font-weight: 750;
  font-size: 16px;
  letter-spacing: .01em;
  margin-right: 18px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.topbar .brand small { color: var(--topbar-dim); font-weight: 500; margin-left: 8px; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.04em;
  box-shadow: inset 0 1px rgba(255, 255, 255, .12);
}

.topbar nav { display: flex; gap: 2px; }
.topbar nav a {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--topbar-dim);
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}
.topbar nav a:hover { background: rgba(255, 255, 255, .08); color: var(--topbar-text); }
.topbar nav a.active { background: rgba(255, 255, 255, .14); color: #fff; font-weight: 700; }

.topbar .spacer { flex: 1; }
.topbar .user {
  color: var(--topbar-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.topbar .user button { color: var(--topbar-dim); }
.topbar .user button:hover { color: #fff; background: rgba(255, 255, 255, .09); border-color: transparent; }

main { padding: 26px 28px 42px; max-width: 1540px; margin: 0 auto; }

.empty { padding: 60px 20px; text-align: center; color: var(--text-dim); }

/* --- 部品 ---------------------------------------------------------------- */

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  margin-bottom: 20px;
}
.panel h2 { margin: 0 0 14px; font-size: 16px; letter-spacing: .01em; }
.panel h3 { margin: 18px 0 10px; font-size: 14px; color: var(--text-dim); }

.toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.toolbar .title { font-size: 20px; font-weight: 750; letter-spacing: -.01em; margin-right: 8px; }
.toolbar .hint { color: var(--text-dim); font-size: 12.5px; }

button, .btn {
  font: inherit;
  min-height: 36px;
  padding: 7px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease;
}
button:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-strong); }
button:active { transform: translateY(1px); }
button.primary { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 7px 18px rgba(185, 144, 82, .22); }
button.primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }
button.ghost { border-color: transparent; color: var(--text-dim); }
button:disabled { opacity: .5; cursor: default; }

select, input[type="text"], input[type="password"], input[type="number"], input[type="file"] {
  font: inherit;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
}
input:focus, select:focus { outline: 3px solid color-mix(in srgb, var(--accent) 18%, transparent); border-color: var(--accent); }

.pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 650;
}

/* 目立つ断り書き（自動車学校のダッシュボードと同じ見た目） */
.notice { padding: 13px 16px; border-radius: 10px; margin-bottom: 14px; font-size: 13px; border-left: 4px solid currentColor; }
.notice.warn { background: var(--warn-bg); color: var(--warn); }
.notice.error { background: #fdeaec; color: var(--bad); }
.notice.ok { background: var(--accent-soft); color: var(--accent); }
@media (prefers-color-scheme: dark) { .notice.error { background: #2b1a1c; } }

.msg { padding: 10px 13px; border-radius: 9px; margin: 8px 0; }
.msg.ok { background: var(--accent-soft); color: var(--accent); }
.msg.warn { background: var(--warn-bg); color: var(--warn); }
.msg.err { background: rgba(176, 42, 55, .1); color: var(--bad); }

/* --- 表 ------------------------------------------------------------------ */

.tablewrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  scrollbar-color: var(--border-strong) transparent;
  scrollbar-width: thin;
}
.tablewrap::-webkit-scrollbar { height: 10px; width: 10px; }
.tablewrap::-webkit-scrollbar-thumb { background: var(--border-strong); border: 3px solid transparent; border-radius: 999px; background-clip: padding-box; }

/* 見出しを貼り付けて表を内側で縦スクロールさせる（日報入力で使う）。
 * 月の後半の日を入力しても、上の項目欄が常に見えるようにする。 */
.tablewrap.sticky-head { max-height: 72vh; overflow: auto; }
.sticky-head thead th {
  position: sticky;
  z-index: 3;
  background: var(--panel-raised);
  box-shadow: inset 0 -1px var(--border);
}
.sticky-head thead tr:first-child th { top: 0; }
/* 2 段目は 1 段目の高さぶん下げる。既定 30px、JS が実測値で上書きする */
.sticky-head thead tr:nth-child(2) th { top: 30px; }
.sticky-head thead th.group { z-index: 4; }
/* いま入力している欄を分かりやすく */
.sticky-head tbody input:focus { outline: 2px solid var(--accent); outline-offset: -1px; background: var(--accent-soft); }

table.grid {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
  font-size: 13px;
}
table.grid th, table.grid td {
  border: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6px 9px;
  text-align: right;
  white-space: nowrap;
}
table.grid th {
  background: var(--derived);
  font-weight: 700;
  text-align: center;
  color: var(--text-dim);
}
table.grid th.group { border-bottom-width: 2px; color: var(--text); }
table.grid td.label, table.grid th.label { text-align: left; }
table.grid td.center { text-align: center; }
table.grid tr:nth-child(even) td { background: var(--row-alt); }
table.grid tbody tr:hover td { background: color-mix(in srgb, var(--accent-soft) 62%, var(--panel)); }
table.grid tr.today td { background: var(--today); box-shadow: inset 0 1px color-mix(in srgb, var(--warn) 32%, transparent), inset 0 -1px color-mix(in srgb, var(--warn) 32%, transparent); }
table.grid tr.today td:first-child { box-shadow: inset 4px 0 var(--warn), inset 0 1px color-mix(in srgb, var(--warn) 32%, transparent), inset 0 -1px color-mix(in srgb, var(--warn) 32%, transparent); }
table.grid tr.total td, table.grid td.total {
  font-weight: 700;
  background: var(--accent-soft);
  border-top: 2px solid var(--accent);
}
table.grid td.dim { color: var(--text-dim); }
table.grid td.derived { background: var(--derived) !important; color: var(--text-dim); }

.sat { color: var(--sat); }
.sun { color: var(--sun); }
.pos { color: var(--good); }
.neg { color: var(--bad); }

table.grid input {
  width: 68px;
  min-height: 28px;
  padding: 3px 6px;
  text-align: right;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 4px;
}
table.grid input:hover { border-color: var(--border-strong); }
table.grid input:focus { border-color: var(--accent); background: var(--panel); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
table.grid input.dirty { background: var(--warn-bg); }
table.grid input.saved { background: color-mix(in srgb, var(--good) 15%, transparent); transition: background 1s; }

/* --- ダッシュボード ------------------------------------------------------ */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 20px; }
.card {
  min-width: 150px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 17px 18px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--accent); }
.card:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); box-shadow: 0 12px 30px rgba(23, 35, 52, .1); }
.card .k { color: var(--text-dim); font-size: 12px; font-weight: 650; letter-spacing: .02em; }
.card .v { font-size: 25px; font-weight: 750; line-height: 1.35; letter-spacing: -.02em; margin: 4px 0; }
.card .s { font-size: 12.5px; color: var(--text-dim); }

.chart-note { color: var(--text-dim); font-size: 12px; margin-top: 4px; }

.legend { display: flex; gap: 10px 18px; flex-wrap: wrap; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); font-size: 12.5px; color: var(--text-dim); }
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.legend .sw { display: inline-block; width: 16px; height: 8px; border-radius: 999px; }
.legend svg { flex: none; }

/* --- ログイン ------------------------------------------------------------ */

.login-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--panel);
}
.login-visual {
  position: relative;
  min-height: 100vh;
  padding: clamp(54px, 9vw, 150px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #12303a;
}
.login-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent);
  display: none;
}
.login-copy { position: relative; z-index: 2; }
.login-eyebrow { margin: 0; color: #e2c58f; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.login-copy h1 { margin: 22px 0 24px; color: #fff; font-size: clamp(38px, 4.2vw, 66px); line-height: 1.27; letter-spacing: -.055em; }
.login-copy > p:not(.login-eyebrow) { margin: 0; color: #aebdc6; font-size: 15px; line-height: 2; }
.login-pills { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 9px; }
.login-pills span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; color: #c7d1d7; background: rgba(255,255,255,.04); font-size: 13px; }
.login-orb { display: none; position: absolute; border-radius: 50%; filter: blur(2px); }
.login-orb.one { width: 430px; height: 430px; right: -250px; bottom: -170px; background: radial-gradient(circle at 30% 30%, rgba(185,144,82,.58), rgba(185,144,82,0) 68%); }
.login-orb.two { width: 180px; height: 180px; right: 10%; top: 9%; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 0 90px rgba(185,144,82,.12); }
.login-panel { min-width: 0; padding: 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--panel); }
.login {
  width: min(420px, 100%);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.login-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 54px; }
.login-brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.login-brand-copy strong { font-size: 17px; }
.login-brand-copy small { margin-top: 6px; color: var(--text-dim); font-size: 11px; letter-spacing: .18em; }
.login-secure { margin: 0 0 10px; color: var(--good); font-size: 13px; font-weight: 700; }
.login h1 { font-size: 28px; line-height: 1.45; letter-spacing: 0; margin: 0 0 7px; }
.login-brand .brand-mark {
  width: 40px;
  height: 40px;
  margin: 0;
  background: var(--accent);
  border-color: var(--accent);
}
.login .sub { color: var(--text-dim); font-size: 15px; margin-bottom: 29px; }
.login label { display: block; margin: 18px 0 8px; font-size: 14px; font-weight: 700; color: color-mix(in srgb, var(--text) 78%, var(--text-dim)); }
.login input { width: 100%; min-height: 48px; padding: 0 14px; border-radius: 10px; font-size: 15px; }
.login input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent); }
.login button { width: 100%; min-height: 50px; margin-top: 22px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; border-radius: 10px; font-size: 15px; }
.login button::after { content: "\2192"; font-size: 19px; font-weight: 400; }
.login-build { margin-top: 42px; color: var(--text-dim); font-size: 12px; text-align: center; }

@media (max-width: 900px) {
  header.topbar { padding: 0 14px; }
  .topbar .brand small, .topbar .user > span { display: none; }
  main { padding: 18px 14px 32px; }
  .panel { padding: 16px; }
  .login-wrap { grid-template-columns: 1fr; }
  .login-visual { display: none; }
  .login-panel { min-height: 100vh; padding: 35px 25px; }
}

/* --- 管理 ---------------------------------------------------------------- */

.formrow { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 12px 0; }
.formrow label { color: var(--text-dim); font-size: 13px; font-weight: 600; }

dialog {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  padding: 24px;
  min-width: 300px;
  box-shadow: var(--shadow-lg);
}
dialog::backdrop { background: rgba(8, 21, 30, .58); backdrop-filter: blur(3px); }

/* --- 自動ログアウトの知らせ・書きかけの復元（右下の小窓。入力を邪魔しない） --- */

.session-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: min(380px, calc(100vw - 32px));
  padding: 18px 20px;
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.session-notice.warn { border-left-color: var(--warn); }
.session-notice h2 { margin: 0 0 6px; font-size: 15px; }
.session-notice p { margin: 0; color: var(--text-dim); font-size: 13.5px; line-height: 1.7; }
.session-notice .count { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
.session-notice .formrow { justify-content: flex-end; margin: 14px 0 0; }
@media (max-width: 640px) {
  .session-notice { right: 16px; bottom: 16px; }
}

/* --- 構成比の積み上げ横棒 ------------------------------------------------ */

.stackrow { display: flex; align-items: center; gap: 10px; margin: 4px 0; }
.stackrow .yl { width: 44px; text-align: right; color: var(--text-dim); font-size: 12.5px; flex: none; }
.stack { display: flex; flex: 1; height: 26px; border-radius: 7px; overflow: hidden; background: var(--row-alt); box-shadow: inset 0 0 0 1px var(--border); }
.stack .seg {
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 600;
  min-width: 0; white-space: nowrap; overflow: hidden;
}

@media (max-width: 640px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .card { min-width: 0; padding: 14px; }
  .card .v { font-size: 21px; }
  .toolbar .title { flex-basis: 100%; }
}

/* --- 印刷 ---------------------------------------------------------------- */

@media print {
  header.topbar, .toolbar button, .toolbar select, .toolbar input, .toolbar label,
  button, .legend, .msg, .notice, .session-notice { display: none !important; }
  body { background: #fff; color: #000; }
  .panel { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  .tablewrap { overflow: visible; }
  table.grid { font-size: 11px; }
  table.grid th, table.grid td { padding: 2px 5px; }
}

/* 全社共通ログイン（2026-09-26）：顔・指紋・暗証番号でログイン／2段目の「戻る」 */
.login button.login-passkey {
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.login button.login-passkey::after { content: none; }

/*
 * ログインのキャッチコピー（2026-09-26 所有者の依頼「印象付けたい」。入校・売上などとそろえる）。
 * ログイン画面を開くたびに、キャッチコピーの面を全画面（.lv-splash。app.js の playLoginSplash が写しを作る）で
 * 流してから、ログイン画面に切り替える。流れ方:
 *   上の小見出し → 見出しが 1 行ずつ下からせり上がる → 「次の一手へ。」に金の下線が引かれ、光が 1 回走る
 *   → 説明文 → タグが順に出る → 約 3 秒で消えてログイン画面（押す・キーを打つと飛ばせる）
 * 画面の中（PC の左の面）のキャッチコピーは、止まった完成形で出す（同じ動きを二度見せない）。
 * スマホは左の面を出さない作りのままで、全画面のときだけキャッチコピーが見える。
 * 動きを減らす設定の端末では全画面を出さない（app.js）。
 */
.lv-line { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; }
.lv-line > span { display: inline-block; }
.lv-accent { position: relative; }
.lv-accent::after {
  content: "";
  position: absolute;
  left: .02em;
  right: .5em;
  bottom: .02em;
  height: .08em;
  border-radius: 2px;
  background: #e2c58f;
}

/* 全画面。左の面の写しなので見た目の指定はそのまま使い、画面いっぱいに広げて真ん中に置く */
.login-visual.lv-splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex !important;
  justify-content: center;
  min-height: 100dvh;
  padding: 32px clamp(28px, 9vw, 150px);
  cursor: pointer;
  animation: lv-leave .5s ease 3.1s forwards;
}
.login-visual.lv-splash.lv-leave-now { animation: lv-leave-now .35s ease forwards; }
.lv-splash .login-copy { width: min(760px, 100%); }
.lv-splash .login-copy h1 { font-size: clamp(32px, 9vw, 72px); }

.lv-splash .lv-line > span {
  transform: translateY(110%);
  animation: lv-rise .95s cubic-bezier(.2, .8, .2, 1) .25s forwards;
}
/* せり上がる span そのものなので、上の .lv-line > span より強い書き方にして光の動きも足す */
.lv-splash .lv-line > span.lv-accent {
  /* 光が走るぶんの帯。文字の色（白）は帯の両端と同じにしてあるので、止まっていれば白のまま */
  background: linear-gradient(100deg, #fff 38%, #f3dfb6 46%, #e2c58f 50%, #f3dfb6 54%, #fff 62%) 100% 0 / 260% 100% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lv-rise .95s cubic-bezier(.2, .8, .2, 1) .43s forwards, lv-shine 1.3s ease-in-out 1.75s forwards;
}
.lv-splash .lv-accent::after {
  transform: scaleX(0);
  transform-origin: left center;
  animation: lv-draw .75s cubic-bezier(.65, 0, .25, 1) 1.2s forwards;
}
.lv-splash .login-eyebrow { animation: lv-fade .7s ease .05s both; }
.lv-splash .login-copy > p:not(.login-eyebrow) { animation: lv-fade .8s ease 1.0s both; }
.lv-splash .login-pills span { animation: lv-fade .6s ease both; }
.lv-splash .login-pills span:nth-child(1) { animation-delay: 1.25s; }
.lv-splash .login-pills span:nth-child(2) { animation-delay: 1.35s; }
.lv-splash .login-pills span:nth-child(3) { animation-delay: 1.45s; }
.lv-splash .login-pills span:nth-child(4) { animation-delay: 1.55s; }

@keyframes lv-rise { to { transform: translateY(0); } }
@keyframes lv-draw { to { transform: scaleX(1); } }
@keyframes lv-shine { from { background-position: 100% 0; } to { background-position: 0 0; } }
@keyframes lv-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes lv-leave { to { opacity: 0; visibility: hidden; } }
/* 押して飛ばすとき。名前を分けて、途中からでも必ず新しく始まるようにする */
@keyframes lv-leave-now { to { opacity: 0; visibility: hidden; } }
