* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* モーダルのスムーズな表示 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-overlay {
  animation: fadeIn 0.2s ease-in-out;
}

/* ボタンのホバー効果 */
button {
  transition: all 0.2s ease-in-out;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
}

button:active:not(:disabled) {
  transform: translateY(0);
}

/* 入力フォームのフォーカス効果 */
input:focus {
  outline: none;
}

/* スムーズなスクロール */
html {
  scroll-behavior: smooth;
}
