@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
.menuBlock ul{
    list-style: none;
    text-align: left;
    font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 20px;
    padding-left: 0;
        
}
.menuBlock ul li{
    display: inline-block;
}
.folderBlock .tabBox {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-color: #000;
    position: relative;
}
.folderBlock .tabBox .item{
    position: relative;
    display:inline-block;
    background-color: #FEECAA;
    border-style: solid;
    border-width: 1px;
    border-color: #000;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 10px 20px;
    top: 1px;
}
.folderBlock .tabBox .currentItem{
    border-bottom-color: #FEECAA;
}
.folderBlock .tabBox .item p{
    margin: 0;
}
.folderBlock .tabBox .item > div{
    display:inline-block;
    vertical-align: middle;
}
.folderBlock .itemBox{
    background-color: #FEECAA;
    border-left-style: solid;
    border-left-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-color: #000;
    padding: 20px;
}
.folderBlock .itemList {
	width: 100%;
	margin: 20px 0;
}
.folderBlock .itemList thead tr{
	background-color: #FCD758;
}
.folderBlock .itemList th{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 15px;
    text-align: left;
    padding: 0.25em 1em;
    white-space: nowrap;
}
.folderBlock .itemList td{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 15px;
    padding: 0.25em 1em;
    white-space: nowrap;
}
.folderBlock .itemList .noCol{
    text-align: right;
    width: 2.5em;
}
.folderBlock .itemList .sizeCol{
    text-align: right;
    width: 8em;
}
.folderBlock .itemList .typeCol{
    width: 4em;
}
.folderBlock .itemList .dateTimeCol{
    width: 9em;
}
.folderBlock .itemList .opCol{
    width: 3em;
}
.btn-success {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif" ;
	display:inline-block;
	color:#FFF;
	font-size:18px;
	text-decoration:none;
	padding: 15px 20px;
    background-color: #B5B5B5;
    border-radius: 5px;
}
#progressbar{
    position: relative
}
#progress_label {
    position: absolute;
    text-align: center;
    left:0;
    top:0;
    width: 100%;
    padding-top: 0.5em;
}
#file_list_block{
    overflow: auto;
}
#file_list_block tbody tr:hover{
    background-color: #FDE182;
}
#file_list_block tbody .selectedItem{
    background-color: #FCD758;
}
.sortMark{
    display: none !important;
}
.activeSortMark{
    display: inline-block !important;
}
.sortLabel{
    cursor: pointer;
}
.sortLabel:hover{
    background-color: #FDE182 ;
}
#drop_area {
	width: calc(100% - 2em - 4px);
	height: 2em;
	background-color: #fff;
	padding: 1em;
	text-align: center;
	border-radius: 5px;
	border-style: dotted;
    border-width: 2px;
}
#drop_area.hover {
    background-color: #A6FF4D;
}
.toolButton{
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	display: inline-block;
	color: #FFF;
	font-size: 18px;
	text-decoration: none;
	padding: 15px 20px;
	background-color: #B5B5B5;
	border-radius: 5px;
    vertical-align: top;
}
.toolButton:hover{
	color: #FFF;
	opacity: 0.7;
}
.toolButton:visited{
	color: #FFF;
	text-decoration: none;
}
.no-close .ui-dialog-titlebar-close{
  display: none;
}
.ui-widget {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif" !important;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
}