/*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: 400;
  letter-spacing: -0.05rem;
  word-break: normal;
}
body {
  margin: 0 auto;
}
main {
  min-height: 60vh;
}
a {
  text-decoration: none;
  color: var(--color-title);
  cursor: pointer;
}

body {
  background-color: var(--body-bg-color);
}
html {
  color: var(--color-text);
}
h1,
h2,
h3,
h4,
h5 {
  color: var(--color-title);
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}
img,
a {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-zoom: none;
}
