@font-face {
  font-family: "fz-gonta-kana";
  src: url(/font/FZGontaKana.otf);
}
body {
  margin: 0;
  color: #111;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: orangered;
}

main {
  min-height: calc(100vh - 2em);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
}
main > section:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main > section:nth-child(1) > h1 {
  font-family: "fz-gonta-kana", sans-serif;
  text-align: center;
  font-size: 10vw;
  margin: 0;
  line-height: 1em;
}
main > section:nth-child(1) > p {
  margin: 0;
  text-align: center;
}
main > section:nth-child(2) {
  display: flex;
  justify-content: center;
}
main > section:nth-child(2) ul#sns-conteiner {
  width: 100%;
  max-width: 400px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5em;
  margin: 0;
  padding: 0;
  list-style: none;
}
main > section:nth-child(2) ul#sns-conteiner li {
  border-radius: 0.5em;
  border: solid 1px #eee;
  padding: 0 1em;
}
main > section:nth-child(2) ul#sns-conteiner li:hover {
  background: #eee;
}
main > section:nth-child(2) ul#sns-conteiner li:active {
  transform: translateY(2px);
}
main > section:nth-child(2) ul#sns-conteiner li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
}
main > section:nth-child(2) ul#sns-conteiner li a img {
  width: 36px;
  height: auto;
}
main > section:nth-child(2) ul#sns-conteiner li a h5,
main > section:nth-child(2) ul#sns-conteiner li a p {
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  box-sizing: border-box;
}
main > section:nth-child(4) ul {
  display: flex;
  justify-content: center;
  margin: 0;
  list-style: none;
}
main > section:nth-child(4) ul li {
  width: 100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 0.5em;
}
main > section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  padding: 0 5%;
}

.btn {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 1em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  background: #000;
  border-radius: 0.25em;
  color: #fff;
}
.btn:hover {
  transform: translateY(1px);
}
.btn:active {
  transform: translateY(3px);
}

.icon > * {
  display: inline-block;
  transform: translateY(2px);
  width: 1em;
}

@media screen and (max-width: 600px) {
  main section:nth-child(1) h1 {
    font-size: 64px;
  }
}
@keyframes pop {
  from {
    opacity: 0;
  }
}/*# sourceMappingURL=sty.css.map */