@charset "UTF-8";
/* CSS Document */
/* ---- reset ----- */
html, body, main, header, section, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  /*font-weight: normal;*/
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
html, body {
  font-size: 16px;
  color: hsl(0, 0%, 4%);
}
article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}
* {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
a {
  color: hsl(0, 0%, 4%);
  display: block;
  text-decoration: none;
}
p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}
img {
  width: 100%;
  /*pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;*/
}
img::selection {
  background-color: transparent;
}
main {
  display: block;
}
/* ---- reset ----- */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif, "Noto Serif JP", serif, sans-serif, "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 18px;
  color: #5a5a5a;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.pc {
  display: none;
}
.sp {
  display: block;
}
.inner {
  width: 85%;
  margin: 0 auto;
  max-width: 500px;
}
.logo {
  width: 40%;
  margin: 1em auto;
  max-width: 200px;
}
.logo a {
  transition: ease 0.5s;
}
.logo a:hover {
  opacity: .6;
}
.main_text p {
  margin: 2em 0 5em;
  font-size: .7em;
  line-height: 2;
  /*letter-spacing: 0.01em;*/
}
.main_text p span {
  padding-right: 3px;
  display: inline-block;
}
.copy {
  text-align: center;
  margin-bottom: 2em;
  font-size: .8em;
}
@media screen and (min-width: 768px) {
  .main_text p {
    font-size: .9em;
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 4s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}