@charset "utf-8";

/* ==========================================================================
   Foundation
   ========================================================================== */

/* Reset
   ----------------------------------------------------------------- */

html, body { margin: 0; padding: 0; }
body { line-height: 1; }
img { vertical-align: bottom; }
ul, ol { margin: 0; padding: 0; list-style-type: none; }
dl, dt, dd { margin: 0; }
dd { padding-left:10px; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-size: 100%; }


/* Base
   ----------------------------------------------------------------- */

/**
 * Font
 */

html { font-size: 62.5%; }
body { font-size: 1.4rem; }
body {
    font-family:
      "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
      "メイリオ", "Meiryo",
      Osaka,
      "ＭＳ Ｐゴシック", "MS PGothic",
      sans-serif;
    color: #242424;
}
main { line-height: 1.4; }

/**
 * Link
 */
a {
  text-decoration: none;
  color: #044b95;
}

/**
 * Form
 */

/* text textarea */
input[type=text],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.3rem
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: #097ff6;
  position: relative;
  z-index: 99;
}
input[type=text]{
  width: 290px;
}
textarea {
  width: 100%;
}




/**
 * Placeholder
 */

/* Webkit */
input::-webkit-input-placeholder {
  color: #aaa;
}
input:focus::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}
/* Firefox 19 以降 */
input::-moz-placeholder {
  color: #888;
}
input:focus::-moz-placeholder {
  color: transparent;
  opacity: 1;
}
/* IE 10 以降 */
input:-ms-input-placeholder {
  color: #aaa;
}
input:focus:-ms-input-placeholder {
  color: transparent;
}

/**
 * Radio Checkbox
 */

input[type=radio], input[type=checkbox] {
  display: none;
}
input[type=radio]+label, input[type=checkbox]+label {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  margin: 0 0 8px 0;
  padding-left: 28px;
  border-radius: 8px;
  vertical-align: middle;
  cursor: pointer;
}
input[type=radio]+label:hover:after, input[type=checkbox]+label:hover:after {
border-color: #097ff6;
}
input[type=radio]+label:after, input[type=checkbox]+label:after {
  position: absolute;
  top: 10px;/* middle-->50% */
  left: 0;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #c5c5c5;
  content: '';
  background-color: #fff;
  z-index: 0;
}
input[type=radio]+label:after {
    border-radius: 99px;
  color: #097ff6;
}
input[type=checkbox]+label:after { border-radius: 3px; }
input[type=radio]+label:before {
  position: absolute;
  top: 13px;/* middle-->50% */
  left: 7px;
  display: block;
  margin-top: -5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  content: '';
  opacity: 0;
  z-index: 99;
}
input[type=radio]:checked + label:before {
  opacity: 1;
}
input[type=radio]:checked + label:after {
  background: #097ff6;
  border-color: #097ff6;
}
input[type=checkbox]+label:before {
  position: absolute;
  top: 12px;/* middle-->50% */
  left: 7px;
  display: block;
  margin-top: -7px;
  width: 4px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 99;
}
input[type=checkbox]:checked + label:before {
  opacity: 1;
}
input[type=checkbox]:checked + label:after {
  background-color: #044b95 ;
  border-color: #044b95;
}




/* ==========================================================================
   Layout
   ========================================================================== */

html {
  overflow: auto;
    min-height: 100%;
    background: url(../img/img_fsline.png) no-repeat bottom left;
    
}
body {
  overflow-x: hidden;
  padding: 0 20px;
  position: relative;
}
.l-container {
  margin-right: auto;
  margin-left: auto;
}
.l-container--inoutInstruct {
}
.l-container--clientRegist {
}
.l-main {
  width:80%;
  margin:0 auto 170px auto;
}

@media screen and (max-width:1400px) { .l-main { width:100%; } }

.l-header {
  margin: 0;
  padding: 17px 0 18px 0;
  width: 100%;
  background-color: #fff;
  margin-bottom: 90px;
}
.l-header__inner {
  margin-right: auto;
  margin-left: auto;
}



/* ==========================================================================
   Object
   ========================================================================== */

/* Component
   ----------------------------------------------------------------- */

/**
 * Title
 */

.c-mainTtl {
  color: #63ba21;
  font-size: 2.2rem;
  font-weight: normal;
  font-family:
  "游ゴシック", "Yu Gothic", YuGothic,
      "ヒラギノ角ゴ Pro W3",
      "Hiragino Kaku Gothic Pro",
      "メイリオ",
      "Meiryo",
      Osaka,
      "ＭＳ Ｐゴシック",
      "MS PGothic",
      sans-serif;
  margin-bottom: 16px;
  line-height: 1;
}
.c-mainTtl--inoutInstruct {
  background: url(../img/ic_inout_instruct.svg) left center no-repeat;
  background-size: 32px auto;
  padding-left: 43px;
}
.c-mainTtl--clientRegist {
  background: url(../img/ic_client_master.svg) left center no-repeat;
  background-size: 28px auto;
  padding-left: 40px;
  padding-top: 8px;
  margin-top: -8px;
}
h2.subTtl{
  font-size: 130%;
  color: #097ff6;
  margin:20px 0;
}
h3.subTtl{
    font-size: 115%;
  color: #097ff6;
}

/**
 * Button
 */

.c-btn {
  border-radius: 3px;
  background-color: #bbb;
  color: #fff;
  white-space: nowrap;
  min-width: 45px;
  text-align:center;
  padding: 6px 10px;
  display: inline-block;
  cursor: pointer;
  box-sizing: content-box;
}
.c-btn:hover {
  box-shadow: 2px 2px 2px -2px #888888;
  -moz-box-shadow: 2px 2px 2px -2px #888888;
  -webkit-box-shadow: 2px 2px 2px -2px #888888;
}
.c-btn:active {
  box-shadow: 0px 0px 3px 0px #888888 inset;
  -moz-box-shadow: 0px 0px 3px 0px #888888 inset;
  -webkit-box-shadow: 0px 0px 3px 0px #888888 inset;
}
.c-btn--caution {
  border: 1px solid #044b95;
  background: #044b95;
}
.c-btn--caution:hover {
  border: 1px solid #412a25;
  background: #044b95;
  background: -moz-linear-gradient(top, #4471c0 0%,#044b95  100%);
  background: -webkit-linear-gradient(top, #4471c0 0%,#044b95 100%);
  background: linear-gradient(to bottom, #4471c0 0%,#044b95 100%);
}
.c-btn--normal {
  border: 1px solid #6bb3ed;
  background: #6bb3ed;
}
.c-btn--normal:hover {
  border: 1px solid #5a98ca;
  background: #7dc3fb;
  background: -moz-linear-gradient(top,  #7dc3fb 0%, #6bb3ed 100%);
  background: -webkit-linear-gradient(top,  #7dc3fb 0%,#6bb3ed 100%);
  background: linear-gradient(to bottom,  #7dc3fb 0%,#6bb3ed 100%);
}
.c-btn--primary {
  border: 1px solid #044b95;
  background-color: #044b95;
}
.c-btn--primary:hover {
  border: 1px solid #412a25;
  background: #044b95;
  background: -moz-linear-gradient(top, #4471c0 0%,#044b95  100%);
  background: -webkit-linear-gradient(top, #4471c0 0%,#044b95 100%);
  background: linear-gradient(to bottom, #4471c0 0%,#044b95 100%);
}
.c-btn--sizeLogout {
  padding: 9px 11px;
  font-size: 1.2rem;
}
.c-btn--sizeDecision {
  padding: 12px 0;
  max-width: 270px;
  width:90%;
  font-size: 1.7rem;
}
.c-btn--sizeLogin {
  padding: 10px 0;
  width: 100%;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 25px;
}
.c-btn--fileUp {
  vertical-align: top;
  width: 156px;
  margin-bottom:10px;
}
.newfileUp {
  width: 245px;
    height: 25px;
}

.c-btn[disabled],
.c-btn[disabled]:hover,
.c-btn[disabled]:active{
	cursor: default !important;
	box-sizing: content-box;
	background: #bbbbbb !important;
	color: #fff;
	border:1px solid #aaaaaa !important;
	box-shadow:none !important;
	-moz-box-shadow:none !important;
	-webkit-box-shadow:none !important;
}

/**
 * Table
 */

.c-listTbl {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  line-height: 1.5;
  font-size: 1.2rem;
  table-layout:fixed;
}
.c-listTbl th {
  border-top: 1px solid #4471c0;
  border-bottom: 1px solid #4471c0;
  border-right: 1px solid #fff;
  padding: 12px 0;
  background-color: #4471c0;
  color: #fff;
  white-space: nowrap;
}
.c-listTbl th:first-child {
  border-left: 1px solid #83878e;
  border-radius: 5px 0 0 0;
}
.c-listTbl th:last-child {
  border-right: 1px solid #83878e;
  border-radius: 0 5px 0 0;
}
.c-listTbl td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 11px 10px;
    text-align: center;
}

.c-listTbl tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
.c-listTbl tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
.c-listTbl tr td:first-child {
  border-left: 1px solid #ddd;
}
.c-listTbl tr:nth-child(even){
  background: #f5f5f5;
}
.c-listTbl--inoutInstruct tr td:nth-child(1) {}
.c-listTbl--inoutInstruct tr td:nth-child(2) {}
.c-listTbl--inoutInstruct tr td:nth-child(3) { word-wrap:break-word;}
.c-listTbl--inoutInstruct tr td:nth-child(4) { white-space: nowrap; }
.c-listTbl--inoutInstruct tr td:nth-child(5) {}
.c-listTbl--inoutInstruct tr td:nth-child(6) { min-width: 110px; }
.c-listTbl--inoutInstruct tr td:nth-child(7) {}
.c-listTbl--inoutInstruct tr td:nth-child(8) { text-align: center; }
.c-listTbl--inoutInstruct tr td:nth-child(9) { text-align: right; }

/**
 * List
 */

.c-rowList li {
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ddd;
  padding: 12px 10px;
}
.c-rowList li:first-child {
  border-radius: 5px 5px 0 0;
}
.c-rowList li:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: 1px solid #ddd;
}
.c-rowList li:nth-child(even){
  background: #f5f5f5;
}
.c-rowList div {
  display: table;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}
.c-rowList dl {
  display: table-row;
}
.c-rowList dt,
.c-rowList dd {
  display: table-cell;
  vertical-align: middle;
}
.c-rowList dt {
  /*width: 185px;*/
  min-width: 100px;
  width: 20%;
}
input.upCell {
 height: 110px;
 margin-bottom:10px;
 margin-right:20px;
 width:530px;
}
.c-rowList li.btn-line div {
    margin-top: 20px;
    margin-bottom: 20px;
}

.c-rowList-cmpl li {
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: #ddd;
  padding: 12px 10px;
  background: #f5f5f5;
}
.c-rowList-cmpl li:first-child {
  border-radius: 5px 5px 0 0;
}
.c-rowList-cmpl li:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: 1px solid #ddd;
}
.c-rowList-cmpl div {
  display: table;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}
.c-rowList-cmpl dl {
  display: table-row;
  padding-top: 30px;
}
.c-rowList-cmpl dt,
.c-rowList-cmpl dd {
  display: table-cell;
  vertical-align: middle;
  padding-top: 30px;
}
.c-rowList-cmpl dt.last,
.c-rowList-cmpl dd.last{
  padding-bottom: 30px;
}
.c-rowList-cmpl dt {
  width: 195px;
}
.c-rowList-cmpl dd.pass {
 color: #ff0000;
}
.c-rowList-cmpl li.tit-line {
    background-color: #fff;
    font-size: 110%;
}


/**
 * Decision
 */

.c-decision {
 text-align: center;
  margin-top: 30px;
}
.c-chesb {
 text-align: center;
 display: inline;
}

/**
 * Paging
 */

.paging {
    display: inline-block;
    margin: 10px 0;
    font-size:0;
}
.paging li {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #ccc #ccc #ccc -moz-use-text-color;
    border-image: none;
    border-style: solid solid solid none;
    border-width: 1px 1px 1px medium;
    display: inline-block;
    list-style: outside none none;
    font-size:14px;
}
.paging li a {
    display: inline-block;
    font-weight: bold;
    padding: 12px 18px;
}
.paging li a.active {
    background-color: #6bb3ed;
    color: #242424;
}
.paging li a:hover {
    background-color: #044b95;
    color: #ffffff;
}
.paging li:first-child {
    border-bottom-left-radius: 5px;
    border-left: 1px solid #242424;
    border-top-left-radius: 5px;
}
.paging li:last-child,
.paging li.disabled:last-child a {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.paging li.disabled a {
	cursor:default;
	background-color:#dddddd !important;
    color: #ffffff !important;
}


/* Project
   ----------------------------------------------------------------- */

/**
 * Login
 */
.loginBox_area{
  margin-top: 55px;
}
.loginBox_area_back{
  max-width: 468px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
    padding-top: 10px;
    padding-bottom: 35px;
    background-color: #f5f5f3;
    border-radius: 5px;
}
.p-loginBox {
  margin-top: 20px;
  max-width:388px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding:0 20px;
  
}
.p-loginBox input[type=text],
.p-loginBox input[type=password]{
  width: 100%;
  padding: 16px 0 16px 20px;
  font-size: 1.5rem;
}
.p-loginBox input[type=text]{
  margin-bottom: -1px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-size: 20px auto;
}
.p-loginBox input[type=password]{
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-size: 20px auto;
}
.p-inpChk--login {
  margin-top: 20px;
  margin-bottom: 42px;
}
.p-loginBox h2{
    margin-bottom: 35px;
}


/**
 * Logo
 */
.p-logo-top {
  text-align: center;
  position: relative;
  left: -6px;
}
.p-logo {
  text-align: left;
}
.p-logo-top img,
.p-logo img {
  width: 171px;
  height: auto;
}
.p-logo--login {
  left: -6px;
  margin-bottom: 20px;
}
.p-logo--login img {
  width: 171px;
}

/**
 * Account
 */

.p-accessory {
  position: relative;
}
.p-account {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 99;
}
.p-user {
  background: url(../img/ic_user.png) left center no-repeat;
  background-size: 30px;
  padding: 10px 0 10px 40px;
  margin-top: 15px;
  line-height: 1.5em;
}

.pcpt20 {
    padding-top:20px;
}

/**
 * Faile-size
 */

.sizeMax-layou{
  text-align: left;
  letter-spacing: -0.5em;
  margin: 12px 0 0 0;
}
.sizeMax-layou li {
  display: inline-block;
  letter-spacing: normal;
  border: 0;
}
/*.sizeMax-layou div {
  display: table;
  margin: 0 auto;
  max-width: 422px;
  width: 100%;
}*/
.sizeMax-layou dl {
  display: table-row;
    height: 40px;
}
.sizeMax-layou dt,
.sizeMax-layou dd {
  display: table-cell;
  vertical-align: middle;
}
.sizeMax-layou dt {
  width: 165px;
    background-color: #4471c0;
    border-radius: 5px 0 0 5px; 
    color: #fff;
    text-align: center;
}

.sizeMax-layou dd form {
    margin-bottom: 0 !important;
}

.sizeMax-layou input[type=text],
.sizeMax-layou textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 10px;
  background: #fff;
  border: 2px solid #4471c0;
  border-radius: 0 5px 5px 0; 
  box-sizing: border-box;
  font-size: 1.3rem;
    text-align: right;
}

.sizeMax-layou input[type=text]{
  width: 95px;
}
.sizeMax-layou textarea {
  width: 100%;
}
.sizeMax-layou strong {
    margin-left: 10px;
    margin-right: 20px;
}

/* hiroshige add */

#toggle{
 display: none;
}

/* for upload page */
.passWidth {
    width:350px !important;
}

.textWidth {
    width: 150px !important;
}

.uptxt {
    margin:0;
}

/* for message area */

.message {
	width:100%;
	border:3px double #4471c0;
	margin-bottom:20px;
	padding:15px;
	font-size:1.5rem;
	border-radius:5px;
	box-sizing:border-box;
}


/* スマホ強制改行用 */
.forSP {
    display:none;
}

@media screen and (max-width: 1050px) {
    body {
      padding: 0 10px;
    }
    input.upCell {
     width:100% !important;
    }

    input[type=text]{
      width: 100%;
    }
    
    .forPC {
        display:none !important;
    }

    .forSP {
        display:inline-block;
    }

    #UpList,
        #UserList {
        display: block;
        margin-bottom:0;
        clear:both\9;
    }

      #UpList thead th,
            #UserList thead th{
        display:none;
      }

        #UpList tbody,
                #UserList tbody {
            display: block;
        }
            #UpList tbody tr,
              #UserList tbody tr {
                display: block;
                margin-bottom: 1.5em;
            }
            #UpList tbody th,
            #UpList tbody td,
              #UserList tbody th,
            #UserList tbody td {
                display: list-item;
                list-style-type: none;
                border: none;
                float:left\9;
                width:95%\9;
            }
            #UpList tbody td:first-child,
              #UserList tbody td:first-child {
                margin-bottom: 5px;
                color: #fff;
                background: #4471c0;
                padding:5px 0 5px 5px;
            }
            #UpList tbody td,
                        #UserList tbody td {
                padding: 0;
                text-align:left;
            }
            #UpList tbody td:nth-of-type(1):before { content: "[日時] "; }
            #UpList tbody td:nth-of-type(2):before { content: "[アップロードユーザー] "; }
            #UpList tbody td:nth-of-type(3):before { content: "[ファイル名] "; }
            #UpList tbody td:nth-of-type(4):before { content: "[パスワード] "; }
            #UpList tbody td:nth-of-type(5):before { content: "[ダウンロード日時] "; }
            #UpList tbody td:nth-of-type(6):before { content: "[ダウンロード回数] "; }
            /*#UpList tbody td:nth-of-type(7):before { content: "[ダウンロード元IPアドレス] "; }*/

            #UserList tbody td:nth-of-type(1):before { content: "[ID] "; }
            #UserList tbody td:nth-of-type(2):before { content: "[ユーザー名] "; }
            #UserList tbody td:nth-of-type(3):before { content: "[email] "; }
            #UserList tbody td:nth-of-type(4):before { content: "[権限] "; }
    
            #UpList tbody td:last-child,
                        #UserList tbody td:last-child {
                padding:10px;
                text-align:right;
            }
    
    #UpHistry{
        display: block;
        margin-bottom:0;
        clear:both\9;
    }

      #UpHistry thead th {
        display:none;
      }

            #UpHistry tbody{
                    display: block;
            }

            #UpHistry tbody tr{
                    display: block;
                    margin-bottom: 1.5em;
            }

            #UpHistry tbody th,
            #UpHistry tbody td {
                    display: list-item;
                    list-style-type: none;
                    border: none;
                    float:left\9;
                    width:95%\9;
            }

            #UpHistry tbody td:first-child{
                    margin-bottom: 5px;
                    color: #fff;
                    background: #4471c0;
                    padding:5px 0 5px 5px;
            }

            #UpHistry tbody td{
                    padding: 0;
                    text-align:left;
            }

            #UpHistry tbody td:nth-of-type(1):before { content: "[日時] "; }
            #UpHistry tbody td:nth-of-type(2):before { content: "[ファイル名] "; }
            #UpHistry tbody td:nth-of-type(3):before { content: "[パスワード] "; }
            #UpHistry tbody td:nth-of-type(4):before { content: "[有効期限] "; }
            #UpHistry tbody td:nth-of-type(5):before { content: "[ダウンロード] "; }
    
    .c-listTbl tr:last-child td:first-child {
        border-radius: 0;
    }
    .c-listTbl tr:last-child td:last-child {
        border-radius: 0;
    }

}
@media screen and (max-width: 1023px) {

    .l-header {
      margin-bottom: 33px;
    }

    .pcpt20 {
        padding-top:0;
    }
    
    .submit-button {
        margin-bottom: 10px;
    }

    .sizeMax-layou dt {
      width: 95px;
    }

    .sizeMax-layou input[type=text]{
      width: 4.5em;
    }

    .sizeMax-layou strong {
        margin: 10px;
    }
    
    .passWidth {
        width:100% !important;
    }

  #toggle{
    display: block;
    position: relative;
    width: 100px;
    background: #ffffff;
    border: 1px solid #044b95;
    margin-top:10px;
    box-sizing: border-box;
    float: right;
  }
  #toggle a{
    display: block;
    position: relative;
    padding: 10px 0 10px 10px;
    color: #044b95;
    text-align: center;
    text-decoration: none;
  }
  #toggle:before{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: #044b95;
  }
  #toggle a:before, #toggle a:after{
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 20px;
    height: 4px;
    background: #fff;
  }
  #toggle a:before{
    margin-top: -6px;
  }
  #toggle a:after{
    margin-top: 2px;
  }
  #toggle:after{
    clear: both;
  }
    .p-accessory {
      position: relative;
    }
    .p-account {
      display:none;
      background-color: #ffffee;
      border: 1px solid #044b95;
      padding: 10px;
      width: 170px;
      z-index: 99;
      position:absolute;
      top:45px;
      border-radius:5px 0 5px 5px;
    }
    
    .p-user {
      text-align:right;
      padding:0 0 0 30px;
    }

    .textAR a {
        margin-bottom: 5px;
        }
    
    /* for upload comprete */
    
    #UpComp dt, 
    #UpComp dd {
        display:block;
        width:100%;
        padding:0;
    }
    #UpComp dd {
        padding:0 0 10px 10px;
    }

}
/* hiroshige add end */


/* Utitlity
   ----------------------------------------------------------------- */

/**
 * Clearfix
 */

.u-clearfix:after {
    content: " ";
    display: block;
    clear: both;
}

/**
 * Width
 */

.u-wFull { width: 100% !important; }
.u-wHalf { width: 50% !important; }
.u-w72px { width: 72% !important; }
.u-w13pr { width: 13% !important; }
.u-w11pr { width: 11% !important; }
.u-w9pr { width: 9% !important; }
.u-w7pr { width: 7% !important; }
.u-w5pr { width: 5% !important; }
.u-9em { width:9em !important; }
.u-11em { width:11em !important; }
.u-14em { width:14em !important; }

/**
 * Height
 */

.u-hFull { height: 100% !important; }


/**
 * Text
 */
 
/*.textAR { text-align: right;}*/
.textAC {   text-align: center;}

/**
 * Font
 */
.font_l_01{ font-size: 115%;}

/**
 * Margin
 */

.mrb0 { margin-bottom: 0;}
.mrb20 {    margin-bottom: 20px;}
.ml00px { margin-left: 100px;}
.mr60 {margin-right:60px;}

#filelist {
    width: 80%;
}

#filelist th {
    border: solid 1px #bbbbbb;
    text-align: center;
}

#filename {
    width: 40%;
}

#filesize {
    width: 25%;
}

#filelist td {
    border: solid 1px #bbbbbb;
    padding: 5px;
}

.progressFrame {
    position: relative;
    width: 100%;
    height: 20px;
    border: solid 1px #bbbbbb;
}

.progressBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0% !important;
    height: 20px;
    background-color: #cccccc;
}

.progressRatio {
    position: absolute;
    top: 2px;
    left: 0;
    text-align: center;
}



tr.grey td,
tr.grey td a {
    color: #2A2927 !important;
}

td .c-btn--caution {
    border: 1px solid red;
    background: #fe0a0a;
}

#modal-content {
    width: 50% ;
    margin: 0 ;
    padding: 0;
    background: #fff ;
    position: fixed ;
    display: none ;
    z-index: 2 ;
}

.modal-body {
    width: 98%;
    margin: 10px auto;
    background: #fff;
    z-index: 2;
}

#extendRequest {
    width: 100%
}

#extendRequest th {
    border: solid 1px #e1e1e1;
    padding: 5px;
}

#extendRequest td {
    border: solid 1px #e1e1e1;
    padding: 5px;
}

#modal-overlay {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
}

span.hidurl {
	font-size:0;
	width:0;
	height:0;
	overflow:hidden;
}