@charset "UTF-8";

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  min-width: 1240px;
	font-family: var(--font-family-base);
	font-size: var(--font-size-xs);
	color: var(--color-black);
  line-height: var(--line-height-sm);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

@media (max-width: 768px) {
  body {
    min-width: revert;
    font-size: var(--font-size-2xs);
  }
}

h1 {
  margin: 0;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button {
	color: inherit;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

ol, ul {
	list-style: none;
}

small {
  font-size: 100%;
}
