/* ============================================================
   Reset CSS – career-hp
   ============================================================ */

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

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: var(--font-jp);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* テキスト系・ボタン・セレクトのみ appearance をリセット */
input:not([type="checkbox"]):not([type="radio"]),
textarea,
select,
button {
  appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
  background: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

address {
  font-style: normal;
}
