@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style-type: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

em, strong {
  font-style: normal;
  font-weight: normal;
}

img, picture {
  width: 100%;
  height: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* mixinの定義 */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #222222;
  font-family: "Noto Sans JP", sans-serif;
}

h2 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 1.4rem;
  background-color: #ffffff;
}

h3 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  margin: 1em 0 5px;
  font-size: 1.4rem;
  background-color: #ffffff;
}

p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
  color: #ffffff;
}

header {
  max-width: 500px;
  padding: 70px;
  margin: 0 auto;
}

.wrap {
  max-width: 660px;
  padding: 0 25px;
  margin: 0 auto;
}
.wrap section {
  margin-bottom: 3.2rem;
}
.wrap .gamen p {
  text-align: left;
}
.wrap .gamen p a {
  font-size: 1.2rem;
  color: #fff;
}

footer {
  padding: 50px 0;
}
footer .global {
  max-width: 140px;
  margin: 0 auto;
}
footer .global ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}
footer small {
  display: block;
  margin-top: 50px;
  font-size: 1.2rem;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  h2 {
    padding: 5px 5px 5px 2em;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(-2em);
  }
  h3 {
    padding: 5px 5px 5px 2em;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    transform: translateX(-2em);
  }
}/*# sourceMappingURL=style.css.map */