@charset "utf-8";
/* CSS Document */

h1.leaflet_h1 {
	background-color: #48a5e7;
	background-image: none;
}
.leaflet-box section {
  background-color: #fff;
  padding: 1.65em;
}
.leaflet-box section:not(:last-of-type){
  margin-bottom: 3em;
}
.leaflet-box h2 {
  font-size: 2.3rem;
  border-bottom: 1px dotted #57300C;
}

.leaflet-box h2 > span {
	font-size: 0.7em;
  margin-left: 1rem;
}

.pdf-link a {
  color: #2689D7;
  text-decoration: none;
  display: block;
  border: 1px solid #2689D7;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 10px;
  transition: .2s;
}

.pdf-link a:hover {
  color: #fff;
  background-color: #2689D7;
  transition: .2s;
}

.tab-leaflet {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
}

.tab-leaflet > label {
  flex: 1 1;
  order: -1;
  opacity: .5;
  min-width: 70px;
  padding: .6em 1em;
  border-radius: 5px 5px 0 0;
  background-color: #2589d0;
  color: #fff;
  font-size: .9em;
  text-align: center;
  cursor: pointer;
  transition: .2s;
}

.tab-leaflet > label:hover {
  opacity: .8;
  transition: .2s;
}

.tab-leaflet input {
  display: none;
}

.tab-leaflet > div {
  display: none;
  width: 100%;
  padding: 5px 0 0;
  background-color: #fff;
}

.tab-leaflet > div > figure {
  margin-bottom: 5px;
}

.tab-leaflet > div > figure > img {
  width: 100%;
}

.tab-leaflet > div > p:last-of-type {
  margin-bottom: 0;
}

.tab-leaflet label:has(:checked) {
  opacity: 1;
}

.tab-leaflet label:has(:checked) + div {
  display: block;
}

@media only screen and (max-width: 1023px){
  
}

@media only screen and (max-width: 767px){
  .leaflet-box h2 {
    font-size: 1.8rem;
  }
  .tab-leaflet > label {
    padding: 5px;
  }
}