@charset "UTF-8";
/* ===================================================================
  1. 全体
	2. レイアウト
=================================================================== */
/* clearfix */
/* ========================================================
 1. 全体
=========================================================== */
* {
    box-sizing: border-box;

}
html {
  height: 100%;
  overflow: hidden; }

body {
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  background: #fff;
  color: #555;
  line-height: 1.8;
  height: 100%; }

input, textarea {
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; }

/* リンクカラー
----------------------------------------------------*/
a {
  color: #0059ab;
  color: #555;
  text-decoration: none; }

a:link {
  color: #0059ab;
  color: #555;
   }

a:visited {
  color: #7357bc;
  color: #555;  
  }

a:hover {
  text-decoration: none; }

/* ========================================================
 2. レイアウト
=========================================================== */
#container {
  width: 100%;
  height: 100%;
  /*background-image: linear-gradient(#0078c8, #003287);*/ }

#loading {
  position: absolute;
  width: 48px;
  height: 48px;
  left: 50%;
  top: 50%;
  margin-top: -24px;
  margin-left: -24px;
  background: url(../website/loading_w.gif) no-repeat; }
  
#headerNav {
    position: fixed;
    top: 0;
    right: 0;
    display: table;
    padding: 20px 30px;
    z-index: 1000;
}
#headerNav li {
    display: table-cell;
    padding: 0 0 0 20px;
}

#home, #about, #recruit, #contact {
    cursor: pointer;  
}


#container-about, 
#container-recruit, 
#container-contact
 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: table;
    opacity: 1;
    z-index: 100;
}
.inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

#copyright {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 11px;
    color: #ccc;
}


