﻿/*--------------------------------------------------------
                          全体設定
---------------------------------------------------------*/
body{
  font : 13px/1.5 "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "平成ゴシック", arial, helvetica, clean, sans-serif;
  color : #333333;
  width : 100%;
}

table{
  font-size : inherit;
  font      : 100%;
}

.text10{ font-size : 77%;    }
.text11{ font-size : 85%;    }
.text12{ font-size : 93%;    }
.text13{ font-size : 100%;   }
.text14{ font-size : 108%;   }
.text15{ font-size : 116%;   }
.text16{ font-size : 123.1%; }
.text17{ font-size : 131%;   }
.text18{ font-size : 138.5%; }
.text19{ font-size : 146.5%; }
.text20{ font-size : 153.9%; }
.text21{ font-size : 161.6%; }
.text22{ font-size : 167%;   }
.text23{ font-size : 174%;   }
.text24{ font-size : 182%;   }
.text25{ font-size : 189%;   }
.text26{ font-size : 197%;   }


/*--------------------------------------------------------
               テキストリンク
---------------------------------------------------------*/
a:link   { text-decoration:none;      color: #666666; }
a:visited{ text-decoration:none;      color: #008CCD; }
a:active { text-decoration:none;      color: #008CCD; }
a:hover  { text-decoration:underline; color: #008CCD; }


/*--------------------------------------------------------
                         パーツ
---------------------------------------------------------*/
.clear{
  clear : both;
}
.none{
  display : none;
}
.hidden{
  visibility : hidden;
}
.nowrap{
  white-space: nowrap;
}
/* 強調箇所 */
.important{
  color:red;
  font-weight:bold;
}
/* 必須項目 */
.must{
  color: red;
  font-weight: bold;
}
/* 注記 */
.note1{
  color: red;
  font-size : 93%;
  margin: 10px 0;
}
.note2{
  font-size : 93%;
  margin: 10px 0;
}


/*--------------------------------------------------------
                         ヘッダー
---------------------------------------------------------*/
#header{
  width : 100%;
  height : 5px;
  background-color : #010052;
  margin-bottom: 10px;
}


/*--------------------------------------------------------
                         コンテンツ
---------------------------------------------------------*/
#container{
  position : relative;
  width: 98%;
  margin: 0 1%;
  padding: 0;
}
  /*大学ロゴ*/
  #container h1{
    margin: 0;
    padding: 0;
  }
  #container h1 img{
    width: 100%;
    max-width : 343px;
    max-height : 35px;
  }
  /*コンテンツタイトル*/
  #container #title{
    border: solid 1px #cdcdcd;
    padding: 1px;
    margin: 10px 0;
  }
    #container #title h2{
      border-left: solid 4px #11849b;
      padding: 5px 5px 5px 10px;
      font-size: 14px;
    }

/*--------------------------
  タブレット
--------------------------*/
@media screen and (min-width: 641px) and (max-width: 800px){
  #container{
    width: 98%;
    margin: 0 1%;
    padding: 0;
  }
}
/*--------------------------
  スマホ
--------------------------*/
@media screen and (max-width: 640px){
  #container{
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

/*--------------------------------------------------------
                      フッター
---------------------------------------------------------*/
#footer{
  color : #ffffff;
  text-align : center;
  background-color : #010052;
  margin-top : 20px;
  padding : 20px 0;
}


/*--------------------------------------------------------
                    エラーメッセージ
---------------------------------------------------------*/
.err{
  color: #fff;
  background-color: #ff3939;
  padding: 5px 10px;
  margin-bottom: 5px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}


/*--------------------------------------------------------
                  全画面マスク
---------------------------------------------------------*/
/*ローディング用*/
#lock{
  z-index : 10000;
  position : fixed;
  top : 0;
  left : 0;
  width : 100%;
  height : 100%;
  background-color : #000;
  text-align : center;
  opacity : 0.5;
}
#lock div{
  position : fixed;
  top : 50%;
  left : 50%;
  color : #FFF;
  opacity : 1;
  line-height : 2em;
}