@charset "UTF-8";
.all-whole {
  margin-bottom: 12rem;
}
.history-whole:last-child {
  margin-bottom: 0;
}
.history-table {
  width: 100%;
  border-left: 1px solid #e9ecee;
  border-top: 1px solid #e9ecee;
  table-layout: fixed;
  margin-bottom: 8rem;
}
.history-table th,
.history-table td {
  border-bottom: 1px solid #e9ecee;
  border-right: 1px solid #e9ecee;
  vertical-align: middle;
}
.history-table th {
  font-size: 1.4rem;
  font-weight: bold;
  height: 4.6rem;
  background-color: #d0d5da;
  padding: 0.5rem;
  text-align: center;
  line-height: 1.5;
}
.history-table th:first-child {
  width: 14rem;
}
.history-table td {
  font-size: 1.6rem;
  padding: 2rem;
  line-height: 2;
}
.history-table td:first-child {
  background-color: #f2f6f8;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.history-table td:first-child span {
  font-size: 1.4rem;
  font-weight: normal;
}
.history-table td li{
  list-style-type: square;
  margin: 0 0 0 2rem;
}
.history-table td p {
  font-size: 1.6rem;
  margin: 1rem 0 0 0;
}
.history-table td p span{
  font-weight: bold;
}
.history-table td li a {
  display: inline-flex;
   align-items: center;
position: relative;
z-index: 0;
}
.history-table td li a::before {
content: "";
position: absolute;
top: 1.3rem;
    width: 0.8rem;
    aspect-ratio: 1 / 1;
    border-top: 1px solid #0068b7;
    border-right: 1px solid #0068b7;
    transform: rotate(45deg);
}
.history-table td li a span {
margin-left: 1.5rem;
color: #0068b7;
text-decoration: underline;
}
.history-table td li a.hover span {
text-decoration: none;
}
.history-table td figure {
  margin: 1rem 0 0;
}
.history-table td figure.many {
  margin: 1rem 0 3rem;
}
.history-table td figure img {
  max-width: 28.2rem;
  height:auto;
}
.history-table td figure img.w141 {
  max-width: 14.1rem;
  height:auto;
}
.history-table td figure img.w200 {
  max-width: 20rem;
  height:auto;
}
.history-table td figure img.w375 {
  max-width: 37.5rem;
  height:auto;
}

.anchor-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 7.7rem;
  background-color: #f2f6f8;
  margin-bottom: 15rem;
}
.anchor-link li {
  border-right: 1px solid #e9ecee;
}
.anchor-link li:last-child {
  border-right: none;
}
.anchor-link li a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4rem 0 5.5rem;
  position: relative;
  z-index: 0;
}
.anchor-link li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.8rem;
  margin-top: -0.5rem;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid #0068b7;
  border-right: 1px solid #0068b7;
  transform: rotate(135deg);
}
.anchor-link li a .al-name {
  font-size: 2.1rem;
  font-weight: bold;
  color: #0068b7;
}
.anchor-link li a.hover .al-name {
  text-decoration: underline;
}
.anchor-link li a .al-year {
  font-size: 1.4rem;
  font-weight: normal;
  color: #333;
  margin: 0 0 0 1.5rem;
}
.anchor-link li a.hover .al-year {
  color: #0068b7;
}
/* ----------------------------------------
accordion
---------------------------------------- */

.finance-trigger {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  height: 8.8rem;
  position: relative;
  z-index: 0;
}
.period-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.period-box {
  min-width: 22rem;
}
.finance-trigger .period {
  display: inline-block;
  font-size: 3rem;
  color: #0068b7;
  font-weight: bold;
}
.finance-trigger .year {
  display: inline-block;
  font-size: 2.1rem;
  margin-left: 2rem;
  font-weight: normal;
}
.finance-trigger .history-title {
  display: inline-block;
  font-size: 3rem;
  margin-left: 3rem;
  padding-left: 3rem;
  border-left: 1px solid #e9ecee;
}

.finance-trigger .plus {
  display: inline-block;
  background-color: #f2f6f8;
  width: 10rem;
  height: 8.8rem;
  margin-left: auto;
  position: relative;
  z-index: 0;
}

.finance-trigger .plus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1rem;
  background-color: #b8c2c8;
  width: 2rem;
  height: 2px;
  translate: 0 -50%;
  transition: 0.3s ease;
  z-index: 1;
}
.finance-trigger .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1rem;
  background-color: #b8c2c8;
  width: 2rem;
  height: 2px;
  translate: 0 -50%;
  transition: 0.3s ease;
  z-index: 1;
  transform: rotate(-90deg);
}

.finance-trigger.is-close .plus::after {
  transform: rotate(-90deg);
}

.finance-trigger.is-active .plus::after {
  transform: rotate(0);
}

.finance-content {
  /* アコーディオンのコンテンツを非表示にする */
  display: none;
}
/* ----------------------------------------
css animation
---------------------------------------- */

.js-fade {
  opacity: 0;
  transform: translateY(2rem);
}

.js-fadeUp {
  transition: all 0.5s ease-out;
  transition-delay: 0.1s;
  transform: translateY(0);
  opacity: 1;
}
