/* 同意ボタン
**************************************/
#acceptArea {
  position: fixed;
  width: 680px;
  height: 100px;
  bottom: 0px;
  left: 50%;
  margin-left:-225px;
  background-color:rgba(50,50,50,0.8);
  z-index:9;
  text-align: center;
  padding-top: 10px;
  border-radius: 6px 6px 0px 0px;
  border: 1px solid black;
  box-shadow: 2px 4px 6px rgba(0,0,0,0.4);
  display:none;
}
  #acceptArea div{
    font-size: 16pt;
    color:snow;
    margin-bottom:10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,1.0);
  }

    div#acceptArea button {
      border-radius: 3px;
      background-color: rgba(240,240,240,1.0);
      border-top: 1px solid rgb(250,250,250);
      border-bottom: 1px solid rgb(180,180,180);
      border-left: 1px solid rgb(221,221,221);
      border-right: 1px solid rgb(221,221,221);
      box-shadow:
        0px 4px 4px rgba(255,255,255,0.1) inset,
        0px -4px 4px rgba(20,20,20,0.1) inset,
        1px 1px 3px rgba(0,0,0,0.8)
      ;
      color: black;
      width: 210px;
      height: 25px;
      margin: 5px auto;
      cursor: pointer;
    }
    div#acceptArea button:hover {
      background-color: rgba(181,230,29,1.0);
      border-radius: 3px;
      border: inset 1px gray;
    }

/* テーブル（登録フォーム）
**************************************/
table.registForm {
  margin: 2em auto 2em auto;
  width: 1000px;
  border: 0px solid transparent;
}
table.registForm th {
  padding: 8px 3px 8px 10px;
  font-size: 13pt;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  line-height: 150%;
  vertical-align: top;
  width: calc(300px - 15px);
  background-color: rgba(61,103,114,1.0);
  border-radius: 3px;
  color: rgb(255,255,255);
}
table.registForm td {
  padding: 8px 3px 8px 10px;
  width: calc(100% - 15px);
  font-size: 93%;
  line-height: 150%;
  border: 1px solid rgba(61,103,114,1.0);
  border-radius: 3px;
}
  table.registForm td select {
    width: 65%;
    padding: 5px;
    margin-left: 1em;
  }

table.registForm td:first-child {
  border: 0px solid rgba(61,103,114,1.0);
}

table.registForm td:first-child input {
  position: relative;
  left: 10%;
  width: 80%;
  height: 30px;
  font-size: 14pt;
  font-weight: bold;
  border-radius: 3px;
  border: 2px solid green;
  color: green;
  background-color: transparent;
  margin: 2px auto 5px auto;
  transition: 0.2s;
  cursor: pointer;
}
  table.registForm td:first-child input:hover {
    color: rgb(255,255,255);
    background-color: green;
  }
  table.registForm td:first-child input:last-child {
    border: 2px solid gray;
    color: gray;
  }
  table.registForm td:first-child input:last-child:hover {
    color: rgb(255,255,255);
    background-color: gray;
  }

.textField {
  padding:3px 4px;
  font-size:108%;
  border:1px solid #AAA;
  border-radius:4px;
  width: 92%;
  margin: 0px 0px 0px 1em;
}

  ul#ctglist {
    margin: 10px auto;
    padding: 0px;
    list-style-type:none;
    width: 90%;
  }
    ul#ctglist li{ 
      float: left;
      width: calc( 100% / 3 );
      margin-bottom: 10px;
    }
    ul#ctglist li:last-child{
      width: 90%;
    } 
    ul#ctglist li:last-child input[type='text']{
      width: 75%;
    }

  ul#intlist {
    margin: 10px auto;
    padding: 0px;
    list-style-type:none;
    width: 100%;
  }
    ul#intlist li{ 
      float: left;
      margin: 0px 1%;
      width: calc( 94% / 3 - 6px);
      margin-bottom: 10px;
      border: 1px solid transparent;
    }
      ul#intlist li:last-child{
        width: calc( 80% - 6px);
      } 
      ul#intlist li:last-child input[type='text']{
        width: 75%;
      }


/* テーブル（登録フォーム チェック用）
**************************************/
table.registCheck {
  margin: 0 auto 1em auto;
  width: 800px;
  border-collapse: separate;
  border-spacing: 4px 20px;
}
  table.registCheck th {
    padding: 8px 3px 8px 15px;
    width: 220px;
    font-size: 93%;
    text-align: left;
    white-space: nowrap;
    line-height: 150%;
    background-color : navy;
    border-radius: 5px 0px 0px 5px;
    margin : 0px 0px 0px 10px;
    color:white;
    border: 1px solid midnightblue;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  }
  table.registCheck td {
    width: 420px;
    font-size: 93%;
    line-height: 150%;
    border-top: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    border-right: 1px solid #DDD;
    padding: 8px 3px 8px 15px;
    background-color:white;
    border: 1px solid midnightblue;
    border-radius:  0px 5px 5px 0px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    color: black;
  }
  table.registCheck td.lbl {
    font-weight : bold;
    border-right : 1px dotted silver;
  }

  table.registCheck td.err {
    color:red;
    font-weight:bold;
  }

table.registCheck td:first-child {
  border: 0px solid rgba(61,103,114,1.0);
}

table.registCheck td:first-child input {
  position: relative;
  left: 10%;
  width: 80%;
  height: 30px;
  font-size: 14pt;
  font-weight: bold;
  border-radius: 3px;
  border: 2px solid red;
  color: red;
  background-color: transparent;
  margin: 2px auto 5px auto;
  transition: 0.2s;
  cursor: pointer;
}
  table.registCheck td:first-child input:hover {
    color: rgb(255,255,255);
    background-color: red;
  }
  table.registCheck td:first-child input:last-child {
    border: 2px solid gray;
    color: gray;
  }
  table.registCheck td:first-child input:last-child:hover {
    color: rgb(255,255,255);
    background-color: gray;
  }


div.explain2 {
  padding: 50px 0;
  text-align: center;
  line-height: 2.0em;
}

input#cmpchk {
  position: relative;
  width: 60%;
  height: 50px;
  font-size: 14pt;
  font-weight: bold;
  border-radius: 3px;
  border: 2px solid green;
  color: green;
  background-color: rgba(0,255,0,0.1);
  margin: 1em auto 0 auto;
  transition: 0.2s;
  cursor: pointer
}
  input#cmpchk:hover {
    color: rgb(255,255,255);
    background-color: green;
  }

button.add_co-author {
  width: 150px;
  margin: 0px calc(50% - 75px);
}
div.co-author-box {
  margin-bottom: 2em;
}
div#add_co-author1 {  display: none; }
div#add_co-author2 {  display: none; }
div#add_co-author3 {  display: none; }
div#add_co-author4 {  display: none; }
div#add_co-author5 {  display: none; }
div#add_co-author6 {  display: none; }
div#add_co-author7 {  display: none; }
div#add_co-author8 {  display: none; }
div#add_co-author9 {  display: none; }
div#add_co-author10 {  display: none; }

textarea {
  width: 93%;
  height: 400px;
  margin: 0px 1em 0px 1em;
  resize: vertical;
}

td.error {
  background-color: rgba(255,0,0,0.1);
  color: red;
  font-weight: bold;
}
