html.is-loading {
  overflow: hidden
}

html.is-loading .contents {
  display: none
}

.contents {
  overflow: hidden
}

.loading {
  position: relative;
  position: fixed;
  left: 0;
  top: 0;
  background: #000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  z-index: 1000;
}
.loadinginner {
  width: 100%;
  transition: 2s;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}
.is-out .loadinginner{  
  -webkit-filter: blur(100px);
  filter: blur(100px);
}
.loading_logo {
  transition: 1s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading_txt {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}
.loading_txt h1{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.8);
  font-size: 30px;
  font-weight: 100;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho,"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media only screen and (max-width: 835px) {
  .loading_logo {
    width: 36.8%;
    margin: auto;
  }
  .loading_txt{
    top: 40px;
  }
  .loading_txt h1{
    font-size: 20px;
  }
}
@media only screen and (max-width: 641px) {
  .loading_txt{
    top: 20px;
    padding: 0 10px;
  }
  .loading_txt h1{
    font-size: 18px;
  }
}
@media only screen and (max-width: 835px) {
  .loading_logo img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 835px) {
  .loading_lead {
    display: none;
  }
}

@media only screen and (max-width: 835px) {
  .loading_lead {
    margin-top: 50px;
    font-size: 1.2rem;
    letter-spacing: .3em;
    line-height: 2.2;
    width: 100%;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Yu Mincho", "游明朝", YuMincho, "游明朝体", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "メイリオ", sans-serif;
    -webkit-transform: scale3d(1, .9, 1);
    -moz-transform: scale3d(1, .9, 1);
    -ms-transform: scale3d(1, .9, 1);
    -o-transform: scale3d(1, .9, 1);
    transform: scale3d(1, .9, 1);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top
  }
}