/* ============================================
   BASE.CSS — Reset and core styles
   Star Car Japan — BE FORWARD style
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 13px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #333333;
  background-color: #f5f5f5;
  line-height: 1.4;
  min-width: 1000px;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #e8380d;
}

img {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

button, select, input, textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

select {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none !important;
}

.text-orange {
  color: #e8380d;
}

.text-gray {
  color: #999999;
}

.text-dark {
  color: #333333;
}

.bold {
  font-weight: bold;
}

.text-11 {
  font-size: 11px;
}

.text-12 {
  font-size: 12px;
}

.text-13 {
  font-size: 13px;
}

.text-14 {
  font-size: 14px;
}

/* ============================================
   SCROLLBAR (webkit)
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}
