.history__container {
  position: absolute;
  width: 100dvw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.4);
}
.history__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  max-width: calc(100% - 4rem);
  top: 2rem;
  height: 720px;
  max-height: calc(100% - 4rem);
}
/* フキダシパーツ */
.historyBalloon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  filter: drop-shadow(2px 2px 4px #8888);
  padding: 1rem;
}
.historyBalloon__closeButton {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
.historyBalloon__scrollArea {
  overflow-y: scroll;
  max-height: 100%;
}
.historyBalloon__scrollBody {

}
/* 履歴領域パーツ */
.fortuneHistory__headTitle {
  /*margin-top: 0;*/
}
.fortuneHistory__headLead {
}
.fortuneHistory__body {
}
.fortuneHistory__foot {
  text-align: center;
}
.fortuneHistory__yearHead {
  border-bottom: 1px solid #890106;
  font-size: small;
  text-align: center;
}
/* 履歴日別パーツ */
a.dailyFortune__anchor {
  background: #fff;
  cursor: pointer;
  display: block;
  margin: 0.5rem;
  filter: drop-shadow(0px 1px 2px #8888);
}
a.dailyFortune__anchor:hover {
  filter: drop-shadow(0px 2px 3px #8888);
}
a.dailyFortune__anchor:active {
  filter: drop-shadow(0px 0px 1px #8888);
}
.dailyFortune {
  display: flex;
  justify-content: center;
}
.dailyFortune__date {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  width: 6em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dailyFortune__fortune {
  font-family: "Yuji Syuku", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: x-large;
  width: 6em;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ボタンスタイル */
button#historyCloseButton,
button#historyResetButton {
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: medium;
}
