/* 記事一覧出力 */
div.champions h2.post-title {/* 記事一覧:タイトル */
  font-size: 1.4rem;
}
div.icons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
div.icons figure {
	width: calc(20% - 10px);
	margin: 0;
}
.tag-icon {
    cursor:pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.tag-icon:hover {
  background-color: rgba(235,186,244,.2);
}
.tag-icon.selected {
    background-color: rgba(251,226,19,.3);
    outline: 2px solid #ebbaf4;
    border-radius: 3px;
}
div#tagFilterArea {
	text-align: center;
	margin: 50px 0;
}
div#tagFilterArea button {
  cursor: pointer;
  font-family: "OtomeMincho";
  font-size: 1.2rem;
  color: #173a7e;
  background-color: rgba(114,90,164,.3);
  border: 1px solid #173a7e;
  border-radius: 10px;
  padding: 10px;
  margin-left: 10px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

/* カテゴリー */
div.champions div.post {
  position: relative;
}
div.champions span.category {
    cursor:pointer;
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "OtomeMincho";
  font-size: 14px;
  line-height: 14px;
  color: #fdfbfc;
  background-color: #725aa4;
  border: 1px solid #fbe213;
  border-radius: 10px;
  padding: 10px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
div.champions span.category:hover {
  background-color: #173a7e;
}
div.champions span.category.selected {
  background-color: #ebbaf4;
  color: #173a7e;
}

/* 構築紹介 */
div.party, div.match, div.overall {
  width: 100%;
  margin: 50px auto;
}
div.party a, div.match a {
  margin: 0 5px;
}
@media screen and (min-width: 916px) {
  div.party, div.match, div.overall {
    width: 95%;
  }
}

/* 使い方リスト */
div.party ol {
  width: 100%;
  counter-reset: number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  background-color: rgba(235,186,244,.2);
  border: 2px dashed #725aa4;
  border-radius: 10px;
  box-shadow: 0 0 5px 5px rgba(235,186,244,.2);
  padding: 0.5em;
  margin: 20px auto;
}
div.party ol li {
  position: relative;
  padding: .7em .5em .7em 35px;
}
div.party ol li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display:inline-block;
  background: #173a7e;
  color: #fbe213;
  font-family: 'OtomeMincho';
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;/*円にする*/
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
div.party ol li:after {/*吹き出しのちょこんと出た部分*/
  content: '';
  display: block;
  position: absolute;
  left: 20px;/*左からの位置*/
  height: 0;
  width: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #173a7e;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 916px) {
  div.party ol {
    width: 95%;
  }
}

/* 埋め込み */
iframe.video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  box-shadow: 0 0 5px 3px rgba(23,58,126,.2);
  margin: 20px 0 50px;
}

/* 説明リスト */
dl.chapter {
  width: 75%;
  background-color: rgba(251,226,19,.2);
  border: 2px dashed #173a7e;
  border-radius: 10px;
  box-shadow: 0 0 5px 5px rgba(251,226,19,.2);
  padding: 10px 20px;
  margin: 10px auto;
}
dl.comment {
  width: 95%;
  background-color: rgba(23,58,126,.1);
  border: 2px dashed #ebbaf4;
  border-radius: 10px;
  box-shadow: 0 0 5px 5px rgba(23,58,126,.1);
  padding: 10px 20px;
  margin: 10px auto;
}
dl.chapter > div, dl.comment > div {
  display: flex;
}
dl.chapter dt, dl.comment dt {
  margin-right: 10px;
}

/* 試合結果 */
div.result {
  width: 50%;
  font-size: 1.3rem;
  background-color: rgba(251,226,19,.3);
  border: 2px solid #173a7e;
  border-radius: 10px;
  box-shadow: 0 0 3px 5px rgba(251,226,19,.3);
  text-align: center;
  padding: 10px 20px;
  margin: 50px auto;
}
div.result > b {
  font-size: 1.5rem;
}

div.match ul {
  width: 100%;
  background-color: rgba(114,90,164,.2);
  border: 2px dashed #fbe213;
  border-radius: 10px;
  box-shadow: 0 0 5px 5px rgba(114,90,164,.2);
  padding: 10px 20px;
  margin: 10px auto;
}
