/*@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootflat/2.0.4/css/bootflat.min.css');*/

html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: #f4f7f8;
}

.table01 th,
.table01 td {
  word-wrap:break-word;
}

.blur {
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.displaytext {
  margin-top:3px;padding:5px 0;
  border-top:1px dashed #ccc;
  margin-bottom: 0;
}

.navbar {
  margin: 2rem 0 2.5rem 0;
}

.my-navbar {
  align-items: center;
  background: #333;
  display: flex;
  height: 6rem;
  justify-content: space-between;
  padding: 0 2%;
  margin-bottom: 3rem;
}
.mynavbar {
  background-color: #333;
}
.mynavbar * {
  color: #999 !important;
}

.my-navbar-brand {
  font-size: 18px;
}

.my-navbar-brand,
.my-navbar-item {
  color: #8c8c8c;
}

.my-navbar-brand:hover,
a.my-navbar-item:hover {
  color: #666;
  background-color: #333;
}

.table td:nth-child(2),
.table td:nth-child(3),
.table td:nth-child(4) {
  white-space: nowrap;
  width: 1px;
}

.form-control[disabled],
.form-control[readonly] {
  background-color: #fff;
}





/* これが無いとモーダルウィンドウ表示の際に余白が出る */
*{
	margin: 0;
	padding: 0;
  }
  
  /* モーダル全体(背景＋本体) */
  .modal{
	display: none;
	position: fixed;
	top: 0;
	height: 100vh;
	width: 100%;
  }
  
  /* モーダル背景 */
  .modal-bg{
	position: absolute;
	height: 100vh;
	width: 100%;
	background: rgba(0, 0, 0, 0.8);
  }
  
  /* モーダル本体 */
  .modal-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	overflow: scroll; /* はみ出た部分はスクロールさせる */
	height: 80%;/* これが無いと「overflow:scroll」が利かない */
	width: 80%;/* これが無いと「overflow:scroll」が利かない */
	background: white;
	padding: 10px 25px;
  }

  @media screen and (min-width:600px) {
    .modal-content{
      height: 60%;/* これが無いと「overflow:scroll」が利かない */
      width: 60%;/* これが無いと「overflow:scroll」が利かない */
      padding: 30px;
      }
  }
  
  /* モーダルウィンドウ表示中に記事本体を固定 */
  body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
  }
.modal-content .heading01 {
  font-size: 1.25em;
  font-weight: bold;
  padding-bottom: 0.5em;
  border-bottom: 2px solid rgba(0,0,0,.1);
}
.modal-content p {
  font-size: 1em;
  font-weight: normal;
}