@font-face {
  font-family: "Jost-Medium";
  src: url("/eol-eosl-checker/assets/fonts/Jost-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Jost-Regular";
  src: url("/eol-eosl-checker/assets/fonts/Jost-Regular.ttf") format("truetype");
}

:root {
  --theme-text-family: "Jost-Regular";
  --theme-text-bold-family: "Jost-Medium";
  --theme-color: #0073ed;
  --theme-color-hover: #0057b3;
  --secondary-color: #34cf00;
  --secondary-color-hover: #2db000;
  --text-title-color: #000;
  --text-color: #333;
  --text-td-color: #666;
  --text-banner-title-size: 40px;
  --text-h1-size: 32px;
  --text-h2-size: 24px;
  --text-normal-size: 16px;
  --text-12-size: 12px;
  --text-14-size: 14px;
  --text-16-size: 16px;
  --text-20-size: 20px;
  --text-24-size: 24px;
  --text-32-size: 32px;
  --text-40-size: 40px;
  --banner-height: 400px;
  --banner--default-bg: url(/eol-eosl-checker/assets/img/page/eol_banner.webp);
  --section-padding: 88px;
  --section-title-margin-bottom: 32px;
  --element-only-pc-show: block;
  --element-only-m-show: none;
}
@media screen and (max-width: 768px) {
  :root {
    --text-banner-title-size: 32px;
    --text-h1-size: 24px;
    --text-h2-size: 16px;
    --text-normal-size: 14px;
    --text-14-size: 12px;
    --text-16-size: 14px;
    --text-20-size: 16px;
    --text-24-size: 18px;
    --text-32-size: 24px;
    --text-40-size: 32px;
    --banner-height: 280px;
    --section-padding: 40px;
    --element-only-pc-show: none;
    --element-only-m-show: block;
  }
}
*,
*:after,
*:before {
  box-sizing: border-box;

  outline: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font: inherit;
  font-size: 100%;
  font-family: var(--theme-text-family);
  color: var(--text-color);
  margin: 0;
  padding: 0;

  vertical-align: baseline;

  border: 0;
}
b,
strong {
  font-family: var(--theme-text-bold-family);
}
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.2;
}

a {
  color: var(--theme-color);
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;

  &:before,
  &:after {
    content: "";
    content: none;
  }
}

sub,
sup {
  font-size: 75%;
  line-height: 0;

  position: relative;

  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

input,
textarea,
button {
  font-family: inhert;
  font-size: inherit;

  color: inherit;
}

select {
  text-indent: 0.01px;
  text-overflow: "";

  border: 0;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

code,
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
