.dividend-chart {
  margin: 1.5rem 0 2rem;
  color: rgb(77, 77, 77);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
}
.dividend-chart *,
.dividend-chart *::before,
.dividend-chart *::after {
  box-sizing: border-box;
}
.dividend-chart__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.2rem;
}
.dividend-chart__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}
.dividend-chart__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  list-style: none;
  margin: 0 !important;
  padding: 0;
}
.dividend-chart__legend li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: rgb(77, 77, 77);
}
.dividend-chart__swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.dividend-chart__swatch--interim {
  background: rgb(153, 179, 228);
}
.dividend-chart__swatch--year-end {
  background: rgb(76, 123, 208);
}
.dividend-chart__swatch--commemorative {
  background: rgb(253, 153, 161);
}
.dividend-chart__body {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0 0.6rem;
  padding-top: 2.2rem;
}
.dividend-chart__unit {
  position: absolute;
  top: 0;
  font-size: 1.2rem;
  color: rgb(77, 77, 77);
}
.dividend-chart__unit--left {
  left: 0;
}
.dividend-chart__unit--right {
  right: 0;
}
.dividend-chart__yaxis {
  position: relative;
  height: 400px;
  width: 2.6rem;
  font-size: 1.2rem;
  color: rgb(77, 77, 77);
  line-height: 1;
}
.dividend-chart__yaxis span {
  position: absolute;
  right: 0;
  width: 100%;
  text-align: right;
  transform: translateY(-50%);
  white-space: nowrap;
}
.dividend-chart__yaxis--right {
  text-align: left;
}
.dividend-chart__yaxis--right span {
  left: 0;
  right: auto;
  text-align: left;
}
.dividend-chart__plot-wrap {
  min-width: 0;
}
.dividend-chart__plot {
  position: relative;
  height: 400px;
  min-width: 0;
  border-left: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
  overflow: visible;
}
.dividend-chart__xlabels {
  display: flex;
  justify-content: space-around;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0.6rem 1.2rem 0;
}
.dividend-chart__gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dividend-chart__gridline {
  position: absolute;
  left: 0;
  right: 0;
  height: 0;
  border-top: 1px dashed #d9d9d9;
}
.dividend-chart__bars {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 1.4rem;
  height: 100%;
  padding: 0 1.2rem;
  margin: 0;
  list-style: none;
}

.dc-bar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  margin-bottom: 0 !important;
}
.dc-bar__total {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(77, 77, 77);
  margin-bottom: 0.4rem;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.dc-bar__sub {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: rgb(153, 153, 153);
}
.dc-bar__stack {
  --target-h: 0%;
  width: 100%;
  max-width: 36px;
  height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: height 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.dc-bar__segment {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.dc-bar__segment .dc-bar__segment-label {
  padding: 0 0.2rem;
  white-space: nowrap;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}
.dc-bar__segment--interim {
  background: rgb(153, 179, 228);
  color: rgb(0, 66, 188);
  text-shadow: none;
}
.dc-bar__segment--year-end {
  background: rgb(76, 123, 208);
}
.dc-bar__segment--commemorative {
  background: rgb(253, 153, 161);
  color: #fff;
  text-shadow: none;
  font-size: 1rem;
}
.dc-bar__segment.is-empty {
  display: none;
}
.dc-bar__segment.is-tiny {
  flex: 0 0 auto;
  min-height: 16px;
}
.dc-bar--forecast .dc-bar__total {
  color: rgb(77, 77, 77);
}

.dividend-chart.is-visible .dc-bar__stack {
  height: var(--target-h);
  transition-delay: calc(var(--bar-i, 0) * 60ms);
}
.dividend-chart.is-visible .dc-bar__total {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--bar-i, 0) * 60ms + 700ms);
}

.dividend-chart.no-anim .dc-bar__stack {
  height: var(--target-h);
  transition: none;
}
.dividend-chart.no-anim .dc-bar__total {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .dividend-chart .dc-bar__stack {
    transition: none !important;
    height: var(--target-h);
  }
  .dividend-chart .dc-bar__total {
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
.dividend-chart__xlabels {
  margin: 0 !important;
}

.dc-xlabel {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.3rem;
  line-height: 1.3 !important;
  text-align: center;
  color: rgb(77, 77, 77);
  white-space: nowrap;
}
.dc-xlabel__period {
  font-weight: 700;
}
.dc-xlabel__year {
  margin-top: 0.2rem;
}
.dc-xlabel__month {
  margin-top: 0.1rem;
}
.dc-xlabel__note {
  margin-top: 0.2rem;
  color: rgb(153, 153, 153);
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .dividend-chart__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .dividend-chart__yaxis, .dividend-chart__plot {
    height: 280px;
  }
  .dividend-chart__plot-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .dividend-chart__plot, .dividend-chart__xlabels {
    min-width: 600px;
  }
  .dividend-chart__bars {
    gap: 0.8rem;
    padding: 0 0.6rem;
  }
  .dividend-chart__xlabels {
    gap: 0.8rem;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  .dc-bar__stack {
    max-width: 22px;
  }
  .dc-bar__total {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  .dc-bar__segment {
    font-size: 0.9rem;
  }
  .dc-bar__segment .dc-bar__segment-label {
    display: none;
  }
  .dc-xlabel {
    font-size: 1rem;
    line-height: 1.3;
  }
  .dc-xlabel__year {
    font-size: 0.9rem;
  }
  .dc-xlabel__month {
    font-size: 0.9rem;
  }
  .dc-xlabel__note {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=dividend-chart.css.map */