/**
 * @file
 * CSS for basic HTML elements.
 */




/**
 * ===== RESET =====
 */
* {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: top;
}




/**
 * ===== HTML =====
 */
html {
  font-size: 100%;
}

/* @media */
@media only screen and (min-width: 1200px) {
  html {
    font-size: 110%;
  }
}




/**
 * ===== BODY =====
 */
body {
  background-color: var(--site--body--back-color--01);
  color: var(--site--body--text-color--02);
  font-family: "Usual", sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1.5;
}




/**
 * ===== HTML 5 =====
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}




/**
 * ===== IMG =====
 */
img {
  display: block;
  height: auto;
  max-width: 100%;
}




/**
 * ===== LINK =====
 */
a,
a:link,
a:visited,
a:hover {
  color: var(--site--body--text-color--02);
  text-decoration: none;
}




/**
 * ===== TYPO =====
 */

/**/
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

h1 {
  font-size: 2.00rem;
}
h2 {
  font-size: 1.50rem;
}
h3 {
  font-size: 1.50rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.00rem;
}

/**/
p {
  margin: 0 0 0.75rem 0;
}

/**/
address {}

/**/
blockquote {
  font-style: normal;
}
blockquote p {}

/**/
q {
  font-style: normal;
}

/**/
em {
  font-style: normal;
}

/**/
strong {
  font-weight: 500;
}

/**/
hr {
  border: 0;
  border-bottom: 1px solid var(--site--main--color--04-02);
  margin: 1.5rem 0;
}

/**/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5rem;
}

sub {
  bottom: -0.25rem;
}




/**
 * ===== LIST =====
 */

/**/
dl {}
dt {}
dd {}

/**/
ol {
  list-style-position: inside;
  list-style-type: none;
}
ol li {}

/**/
ul {
  list-style-position: inside;
  list-style-type: none;
}
ul li {}




/**
 * ===== TABLE =====
 */

/**/
caption {
  color: var(--site--main--color--04-02);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.025rem;
  padding: 1.0rem;
  text-align: left;
  text-transform: uppercase;
}

/**/
table {
  background-color: transparent;
  border: 1px solid var(--site--main--color--04-02);
  border-collapse: collapse;
  border-width: 0;
  margin-bottom: 1.5rem;
  width: 100%;
}

/**/
table a,
table a:link,
table a:visited {}
table a:hover {}

/**/
tr {}

/**/
thead {}
thead th {
  background-color: #EEEEEE;
  border: 1px solid var(--site--main--color--04-02);
  border-width: 1px;
  font-weight: 500;
  letter-spacing: 0.025rem;
  padding: 0.5rem;
  text-align: left;
  text-transform: uppercase;
  vertical-align: bottom;
}

/**/
tbody {}
tbody tr:nth-child(odd) {
  background-color: var(--site--body--back-color--02);
}
tbody td {
  border: 1px solid var(--site--main--color--04-02);
  border-width: 1px;
  padding: 0.5rem;
}
