@charset "utf-8";
/*
.sybarite(){
  font-family: sybarite, serif;
  font-weight: 600;
  font-style: normal;
}
*/
/* CSS Document */
.stationSelectorArea {
  margin: 2rem 0;
  display: flex;
  justify-content: flex-end;
}
.stationSelectorArea label {
  color: #fcad4f;
  font-size: 15px;
  font-weight: 600;
  margin-right: 10px;
}
.stationSelectorArea select {
  color: #666666;
}
#placeList {
  width: 100%;
}
#placeList > li {
  margin-bottom: 40px;
  border-bottom: 1px solid #aaa;
  padding: 10px;
  box-sizing: border-box;
}
#placeList > li > div:first-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
#placeList > li > div:first-child > .station {
  background: linear-gradient(45deg, #ff5f6f 0%, #fcad4f 100%);
  color: #fffffe;
  font-size: 20px;
  font-weight: 600;
  padding: 3px 5px;
}
#placeList > li > div:first-child > .name {
  font-size: 20px;
  font-weight: 600;
  color: #fcad4f;
}
#placeList > li > .infoArea > .info {
  font-size: 12px;
  height: 12px;
  overflow: hidden;
  margin: 10px auto;
}
#placeList > li > .infoArea .moreReadButton {
  background: #ff5f6f;
  color: #fffffe;
  padding: 2px 5px;
  cursor: pointer;
  height: 20px;
  font-size: 14px;
  margin-left: auto;
  margin-bottom: 40px;
  display: block;
  border: none;
}
#placeList > li .linkArea {
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
  margin-bottom: 20px;
}
#placeList > li .linkArea > a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding: 10px 0;
  background: #FFF;
  border-image: linear-gradient(45deg, #ff5f6f 0%, #fcad4f 100%);
  border-image-slice: 1;
  border-width: 1px;
  border-style: solid;
  width: 50%;
  font-weight: 600;
}
#placeList > li .linkArea > a:first-child {
  color: #ff5f6f;
}
#placeList > li .linkArea > a:last-child {
  color: #ff5f6f;
}
#placeList > li > .map {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
