/* http://meyerweb.com/eric/tools/css/reset/
   v5.0.1 | 20191019
   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,
main, 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, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, 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;
}

.debug {
  background-image: url("../images/debug_grid.png");
  background-position: left top;
  background-repeat: repeat;
}
@media (max-width: 768px) {
  .debug {
    background-image: url("../images/debug_grid.png");
    background-size: 12px 12px;
  }
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(12, calc(calc((var(--vw) - 532px) / 12) * 1 + 32px * 0));
  column-gap: 32px;
  position: fixed;
  top: 0;
  left: 90px;
  width: var(--vw);
  height: var(--vh);
  pointer-events: none;
  z-index: 100;
}
.c-grid > div {
  background-color: rgba(0, 0, 255, 0.2);
}
@media (max-width: 768px) {
  .c-grid {
    grid-template-columns: repeat(8, calc(calc((var(--vw) - 120px) / 8) * 1 + 8px * 0));
    column-gap: 8px;
    left: 32px;
  }
  .c-grid > div:nth-child(+8) {
    display: none;
  }
}

.c-typography--en {
  padding: 0 0.25em;
}
.c-typography--en:first-of-type {
  padding-left: 0;
}
.c-typography--en:last-of-type {
  padding-right: 0;
}

.c-image--cover, .c-image--contain, .c-image {
  display: block;
  width: 100%;
  height: 100%;
}
.c-image--cover > img, .c-image--contain > img, .c-image > img {
  display: block;
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.c-image--contain > img {
  object-fit: contain;
}
.c-image--cover > img {
  object-fit: cover;
}
.c-svg--cover, .c-svg--contain, .c-svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.c-svg--contain {
  object-fit: contain;
}
.c-svg--cover {
  object-fit: cover;
}
main {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 2em;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 48px;
  width: max-content;
  padding: 3em;
}

dl {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: 1em;
  row-gap: 1em;
  width: max-content;
}
@media (max-width: 768px) {
  main {
    row-gap: 1em;
    font-size: 24px;
    line-height: 32px;
    width: 100%;
    padding: 1em;
  }
  dl {
    grid-template-columns: 100%;
    row-gap: normal;
    width: 100%;
  }
  dd {
    padding-bottom: 1em;
  }
}
:root {
  --vw: 100vw;
  --vh: 100vh;
}

html, body {
  background-color: #fff;
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  font-feature-settings: "palt", "liga";
  text-size-adjust: 100%;
}

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

@media (max-width: 768px) {
  body {
    min-height: 100vh;
  }
}

a {
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 767px) {
  .is-hidden--vw-large {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .is-hidden--vw-small {
    display: none !important;
  }
}