@charset "utf-8";

/* ==========================================================================
   なびシリーズ管理画面CSS                                       Netfloyd Inc.
   ========================================================================== */

  body {
  padding-top: 70px;
}

/* bootstrap overwrite */
.container {
    width: 100%;
}
@media (min-width: 992px) {
    .container {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .container {
        width: 100%;
    }
}

.table>tbody>tr:last-of-type>td,
.table>tbody>tr:last-of-type>th,
.table>tfoot>tr:last-of-type>td,
.table>tfoot>tr:last-of-type>th,
.table>thead>tr:last-of-type>td,
.table>thead>tr:last-of-type>th {
    border-bottom: 1px solid #ddd;
}

body {
  padding-top: 70px;
}
.maxwidth100 {
  max-width: 100px;
  display: inline;
}

.maxwidth200 {
  max-width: 200px;
  display: inline;
}

#suggest {
  position: absolute;
  background-color: #FFFFFF;
  border: 1px solid #CCCCFF;
  width: 300px;
  height: 200px;
  overflow: auto;
    z-index: 1;
}

#suggest div {
  padding: 1px;
  display: block;
  width: 400px;
  overflow: hidden;
  white-space: nowrap;
}

#suggest div.select {
  color: #FFFFFF;
  background-color: #3366FF;
}

#suggest div.over {
  background-color: #99CCFF;
}

#suggest strong {
  font-weight: bold;
}

.suggestlist label {
  display: block;
}


/* モーダル */
#kotak-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 90%;
    height: 90%;
    background-color: #fff;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
    z-index: 1050;
    display: none;
}
#kotak-dialog *:focus {
    outline: none;
}
#kotak-dialog h3.title {
    background-color: #3B5998;
    padding: 10px 15px;
    color: #fff;
    font: normal 16px Arial, Sans-Serif;
    margin: 0px 0px 0px 0px;
    position: relative;
}
#kotak-dialog h3.title a {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
#kotak-dialog .isi-dialog {
    margin: 15px;
    font: normal 12px Arial, Sans-Serif;
    height: 90%;
}
#kotak-dialog .button-wrapper {
    padding: 10px 15px 0px;
    border-top: 1px solid #ddd;
    margin-top: 15px;
}
#kotak-dialog .button-wrapper button {
    background-color: #FF0C39;
    border: none;
    font: bold 12px Arial, Sans-Serif;
    color: #fff;
    padding: 5px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}
#kotak-dialog .button-wrapper button:hover {
    background-color: #aaa;
}
#dialog-overlay {
    position: fixed !important;
    position: absolute;
    z-index: 999;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background-color: #000;
    display: none;
}
#iframeContainer {
    height: 100%;
}
#iframeContainer iframe {
    width: 100%;
    height: 100%;
    border: none;
    overflow: auto;
}

/* ツールチップ */
/*
https://qiita.com/mrd-takahashi/items/4f27927ced6275b16969
http://mizuame.sakura.ne.jp/blog_sample/js/jquery.tgClickToolTipV2/
http://black-flag.net/jquery/20100414-992.html
*/
.toolTip {
  box-shadow: 0px 0px 6px 3px #eeeeee;
  -moz-box-shadow: 0px 0px 6px 3px #eeeeee;
  -webkit-box-shadow: 0px 0px 6px 3px #eeeeee;
  border: 1px solid #cccccc;
  margin: 0;
  padding: 0;
  width: 150px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  min-height: 30px;
  top: 100px;
  left: 20px;
  position: absolute;
  background: #fff;
  z-index: 100;
}
.toolTip ul {
    list-style: none;
    padding: 0;
    margin: 5px 0;
}
.toolTip ul li {
    padding: 0;
    margin: 0;
}
.toolTip ul a {
    display: block;
    padding: 1px 10px;
    min-height: 22px;
}
.toolTip ul a:hover {
    background: #337ab7;
    color: #fff;
}
.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
}


.memocontent {
    overflow: hidden;
    white-space: nowrap;
    max-width: 150px;
    display: block;
    text-overflow: ellipsis;
}