:root {
  --color-black: #000;
  --color-white: #fff;
  --color-light-grey: #FBFBFB;
  --color-grey: #8B8D96;
  --color-red: red;
  --color-blue: #1047EA;
  --font-base-vw: calc(10 / 1920 * 100vw);
  --font-size-xs: 1.2rem;
  --font-size-sm: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-h1: 5.2rem;
  --font-size-h2: 4.2rem;
  --font-size-h3: 3.2rem;
  --font-size-h4: 2.4rem;
  --font-size-h5: 2rem;
  --headerHeight: 0;
}

@media screen and (max-width: 768px) {
  :root {
    --font-size-h1: 3.2rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.8rem;
    --font-size-h4: 1.6rem;
    --font-size-h5: 1.4rem;
    --headerHeight: 7.1rem;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-base-vw);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  margin: 0;
}

body {
  font-family: "Fixel";
  font-size: 1.8rem;
  line-height: normal;
  font-style: normal;
  font-weight: 300;
  overflow-x: hidden;
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

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

abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

picture,
img {
  border-style: none;
  display: block;
  width: 100%;
  height: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}

button,
input {
  overflow: visible;
  font-family: inherit;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: none;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}
@font-face {
  font-family: "Fixel";
  src: url("../fonts/FixelText-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Fixel";
  src: url("../fonts/FixelText-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fixel";
  src: url("../fonts/FixelText-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Fixel";
  src: url("../fonts/FixelText-Bold.woff2") format("woff2");
  font-weight: bold;
  font-display: swap;
}
.text-xs {
  font-size: var(--font-size-xs);
}

.text-sm {
  font-size: var(--font-size-sm);
}

.text-md {
  font-size: var(--font-size-md);
}

.text-lg {
  font-size: var(--font-size-lg);
}

.text-xl {
  font-size: var(--font-size-xl);
}

.title-xs,
h5 {
  font-size: var(--font-size-h5);
}

.title-sm,
h4 {
  font-size: var(--font-size-h4);
}

.title-md,
h3 {
  font-size: var(--font-size-h3);
}

.title-lg,
h2 {
  font-size: var(--font-size-h2);
  line-height: 1.2;
}

.title-xl,
h1 {
  font-size: var(--font-size-h1);
  line-height: 1;
}

.title-xs,
.title-sm,
.title-md,
.title-lg,
.title-xl,
h5,
h4,
h3,
h2,
h1 {
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-underline {
  border-bottom: 1px solid;
}

.text {
  font-size: 1.8rem;
  line-height: 1.5;
}

.text h5:not(:last-child),
.text h4:not(:last-child),
.text h3:not(:last-child),
.text h2:not(:last-child),
.text h1:not(:last-child),
.text p:not(:last-child) {
  margin-bottom: 2rem;
}

.text ul {
  list-style-position: inside;
}

.text li:not(:last-child) {
  margin-bottom: 2rem;
}

.text li::marker {
  color: inherit;
}

.text-opacity {
  opacity: 0.65;
}
.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 10vw;
  padding-right: 10vw;
  position: relative;
}

.container-md {
  max-width: 1366px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container-sm {
  max-width: 1024px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.container-xs {
  max-width: 680px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.sidebar-container {
  display: grid;
  grid-template-columns: 1fr 35rem;
  gap: 2rem;
  align-items: flex-start;
}

.sticky {
  position: sticky;
}

aside {
  padding: 3.8rem 1.6rem;
}

section {
  position: relative;
  overflow: hidden;
}

.section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.section-md {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.full-height {
  height: 100vh;
}

.full-width {
  width: 100%;
}

.fullscreen {
  width: 100%;
  height: 100vh;
}

.image {
  display: block;
}

.bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.flex {
  display: flex;
  flex-flow: row wrap;
}

.flex-2 .col {
  flex: 1;
  max-width: 50%;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.row-reverse {
  flex-flow: row-reverse wrap;
}

.grid.row-reverse .text {
  order: 2;
}

.grid.row-reverse .image {
  order: 1;
}

.align-center {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-vw {
  gap: 3vw;
}

.pc {
  display: block !important;
}

.mobile {
  display: none !important;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
    overflow-x: hidden;
  }
  .full-height {
    height: 120vw;
  }
  .pc {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }

  .menu.mobile {
    cursor: pointer;
    background: url(../img/icons/menu.svg) no-repeat center / contain;
    z-index: 1000;
    width: 2.4rem;
    height: 2.4rem;
    order: 2;
  }
  .menu.mobile.is-active {
    background: url(../img/icons/close.svg) no-repeat center;
  }
  .flex-2 .col {
    max-width: 100%;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6 {
    grid-template-columns: repeat(1, 100%);
  }

  .container, .container-md, .container-sm, .container-xs {
    padding-left: 2rem;
    padding-right: 2rem;
  }

}