div.main_container {
  min-height: 1000px;
}

div#searcharea {
  background-color: rgba(190,168,148,1.0);
  padding: 5px 0px;
  border-radius: 3px;
}

div#searcharea select {
  font-family:"Century Gothic","ＭＳ Ｐゴシック", "Arial","Verdana","sans-serif";
  font-size: 12pt;
  font-weight: bold;
  width: 80px;
  text-align: center;
  border: 1px solid rgb(80, 80, 80);
}
  div#searcharea select:hover {
    border: 1px solid rgb(255, 135, 0);
  }

  div#searcharea button {
    height: 25px;
    width: 80px;
    border-radius: 5px;
    border: 1px solid rgb(80, 80, 80);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    cursor: pointer;
  }
    div#searcharea button:hover {
      background-color: rgba(255,135,0);
    }

  div#searcharea ul {
    list-style-type: none;
    padding: 0px;
    width: 440px;
    margin: 5px auto;
  }
    div#searcharea ul li {
      width: 200px;
      float: left;
      margin: 0px 10px;
      background-color: rgb(245,243,242);
      border-radius: 3px;
    }
    div#searcharea ul li.on {
      background-color: rgba(172,219,194);
    }

  div#searcharea label {
    border: 1px solid rgb(80, 80, 80);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    cursor: pointer;
    display: block;
    width: 200px;
    text-align: left;
  }
    div#searcharea label div {
      width: 200px;
      display: inline;
    }

  table {
    margin:0px auto;
    width: 100%;
  }

  table.datalist th{
    width : calc( 100% / 7 );
    height: 20px;
    border: 1px solid gray;
    border-radius: 3px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    background-color: rgb(255,255,255);
    padding: 0px;

    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    font-weight:bold;
    font-size: 11pt;
  }
  table.datalist th:first-child{
    background-color: pink;
  }
  table.datalist th:nth-child(7){
    background-color: lavender;
  }

  table.datalist td{
    width : calc( 100% / 7 );
    height: 52px;
    border: 1px solid gray;
    border-radius: 3px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    background-color: rgb(255,255,255);
    padding: 5px;

    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    font-weight: normal;
    font-size: 11pt;
  }

  table.datalist td:first-child{
    background-color: pink;
  }
  table.datalist td:nth-child(7){
    background-color: lavender;
  }

  table.datalist td:nth-child(n):hover{
    background-color:honeydew;
    cursor: pointer;
  }
  table.datalist td img{
    width: calc( 100% - 2px);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  }
