@charset "utf-8";




/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    基本レイアウト                                */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
#World{
}

/* サイトのページ幅 */
.PageWidthSetter{
  margin: 0 auto;
  min-width:  320px;
  max-width:  640px;
}

/* ローディング表示 */
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 1;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Header, Contents, Footer                      */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */

/* HeaderDivision
--------------------------------------------------- */
header{
}
    .LangMenu{
      list-style: none;
      letter-spacing: -0.5em;
      color: #fff;
      background: #533726;
      padding: 0.5em;
    }
    .LangMenu li{
      letter-spacing: normal;
      display: inline-block;
      width: 33.33%;
      width: 25.00%;
      font-size: 112.5%;
      text-align: center;
    }
    .LangMenu li a{
      display: block;
      padding: 0;
      margin: 0 4px;
      border-radius: 5px;
      line-height: 2.5;
      color:      rgba(255,255,255,1);
      background: rgba(255,255,255,0.25);
      -webkit-transition: all .2s;
              transition: all .2s;
    }
    .LangMenu li a:hover{
      color:      rgba(255,255,255,1);
      background: rgba(255,255,255,0.35);
    }
    .LangMenu li.Active a{
      color:      rgba(255,255,255,1);
      background: rgba(30,50,255,1);
      background: rgba(210,120,35,1);
      background: #a77a50;
    }

    .LangMenu li.Invalid a{
      color:      rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.05);
      cursor: default!important;
    }


/* ContentsDivision
--------------------------------------------------- */
.ContentsDivision {
}
    .ContentsDivision img{
      width: 100%;
    }


#GuidanceImage{
  position: relative;
}
#GuidanceImage::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(0,0,0,0);
}