*{
    margin: 0px;
    padding: 0px;
}
body,html {
    height: 100%;
    text-align:center;
    -webkit-text-size-adjust:100%; /* iPhone用 */
    font-family:"メイリオ","Meiryo","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Arial, Helvetica, sans-serif;
}
#wrapper{
    margin: 10px auto;
    width:100%;
    max-width:670px;
    border:10px solid #f2f2f2;
    position: relative;
    /*height: 95%;
    min-height: 95%;*/
    text-align:left;
    font-size:80%;
}
body > #wrapper {
    height: auto;
}

/*--------------------------------------------------
ヘッダ
--------------------------------------------------*/
div#header{
    margin-top:10px;
    margin-bottom:10px;
    border-bottom:3px solid #00ACEB;
    /*background:#E6E6E6;*/
}
#header img {
    width: 160px;
}

/*--------------------------------------------------
clearfix
--------------------------------------------------*/
.clearfix:after {
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}

/*--------------------------------------------------
ページ本体
--------------------------------------------------*/
div#pagebody{
    margin:0px 10px;
    width:100%;
    max-width:650px;
    text-align: left;
    clear:both;
    background-color: #ffffff;
    padding-bottom:50px;
}

/*--------------------------------------------------
フッタ
--------------------------------------------------*/
div#footer{
    clear:both;
    bottom: 0px;
    height:20px;
    width:100%;
    max-width:670px;
    margin:0 auto;
    font-size:75%;
    color:#666666;
}
div#footer a{
    color:#666666;
    text-decoration:none;
}
div#footer a:hover{
    color:#666666;
    text-decoration:underline;
}

/*--------------------------------------------------
ロゴスタイル
--------------------------------------------------*/
.fontBig{
    font-size:250%;
    line-height:130%;
    text-align:right;
    color:#999;
}
.fontSmall{
    font-size:80%;
    line-height:100%;
    text-align:right;
    color:#999;
}

/*--------------------------------------------------
リンクスタイル
--------------------------------------------------*/
#alink a{ /*GDW*/
    color:#ffffff;/*ナビの文字*/
    background-color:#195FAC;
    display:block;
    text-decoration:none;
    border:3px solid #195FAC;
    font-size: 22px;
    font-weight:bold;
    padding: 8px;
    text-align:center;
    border-radius:10px;
    box-shadow: 0 0 4px grey;
    transition: 0.5s ;
}
#alink a:hover{
    opacity: 0.7;
    -ms-filter: alpha(opacity=70);
    text-decoration: none;
}
#blink a{ /*ICW*/
    color:#ffffff;/*ナビの文字*/
    background-color:#00ACEB;
    display:block;
    text-decoration:none;
    border:3px solid #00ACEB;
    font-size: 22px;
    font-weight:bold;
    padding: 8px;
    text-align:center;
    border-radius:10px;
    box-shadow: 0 0 4px grey;
    transition: 0.5s ;
}
#blink a:hover{
    opacity: 0.7;
    -ms-filter: alpha(opacity=70);
    text-decoration: none;
}

/*--------------------------------------------------
スマホ、タブレット
--------------------------------------------------*/
@media screen and (max-width:650px){
	#wrapper{
		width:95%;
	}
	div#pagebody{
		width:95%;
	}
	#alink a,#blink a{ 
		font-size: 15px;
		padding: 8px 4px;
	}
}