@charset "UTF-8";
@font-face {
    font-family: 'texgyreadventorregular';
    src: url('../fonts/texgyreadventor-regular-webfont.eot');
    src: url('../fonts/texgyreadventor-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/texgyreadventor-regular-webfont.woff') format('woff'),
         url('../fonts/texgyreadventor-regular-webfont.ttf') format('truetype'),
         url('../fonts/texgyreadventor-regular-webfont.svg#texgyreadventorregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


html {
  width: 100%;
  height: 100%;
}
body {
  -webkit-text-size-adjust:none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  height: 100%;
  width: 100%;
  font-family: "texgyreadventorregular", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  line-height: 1.75;
  color: #333;
  background-color: #041328;
}

body.disable:after{
  content: "";
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

a {
  color: #346bb0;
  text-decoration: none;
  transition:all 0.2s linear;
}
a:hover{
  color: #8A94BF;
}

table {
  font-size: inherit;
}

img {
  vertical-align: bottom;
}
::selection {
  color: #fff;
  background: #00387F;
}
::-moz-selection {
  color: #fff;
  background: #00387F;
}


#loading{
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  /*background-color: #000;*/
  /*background-color: #041328;*/
}

body:not(#index) #loading{
  display: none;
}

#loading.bg{
  background-color: #041328;
}

#loading .loader {
  position: absolute;
  z-index: 5;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  border-top: 2px solid rgba(255,255,255,0.5);
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  opacity: 1;
  -webkit-animation: spin 0.8s linear 0s infinite;
  animation: spin 0.8s linear 0s infinite;
}

/*#loading.bg .loader {
  border: 2px solid rgba(255,255,255,0.4);
  border-top: 2px solid rgba(255,255,255,0.2);
}*/

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*-------------------------------------------------------------------------
helper
-------------------------------------------------------------------------*/
.larger{
  font-size: 115%;
}
.smaller{
  font-size: 85%;
}
.emph{
  color: #00387F;
}


.MB5{
  margin-bottom:5px;
}
.MB10{
  margin-bottom:10px;
}
.MB20{
  margin-bottom:20px;
}
.MB30{
  margin-bottom:30px;
}
.MT5{
  margin-top:5px;
}
.MT10{
  margin-top:10px;
}
.MT20{
  margin-top:20px;
}
.MT30{
  margin-top:30px;
}
.ML5{
  margin-left:5px;
}
.ML10{
  margin-left:10px;
}
.ML20{
  margin-left:20px;
}
.ML30{
  margin-left:30px;
}
.MR5{
  margin-right:5px;
}
.MR10{
  margin-right:10px;
}
.MR20{
  margin-right:20px;
}
.MR30{
  margin-right:30px;
}

.CB{
  clear: both;
}

.TR{
  text-align: right;
}
.TC{
  text-align: center;
}
.TL{
  text-align: left;
}

.FIT{
  max-width: 100%;
}