@charset "utf-8";

/* activityHistory.html 専用 */

/* 年別ブロック */
.year-block {
  margin-bottom: 30px;
}

/* グラフブロック */
.chart-block {
  clear: both;
  margin-bottom: 30px;
}

/* 活動履歴テーブル */
.ta3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.ta3 th:first-child {
  border-radius: 5px 0 0 0;
}

.ta3 th:last-child {
  border-radius: 0 5px 0 0;
  border-right: 1px solid #3c6690;
}

.ta3 th {
  text-align: center;
  color: #fff;
  background: linear-gradient(#829ebc, #225588);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  padding: 10px 0;
}

.ta3 td {
  text-align: center;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top: none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  padding: 10px 0;
}

.ta3 tr:nth-child(odd) {
  background-color: #eee;
}

.ta3 td:last-child {
  border-right: 1px solid #a8b7c5;
}

.ta3 tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

.ta3 tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

.ta3 th.width15 {
  width: 13%;
}

/* スマホ時の見出し詰め */
@media screen and (max-width: 600px) {
  .ta3 th,
  .ta3 td {
    font-size: 12px;
    line-height: 1.4;
    padding: 8px 4px;
  }
}

@media screen and (max-width: 480px) {
  .ta3 th,
  .ta3 td {
    font-size: 11px;
    padding: 6px 2px;
    word-break: break-word;
  }
}