svg#chart {
  width: 100%;
}
.axis path, .axis line {
    fill: none;
    shape-rendering: crispEdges;
}
.line {
    fill: none;
    stroke-width: 2;
}
.area {
    fill-opacity: 0.5;
}
.grid-line {
    stroke: #ccc;
    stroke-width: 1;
}
.highlight-line {
    stroke: #333;
    stroke-width: 2;
}
.bestTime {
    fill: #DBDCD0;
    fill-opacity: 0.5;
}
.bestTime-label {
    font-size: 16px;
    font-weight: bold;
    text-anchor: middle;
    fill: #333;
}
.bestTime-area {
    fill: #DBDCD0;
    fill-opacity: 0.5;
}
.bestTime-line {
    fill: none;
    stroke: #333;
    stroke-width: 1;
}
.point-max {
    fill: red;
    stroke: white;
    stroke-width: 2;
}
.point-min {
    fill: blue;
    stroke: white;
    stroke-width: 2;
}
.point {
    fill: green;
    stroke: white;
    stroke-width: 2;
}
.point-label {
    font-size: 12px;
    text-anchor: middle;
    fill: #333;
}

.tick {
    font-size: 14px;
}








#legend {
    display: flex;
    flex-wrap: wrap; /* 折り返しOK */
    gap: 12px 40px; /* 縦横の間隔 */
    padding: 0 0 0 60px;
    user-select: none;
}
.legend-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    color: #333;
}
.legend-line {
    width: 40px;
    height: 3px;
    margin-right: 8px;
    border-radius: 1.5px;
}
/* 各線の色と点線指定 */
.line-temp {
  background: #e60000;
  stroke: #e60000;
}
.line-cloud {
  background: gray;
  stroke: gray;
}
.line-humidity {
  background: #1e90ff;;
  stroke: #1e90ff;;
}
.line-tourism-ma {
  background: yellow;
  fill:yellow;
}
