@charset "utf-8";

/* ======================================
   History page
====================================== */
.page-history .l-page {
  padding-top: 56px;
  padding-bottom: 120px;
}

.history-page-hero {
  margin-bottom: 4rem;
}

.history-lead__text {
  color: var(--color-red);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0 0 4rem 0;
}

/* --------------------------------------
   section
-------------------------------------- */
.history-section-heading {
  margin-bottom: 28px;
}

.history-section {
  padding: 0 5rem;
}

/* --------------------------------------
   table
-------------------------------------- */
.history-table {
  width: 100%;
}

.history-table th {
  width: 180px;
  background: #efefef;
  text-align: left;
}

.history-table__year {
  font-size: 1.6rem;
}

.history-table__text {
  font-size: 1.6rem;
  line-height: 1.8;
}

.history-table__text {
  position: relative;
  padding-left: 1.6rem;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
}

.history-table th,
.history-table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 20px;
  vertical-align: top;
}

.history-table__year {
  width: 140px;
  background: #f3f3f3;
  font-weight: bold;
}

.history-table__text {
  background: #fff;
}

.history-table__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.history-table__list li {
  position: relative;
  padding-left: 14px;
  line-height: 1.8;
}

.history-table__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #eb3b2d;
}

/* --------------------------------------
   spacing adjustment
-------------------------------------- */
.history-table tr th,
.history-table tr td {
  padding: 20px 16px;
}

@media screen and (max-width: 767px) {

  .history-section {
    padding: 0;
  }

  .history-lead__text {
    font-size: 1.6rem;
    padding: 0 1rem 3rem;
  }

  .history-table th {
    width: auto;
  }

  .history-table tr th, .history-table tr td {
      padding: 12px 14px;
  }

}

/* --------------------------------------
   MTテーブルフィールド出力向けスタイル
-------------------------------------- */
.history-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-line);
}

.history-table-wrap tr td {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 16px;
  vertical-align: top;
  font-size: 1.4rem;
  line-height: 1.8;
}

.history-table-wrap tr td:first-child {
  width: 140px;
  background: #f3f3f3;
  font-weight: bold;
  white-space: nowrap;
}

.history-table-wrap tr td:last-child {
  background: #fff;
}

.history-table-wrap tr td:last-child > div {
  position: relative;
  padding-left: 14px;
  margin-top: 0.5em;
}

.history-table-wrap tr td:last-child > div:first-child {
  margin-top: 0;
}

.history-table-wrap tr td:last-child > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background: #eb3b2d;
}

@media screen and (max-width: 767px) {

  .history-table-wrap tr td:first-child {
    width: auto;
    white-space: normal;
  }

  .history-table-wrap tr td {
    padding: 12px 14px;
  }

}