/* ==============================================
   components.css
   - ボタン（オレンジ・アウトライン青・アウトライン白）
   - 矢印サークル
   - その他再利用パーツ
   ============================================== */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  padding: 14px 26px;
}
.btn-orange:hover { background: var(--orange-dark); }

.btn-outline-blue {
  background: var(--white);
  color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
  padding: 12px 24px;
}
.btn-outline-blue:hover { background: var(--blue-light-bg); }

.btn-outline-white {
  background: var(--white);
  color: var(--blue-deep);
  padding: 13px 24px;
}

/* ===== Arrow circle ===== */
.arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  flex-shrink: 0;
}
