@charset "utf-8";

/* 会社沿革ページ専用 */
.profile .history_section .history_table_scroll,
.profile .history_archive .history_table_scroll {
  box-sizing: border-box;
  width: calc(100% - 20px);
  height: auto;
  margin-right: 10px;
  margin-left: 10px;
  overflow: visible;
  padding-right: 0;
  padding-left: 0;
}

.profile .history_section_foundation .history_table_scroll,
.profile .history_archive .history_table_scroll {
  margin-bottom: 0;
}

.profile .history_archive .history_table_scroll {
  border-bottom: 0;
}

.profile .history_section .history_table_scroll tr,
.profile .history_archive .history_table_scroll tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.profile .history_section_foundation .history_table_scroll tr:last-child th,
.profile .history_section_foundation .history_table_scroll tr:last-child td {
  border-bottom: 0;
}

.profile .history_archive {
  margin: 0;
}

.profile .history_archive summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: 54px;
  margin: 0 10px;
  padding: 12px 42px 12px 10px;
  border-top: 0;
  border-bottom: 3px solid #7d6600;
  background: #f5f4ed;
  color: #5f5008;
  cursor: pointer;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.profile .history_archive summary::-webkit-details-marker {
  display: none;
}

.profile .history_archive summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #7d6600;
  border-bottom: 2px solid #7d6600;
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}

.profile .history_archive[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.profile .history_archive_action {
  font-size: 12px;
  letter-spacing: .08em;
}

.profile .history_archive[open] .history_archive_action {
  font-size: 0;
}

.profile .history_archive[open] .history_archive_action::after {
  content: "閉じる";
  font-size: 12px;
}

.profile .history_archive_body {
  box-sizing: border-box;
  max-height: 550px;
  margin: 0 10px;
  padding: 0;
  border-right: 1px solid #e5dfc7;
  border-left: 1px solid #e5dfc7;
  background: #fcfbf7;
  box-shadow: inset 0 8px 8px -10px rgba(88, 73, 12, .55),
              inset 0 -8px 8px -10px rgba(88, 73, 12, .55);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.profile .history_archive_body .history_table_scroll {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

@media screen and (max-width: 680px) {
  .profile .history_archive summary {
    min-height: 0;
    margin: 0 10px;
    padding: 14px 32px 14px 0;
  }

  .profile .history_archive summary::after {
    right: 18px;
  }

  .profile .history_archive_body {
    max-height: min(550px, 65vh);
  }

}
