@charset "utf-8";

/* base */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 14px;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  -webkit-font-kerning: normal;
  line-height: 2;
  letter-spacing: 0.18em;
  font-family: "Noto Sans JP", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: center;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #FFF;
  color: #121212;
  animation: .4s fadeIn .4s forwards;
  -webkit-animation: .4s fadeIn .4s forwards;
  opacity: 0;
}

img {
  vertical-align: bottom;
  height: auto;
  width: 100%;
}

::selection {
  background: #121212;
  color: #FFF;
}

::-moz-selection {
  background: #121212;
}

/* link */
a:link,
a:visited,
a:active {
  color: #121212;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* fadein */
.fadein {
  opacity: 0;
  transition: all 0.6s;
}

/* text */
.md {
  font-weight: 500;
  letter-spacing: 0.3em;
}

.spbr {
  display: none;
}

.pcbr {
  display: block;
}


/* contents fadein */
@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

/* sp */
@media screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }

  .spbr {
    display: block;
  }

  .pcbr {
    display: none;
  }
}