/*common*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

body,
html,
p,
h1,
h2,
h3,
h4,
h5,
span,
button,
input,
select,
textarea,
label {
  font-weight: 500;
  letter-spacing: -0.8px;
  word-break: normal;
}

body {
  margin: 0 auto;
  background-color: var(--body-bg-color);
}

main {
  min-height: 60vh;
}

a {
  text-decoration: none;
  color: var(--color-text);
  cursor: pointer;
}

html {
  color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--color-text);
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

img,
a {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-zoom: none;
}

span {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
