/* CSS Document */
body{
  background-color: #feffe2;
}

.section-spotlist__title{
  font-size: 24px;
  color: #2ba464;
  margin-top: 25px;
  line-height: 120%;
}

table {
	border-collapse: collapse;
  max-width: 1160px;
  margin: 30px auto 0;
  font-size: 14px;
}
.spot-name{
  width: 30%;
}
.spot-water{
  width: 10%;
}
.spot-address{
  width: 30%;
}
th {
	border: solid 1px #666666;
	color: #ffffff;
	background-color: #2ba464;
  vertical-align: middle;
  padding: 10px;
}
td {
	border: solid 1px #666666;
	color: #000000;
	background-color: #ffffff;
  text-align: left;
  vertical-align: middle;
  padding: 10px;
}

@media (max-width: 767px) {
  .section-spotlist__title{
    font-size: 20px
  }
  
  table{
    margin-top: 10px;
  }
  
  .responsive {
    border-collapse: separate;
    border-spacing: 0  20px;
  }
  .responsive thead {
    display: none;
  }
  .responsive tr {
    background-color: #f6f6f6;
  }
  .responsive td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 0.5px solid #dddddd;
  }
}