/* 阿仁川鮎グラフ専用スタイル */

.ayu-graph-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 40px;
  gap: 24px;
  background: #f8fafc;
  color: #0f172a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ayu-graph-header {
  width: 100%;
  max-width: 960px;
}

.ayu-graph-card {
  width: 100%;
  max-width: 960px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
  margin-top: 4px;
}

.ayu-graph-header h1 {
  font-size: 22px;
  margin: 0 0 4px;
  color: #020617;
}

.ayu-graph-header p {
  font-size: 13px;
  margin: 0 0 4px;
  color: #64748b;
}

.ayu-graph-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.ayu-graph-tab-btn {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
}

.ayu-graph-tab-btn.active {
  background: #0f766e;
  color: #ffffff;
  border-color: #0f766e;
}

.ayu-graph-tab-btn:hover {
  background: #e0f2fe;
}

.ayu-graph-info-box {
  background: #fef9c3;
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 8px;
  border: 1px solid #facc15;
  font-size: 14px;
  transition: background-color 0.2s ease-out;
}

.ayu-graph-info-title {
  font-weight: 600;
  color: #000000;
  margin-bottom: 4px;
  font-size: 15px;
}

.ayu-graph-info-line {
  margin: 0;
  font-size: 14px;
  color: #000000;
  line-height: 1.4;  /* ← これを追加（PC用：やや詰め気味） */
}

.ayu-graph-subtabs {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.ayu-graph-subtab-btn {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
}

.ayu-graph-subtab-btn.active {
  background: #1d4ed8;
  color: #ffffff;
  border-color: #1d4ed8;
}
@media (max-width: 640px) {
  .ayu-graph-info-box {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .ayu-graph-info-title {
    margin-bottom: 2px;
  }

  .ayu-graph-info-line {
    line-height: 1.2;   /* スマホではさらに行間を詰める */
  }
}
