@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Cinzel|Titillium+Web:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Kosugi+Maru|Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese');

/* ======= clearfix ======== */
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
.clearfix {
  zoom: 1;
}

/* ======== 基本設定 ======== */
html {
  font-family: "Noto Sans JP", sans-serif;
}
body {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  letter-spacing: .1em;
  font-feature-settings: 'palt' 1;
  -webkit-font-feature-settings: 'palt' 1;
  -moz-font-feature-settings: 'palt' 1;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  font-size: 1.2rem;
}

p {
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.25));
}
h1, h2, h3, h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5));
}

a {
  text-decoration: none;
  color: #ffffff;
  transition: 0.5s;
}
a:hover {
  color: #dddddd;
}

/* ======== loading ======== */
#loading-wrapper {
  z-index: 1000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  display: table;
}
#loading {
  display: table-cell;
  vertical-align: middle;
}
.loading {
  color: #ffffff;
  font-size: 2rem;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .2em;
  text-align: center;
  margin: 2em;
}
.loading:before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  animation: spin .8s infinite linear;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}