/*===============================================
●style.css 画面の横幅が641px以上
===============================================*/
@media screen and (min-width: 641px){
	body{
        text-align:center;
        color:#000000;
        background:#ffffff;
    	font-family: Verdana,Arial,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
    	font-size: 12px;
    	font-weight: normal;
    	letter-spacing: 0;
    	margin: 0;
    	padding-bottom: 100px;
    	padding-top: 110px;
	}

	a{color:#000000;text-decoration:none;}
	a:link{color:#1111cc;text-decoration:none;}
	a:visited{color:#800080;text-decoration:underline;}
	a:active{color:#ff0000;text-decoration:underline;}
	a:hover{color:#DF3447;text-decoration:underline;}

    #header {
    	background-color: #ffffff;
    	color: #000000;
    	height: 110px;
    	position: fixed;
    	top: 0;
    	text-align: center;
    	width: 100%;
    }

    #header h1 {
    	font-size: 24px;
    	overflow: hidden;                 /* 文字が溢れたら「…」表示 */
    	-o-text-overflow: ellipsis;       /* 文字が溢れたら「…」表示 */
    	-webkit-text-overflow: ellipsis;  /* 文字が溢れたら「…」表示 */
    	text-overflow: ellipsis;          /* 文字が溢れたら「…」表示 */
    	white-space: nowrap;              /* 文字が溢れたら「…」表示 */
    }

    #footer {
    	background-color: #ffffff;
    	bottom: 0;
    	color: #000000;
    	height: 50px;
    	position: fixed;
    	text-align: center;
    	width: 100%;
    }

    #scrollframe {
        width:900px;
    	margin: 0 auto;
    	text-align: center;
    }

    #container{
        width:100%;
    }

    #smart_wrapper{
        display:none;
    }

    #upd-title {
    	background-color:#006699;
    	color:#ffffff;
    	height:20px;
        margin: 20px auto 0;
        width:602px;
    	text-align:center;
        font-weight:700; 
    }

    #page-title {
    	background-color:#006699;
    	color:#ffffff;
    	height:20px;
        margin: 20px auto 0;
        width:720px;
    	text-align:center;
        font-weight:700; 
    }

    #list-table {
    	background-color: #ffffff;
    	color: #000000;
        margin: 0 auto;
        width:720px;
        border: 1px solid #CCC;
    }

    #list-table tr {
    	background-color: #ffffff;
    	color: #000000;
    	height:30px;
    	text-align:left;
    }

～以下、画面の横幅が768pxまでの場合のスタイル記入～
    /* ▽メニューバーの装飾 */
    #nav-wrap {
        background-color: #ffffff; /* バーの背景色 */
    }
    /* menu icon */
    #menu-icon {
        display: none; /* hide menu icon initially */
    }

    #nav,
    #nav ul {
        list-style: none outside none;
        float: left;
        background-color: #ffffff; /* バーの背景色 */
        margin:  0 0 0 0;          /* バー外側の余白 */
        padding: 0;                /* バー内側の余白 */
        height: 40px;              /* バーの高さ */
        position: relative;
        left: 50%;
    }

    #nav li {
        width: 126px;             /* 項目の横幅 */
        height: 40px;             /* 項目の高さ(バーの高さと同じに) */
        border: 1px solid #CCC;
        float: left;
        list-style: none;
        position: relative;
        left: -50%;
    }
     
    /* nav link */
    #nav li a {
        line-height: 40px;             /* 項目の高さ(バーの高さと同じに) */
        text-align: center;       /* 文字列の配置(中央寄せ) */
        text-decoration: none;    /* 項目の装飾(下線を消す) */
        display: block;
        color: #000000;
        font-weight: bold;
        background: #ffffff;
    }
    #nav li a:hover {
        background-color: #F0F0F0;
        color: #DF3447;
    }
     
    /* nav dropdown */
    #nav ul {
        background: #ffffff;
        padding: 2px;
        position: absolute;
        border: solid 1px #ccc;
        display: none; /* hide dropdown */
        width: 200px;
    }
    #nav ul li {
        float: none;
        margin: 0;
        padding: 0;
    }
    #nav li:hover > ul {
        display: block; /* show dropdown on hover */
    }

    /* upd iframe */
    .ifrm-upd {
        width: 600px;
        height: 235px;
        border: 1px #cccccc solid;
        overflow:auto;
        -webkit-overflow-scrolling:auto;
        display: inline-block;
        margin: 0;
    }
    .ifrm {
        width:100%;
        height:100%;
        padding: 0;
        margin: 0;
        border:none;
        display:block;
    }

}
