/**
 * 外枠
 */
.event-container {
  margin-right: auto;
  margin-left: auto;
  width: 560px;
  font-size: 12px;
}

.event-container * {
  box-sizing: border-box;
}

.event-text-strong {
  color: #d90000;
}

/**
 * 現在選択しているキャラクター
 */
.event-current-chara {
  display: grid;
  grid-template-columns: 156px 1fr;
  grid-template-rows: 1fr;
}
.event-current-chara-l {
  grid-column: 1/2;
  grid-row: 1/2;
}
.event-current-chara-r {
  grid-column: 2/3;
  grid-row: 1/2;
  font-weight: bold;
  display: flex;
  flex-direction: column;
}
.event-chara-info {
  color: #fff;
  height: 3.5rem;
  padding-bottom: 0.6rem;
}
/* 討伐状況 */
.event-chara-status {
  color: #ffe552;
  font-weight: bold;
  background-color: #3a3a3a;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/**
 * キャラフレーム
 */
.event-chara-rim {
  padding: 6px;
  display: inline-block;
  border-radius: 5px;
  box-shadow: 0 0 0 2px #fff inset, 0 0 0 3px #000 inset, 0 0 0 4px #7e7e7e inset,
    0 0 0 6px #959595 inset;
}
.event-chara-rim img {
  width: 144px;
}

.event-change-chara-button {
  position: relative;
  display: block;
  width: 145px;
  height: 29px;
  overflow: hidden;
}
.event-change-chara-button img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.event-change-chara-button:hover img {
  top: -100%;
}

/**
 * 討伐状況
 */
.event-defeat-status {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.event-defeat-status img:nth-of-type(n + 4) {
  margin-top: 12px;
}

/**
 * 祈願帳
 */
.event-book {
  padding-left: 2px;
  padding-right: 2px;
}

.event-book-rim {
  border-style: solid;
  border-width: 2px;
  border-color: rgb(71, 37, 7);
  background-color: rgb(251, 245, 221);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.5);
}
.event-book-rim > img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/**
 * テーブル拡張
 */
.event-table {
  border: 2px solid #463918;
  font-size: 14px;
}
.event-table__item-info {
  display: flex;
  justify-content: center;
  padding-top: 6px;
  padding-bottom: 6px;
}
.event-table__item-info__img {
  display: flex;
  justify-content: flex-start;
}
.event-table__item-info__txt {
  display: flex;
  justify-content: center;
  align-items: center;
}
