.table1 {
    border-collapse: collapse;
    border: 2px solid gray;
    width: 700px;
  }
  .table1 th, .table1 td {
    text-align: center; 
    border: 2px solid gray;
    width: 700px;
  }
  .table1 th {
    background-color: #ccf;
    width: 600px;
  }

  .styled {
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 10px;
    background-color: rgba(220, 0, 0, 1);
    background-image: linear-gradient(to top left,
                                      rgba(0, 0, 0, .2),
                                      rgba(0, 0, 0, .2) 30%,
                                      rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, .6);
}

.btn-flat-simple {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.25em 0.5em;
    text-decoration: none;
    color: #00BCD4;
    background: #ECECEC;
    transition: .4s;
  }
  
  .btn-flat-simple:hover {
    background: #00bcd4;
    color: white;
  }

  .left{text-align: left;}
  .right{text-align: right;}
  .center{text-align: center;}
  
  .mt5{margin-top: 5px;}
  .mt10{margin-top: 10px;}
  .mt15{margin-top: 15px;}
  .mt20{margin-top: 20px;}
  .mt25{margin-top: 25px;}
  .mt30{margin-top: 30px;}
  .mt50{margin-top: 50px;}
  
  .mb0{margin-bottom: 0px;}
  .mb5{margin-bottom: 5px;}
  .mb10{margin-bottom: 10px;}
  .mb15{margin-bottom: 15px;}
  .mb20{margin-bottom: 20px;}
  .mb25{margin-bottom: 25px;}
  .mb30{margin-bottom: 30px;}
  .mb50{margin-bottom: 50px;}
  
  .ml5{margin-left: 5px;}
  .ml10{margin-left: 10px;}
  .ml15{margin-left: 15px;}
  .ml20{margin-left: 20px;}
  .ml25{margin-left: 25px;}
  .ml30{margin-left: 30px;}
  .ml50{margin-left: 50px;}
  
  .mr5{margin-right: 5px;}
  .mr10{margin-right: 10px;}
  .mr15{margin-right: 15px;}
  .mr20{margin-right: 20px;}
  .mr25{margin-right: 25px;}
  .mr30{margin-right: 30px;}
  .mr50{margin-right: 50px;}
  
  .bold{font-weight: bold;}
  .fs18{font-size:18px;}
  .fs20{font-size:20px;}
  .fs25{font-size:25px;}
  .fs30{font-size:30px;}
  .menu-color{color: rgba(0,0,0,.5);}


body {
    position:relative;
  }
   
  /* モーダルウィンドウのスタイル */
  .modal {
    position:absolute;
    width:100%;
    height:100vh;
    top:0;
    left:0;
    display:none;
  }
   
  /* オーバーレイのスタイル */
  .overLay {
    position:absolute;
    top:0;
    left:0;
    background:rgba(200,200,200,0.9);
    width:100%;
    height:100vh;
    z-index:10;
  }
   
  /* モーダルウィンドウの中身のスタイル */
  .modal .inner {
    position:absolute;
    z-index:11;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
  }

  h2 {
    color: #364e96;/*文字色*/
    padding: 0.5em 0;/*上下の余白*/
    border-top: solid 3px #364e96;/*上線*/
    border-bottom: solid 3px #364e96;/*下線*/
  }

  h5 {
    padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
    color: #494949;/*文字色*/
    background: #f4f4f4;/*背景色*/
    border-left: solid 5px #7db4e6;/*左線*/
    border-bottom: solid 3px #d7d7d7;/*下線*/
  }
  
  .table-hover tbody tr:hover td, .table-hover tbody tr:hover th {
    background-color: yellow;
  }