/* ----------------------------------- CSS RESET---------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;900&display=swap");

/* ---------------------------------------WRITTEN CSS ----------------------------------- */

body {
  height: 100%;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}

/* ---------------------------------MAIN------------------------------------------------- */

main {
  margin-top: 20px;
}

.section-container {
  /* width: 100vw; */
  width: 97%;
  padding: 10px 10px;
}

.section-container h1 {
  font-size: 9vw;
  font-weight: 900;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
}

.section-info {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 50px;
}

.heading-colour {
  display: block;
  height: 15px;
  width: 90px;
  border-left: 8px solid maroon;
  border-bottom: 1px solid maroon;
  padding-bottom: 3px;
  padding-left: 15px;
  margin-bottom: 10px;
}

.text-container {
  padding: 10px 20px;
  line-height: 1.3;
}

.text-maroon {
  color: maroon;
  font-weight: 900;
}

.table {
  padding: 0 0px;
  margin-bottom: 20px;
}

table {
  width: 100%;
  max-width: 900px;
  text-align: left;
  margin-top: 20px;
}

th,
td {
  border: 1px solid black;
}

thead .column-1 {
  width: 25%;
  text-align: center;
}

thead .column-2 {
  width: 75%;
}

th {
  padding: 10px 20px;
}

td {
  padding: 10px 10px;
  line-height: 1.3;
}

td:first-child {
  text-align: center;
  vertical-align: middle;
}

.footer-copyright {
  margin-top: 0 !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .table {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  footer {
    height: 400px !important;
    justify-content: space-between !important;
  }
  .footer-copyright {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 1025px) {
  .section-container h1 {
    font-size: 42px;
  }
  .heading-colour {
    height: 35px;
    width: 200px;
    font-size: 32px;
    font-weight: 900;
  }
  .table {
    padding: 0 50px;
    margin-bottom: 20px;
  }
  footer {
    height: 400px !important;
    justify-content: space-between !important;
  }
}
