body {
  font-family: sans-serif; /* デフォルトのフォントを設定 */
}
.min-h-screen {
  min-height: 100vh;
}
.bg-[#F0F0F0] {
  background-color: #F0F0F0;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.p-4 {
  padding: 1rem;
}
.bg-white {
  background-color: white;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.shadow-lg {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.p-8 {
  padding: 2rem;
}
.max-w-md {
  max-width: 30rem;
}
.w-full {
  width: 100%;
}
.text-2xl {
  font-size: 2rem;
}
.font-bold {
  font-weight: bold;
}
.text-[#6CB1C9] {
  color: #6CB1C9;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.text-center {
  text-align: center;
}
.text-lg {
  font-size: 1.25rem;
}
.text-[#BF8E68] {
  color: #BF8E68;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.bg-[#FFDEAA] {
  background-color: #FFDEAA;
}
.p-2 {
  padding: 0.5rem;
}
.rounded {
  border-radius: 0.25rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-gray-600 {
  color: #6B7280;
}
.hover\:underline:hover {
  text-decoration: underline;
}
.break-all {
  word-break: break-all;
}
