/* 初回インタラクティブチュートリアル — コーチマーク (2026-05-21) */

.ctut-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  /* チュートリアル中は背面操作をブロック (= 案内に集中。 ナビ誤クリック防止)。
     操作は ctut-tip のボタン (次へ/戻る/スキップ) で行う。 */
  pointer-events: auto;
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
}

/* スポットライト: ring 自身は透明、 box-shadow で周囲を暗くする */
.ctut-ring {
  position: fixed;
  border-radius: 9px;
  box-shadow: 0 0 0 9999px rgba(23, 23, 36, .62);
  border: 2px solid #2563eb;
  transition: top .2s, left .2s, width .2s, height .2s;
  pointer-events: none;
}

.ctut-tip {
  position: fixed;
  width: min(320px, calc(100vw - 24px));
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #d9dbe6;
  border-radius: 11px;
  box-shadow: 0 16px 40px rgba(23, 23, 36, .3);
  padding: 14px 15px 12px;
  pointer-events: auto;
  transition: top .2s, left .2s;
}

.ctut-step {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #2563eb;
}
.ctut-title {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 800;
  color: #1a1a2e;
}
.ctut-text {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.7;
  color: #374151;
}

.ctut-actions {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
}
.ctut-spacer { flex: 1 1 auto; }

.ctut-btn {
  border: 1px solid #d9dbe6;
  background: #fff;
  color: #646678;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 7px;
  cursor: pointer;
}
.ctut-btn:hover { background: #f1f2f6; }
.ctut-btn-primary {
  background: #1a1a2e;
  border-color: #1a1a2e;
  color: #fff;
}
.ctut-btn-primary:hover { background: #2a2a44; }
.ctut-skip { color: #9095a3; }
