@charset "utf-8";

body {
  font-family: "メイリオ","ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
  margin: 0;
  background: #fff;
}

a {
  overflow: hidden;
  text-decoration: none;
  color: #000;
}

.wrapper {
  padding: 20px 0 70px;
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
}

#splash-logo img {
  width: 100%;
}

.splash-anim {
  animation-name: splashAnime;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes splashAnime {
  from {
    opacity: 0;
    transform: scale(1.4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/**
 * ヘッダー
 */
.header {
  padding: 20px;
  color: #000;
}

.header a {
  color: #000;
   overflow: hidden;
   text-decoration: none;
}

.header-title {
  font-size: 28px;
  font-weight: bold;
}

.header-sub {
  font-size: 12px;
}

/**
 * フッター
 */
.footer {
  margin: 0;
  padding: 0 20px;
  color: #000;
  text-align: center;
}

.footer p {
  padding: 40px;
  font-size: 16px;
}

.line {
  margin-top: 10px;
  border-top: 1px solid #000;
}