html {
  height: 100%;
  width: 100%;
}
body {
  background-color: black;
  height: 100%;
  width: 100%;
  margin: 0px;
  color: white;
  font-family: 'Meiryo';
}

#id_title {
  margin: 8px;
  font-size: 30px;
}

p {
  margin: 0px;
}

table {
  background-color: blanchedalmond;
  color: black;
  border-collapse: collapse;
}

td,th {
  border: solid 2px black;
}

.cl_thead {
  background-color: skyblue;
}

.cl_shop {
  background-color: aquamarine;
}

.cl_pcontainer {
  display: flex;
}

.cl_pcol1 {
  flex-direction: column;
  margin: 2px;
}

.cl_pcol2 {
  flex-direction: column;
  margin: 2px;
}

.leaflet-popup-content-wrapper {
  font-family: 'Meiryo';
}

@media screen and (min-width: 767px) {
  
  .cl_header {
    width: 100%;
    height: 10%;
    min-height: 50px;
    overflow: hidden;
  }
  
  .cl_container {
    width: 100%;
    height: 85%;
    display: flex;
  }
  
  .cl_count {
    position: fixed;
    width: auto;
    height: auto;
    margin-top: 10px;
    margin-left: 60px;
    padding-left: 8px;
    color: red;
    background-color: white;
    z-index: 2;
  }

  .cl_map {
    width: 70%;
    height: 100%;
    z-index: 1;
  }
   
  .cl_list{
    width: 30%;
    height: 100%;
    margin-left: 8px;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  
  .cl_footer{
    width: 100%;
    height: 5%;
    overflow: hidden;
  }
  
  .leaflet-popup-content-wrapper h1 {
    font-size: 16px;
  }
  
  .leaflet-popup-content-wrapper p {
    font-size: 14px;
    margin: 0px;
  }
  
 }


@media screen and (max-width: 768px) {
  
  .cl_header {
    width: 100%;
    height: 5%;
    min-height: 50px;
    overflow: hidden;
  }

  .cl_container {
    width: 100%;
    height: 90%;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
  }

  .cl_count {
    position: fixed;
    width: auto;
    height: auto;
    margin-top: 10px;
    margin-left: 60px;
    padding-left: 8px;
    color: red;
    background-color: white;
    z-index: 2;
  }
  
  .cl_map {
    width: 100%;
    height: 50%;
    z-index: 1;
  }
  
  .cl_list{
    width: 100%;
    height: 50%;
    margin-top: 8px;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  
  .cl_footer{
    width: 100%;
    height: 5%;
    overflow: hidden;
  }
  
  .leaflet-popup-content-wrapper h1 {
    font-size: 16px;
  }
  
  .leaflet-popup-content-wrapper p {
    font-size: 14px;
    margin: 0px;
  }
  
 }

