﻿@charset "utf-8";

/* プラン
---------------------------------------------------------------------------- */
/*モーダルウィンドウ*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
}

/* 背景黒色部分 */
.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
}
/* コンテンツ表示部分 */
.modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  padding: 20px;
  background: #e5e5eb;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; /* 慣性スクロール */
  z-index: 999;
}

.box-btn {
  text-align: right;
}

.btn-modal {
  border: none;
  appearance: none;
  padding: 0;
  margin-right: 0.5em;
  background: transparent; /* ボタン背景を透明に */
  cursor: pointer;
  font-size: 3em;
}

.btn-more {
  border: 1px solid #000;
  appearance: none;
  padding: 0.3em 0.5em;
  background: transparent; /* ボタン背景を透明に */
  cursor: pointer;
}


/*テーブル*/
.modal-table{
    width: 100% !important;
    min-width: 800px !important;/*スクロール*/
    white-space: nowrap;/*スクロール*/
    border-left: 1px solid #CCCCCC;
}
/*
.modal-table tr:nth-child(even) {
    background: #f0f0f6;
}
*/
.modal-table tr:hover{
    cursor: pointer;
    background: #dadaf7;
}
.modal-table th{
	padding: 2px;
    background: #EEEEEE;
    text-align: center;
	border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}
/*
.modal-table tr:nth-child(even) {
    background: #f0f0f6;
}
*/
.modal-table tr:hover{
    cursor: pointer;
    background: #dadaf7;
}
.modal-table td{
	padding: 2px;
    text-align: center;
	border-top: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
}