/**
 * Font Sizes
 */

/**
 * Line Heights
 */

/**
 * Font Weights
 */

/**
 * Color
 */
html,
body,
#__nuxt,
#__layout,
.default {
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  background-repeat: no-repeat;
  background-size: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  font-family: "Noto Sans JP", Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #1c1c1c;
  background: #fff;
}

h1 {
  font-size: 36px;
  line-height: 39.6px; /* 36px * 1.1 */
}

h2 {
  font-size: 32px;
  line-height: 35.2px; /* 32px * 1.1 */
}

h3 {
  font-size: 28px;
  line-height: 30.8px; /* 28px * 1.1 */
}

h4 {
  font-size: 24px;
  line-height: 26.4px; /* 24px * 1.1 */
}

h5 {
  font-size: 20px;
  line-height: 22px; /* 20px * 1.1 */
}

h6 {
  font-size: 16px;
  line-height: 17.6px; /* 16px * 1.1 */
}

a {
  color: #1c1c1c;
  text-decoration: underline;
  word-break: break-word;
  overflow-wrap: break-word;
}

a:active,
a:focus,
a:visited,
a:link,
a:hover {
  color: #1c1c1c;
}

a:hover {
  text-decoration: underline;
}

input {
  box-sizing: border-box;
  border: none;
  outline: none;
}

select {
  box-sizing: border-box;
  padding: 5px 10px;
}

@media screen and (width <= 768px) {
  h1 {
    font-size: 28.8px; /* 80% of 36px */
    line-height: 31.68px; /* 28.8px * 1.1 */
  }

  h2 {
    font-size: 25.6px; /* 80% of 32px */
    line-height: 28.16px; /* 25.6px * 1.1 */
  }

  h3 {
    font-size: 22.4px; /* 80% of 28px */
    line-height: 24.64px; /* 22.4px * 1.1 */
  }

  h4 {
    font-size: 19.2px; /* 80% of 24px */
    line-height: 21.12px; /* 19.2px * 1.1 */
  }

  h5 {
    font-size: 16px; /* 80% of 20px */
    line-height: 17.6px; /* 16px * 1.1 */
  }

  h6 {
    font-size: 12.8px; /* 80% of 16px */
    line-height: 14.08px; /* 12.8px * 1.1 */
  }
}

p {
  line-height: 1.5;
}

h1 {
  color: #24006c;
  text-align: center;
  letter-spacing: 0.5rem;
}

.error-container {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  background-color: #ebeff8;
}

/* stylelint-disable-next-line selector-class-pattern */
.error-container__title {
  font-size: 24px;
  font-weight: bold;
}

/* stylelint-disable-next-line selector-class-pattern */
.error-container__description {
  font-size: 14px;
  font-weight: 400;
}

@media screen and (width <= 768px) {
  /* stylelint-disable-next-line selector-class-pattern */
  .error-container__title {
    font-size: 20px;
    font-weight: bold;
  }
}
