td.nowrap {
    white-space: nowrap;
}

td.overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 20%;
    max-width: 0;
}

.js-copy ~ .success-msg {
    display: none;
    position: fixed;
    width: 300px;
    height: 40px;
    line-height: 40px;
    background-color: #29aba4;
    color: #fff;
    top: 100px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 5px;
}

.hover:hover {
    cursor: pointer;
    background-color: #d9fff8;
}

#login_card {
    margin-top: 6rem !important;
}

/* これよりtoggleスイッチ用 */
.toggle {
    position: relative;
    width: 48px;
    height: 16px;
    margin: 5px 15px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
}
  .toggle input[type=checkbox] {
    display: none;
  }
  .toggle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #696969;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .toggle:after {
    content: "";
    position: absolute;
    top: 0.5px;
    left: 0.5px;
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  .toggle.checked:before {
    background: #35c759;
  }
  .toggle.checked:after {
    left: 33px;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
  }
  /* ここまでtoggleスイッチ用 */