@import 'common/var';

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-1);
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-primary);
  text-decoration: none;

  &:hover,
  &:focus {
    color: var(--color-primary-hover);
  }

  &:active {
    color: var(--color-primary-active);
  }
}

h1, h2, h3, h4, h5, h6 {
  color: var(--font-color-primary);
  font-weight: inherit;

  &:first-child {
    margin-top: 0;
  }

  &:last-child {
    margin-bottom: 0;
  }
}

h1 {
  font-size: 16px;
}

h2 {
  font-size: var(--font-size-1);
}

h3, h4, h5, h6, p {
  font-size: inherit;
}

p {
  line-height: 1.8;

  &:first-child {
    margin-top: 0;
  }

  &:last-child {
    margin-bottom: 0;
  }
}

sup, sub {
  font-size: 10px;
}

small {
  font-size: 10px;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}
