/*
Theme Name: flexcomix
*/

/*
* よくある質問ページで使用
*/
.faq-block {
  margin-top: 16px;
  margin-bottom: 32px;
  display: flex;
  width: 100%;
}

.faq-img {
  max-height: 100px;
  margin-right: 48px;
}

@media(max-width: 767px) {
  .faq-img {
    margin-right: 16px;
  }
}

.faq-content {
  width: 100%;
}

.faq-text {
  display: flex;
  margin: 8px 0;
}

.dot {
  background-image: linear-gradient(to right, #333 2px, transparent 2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  max-width: 600px;
  width: 100%;
  height: 3px;
}

.question-img, .answer-img {
  max-height: 40px;
  max-width: 20px;
  margin-right: 16px;
  object-fit: contain;
}

.question-text {
  font-weight: bold;
}

.answer-text {
  margin-top: 8px;
}

/*
* 漫画の読み方ページで使用
*/
ul {
  list-style: none;
}

.borderbox {
  border: 1px solid #dcd6cf;
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #fbfbfa;
  overflow: hidden;
}

.disc {
  color: var(--label-accent-color);
  font-size: 65%;
  margin-right: 0.25rem;
  vertical-align: middle;
}

/*
* 電子書籍サイト一覧ページで使用
*/
.ebook-title {
  display: flex;
  height: 40px;
  align-items: center;
}

.ebook-img {
  text-align: center;
}

.line {
  width: 100%;
  height: 3px;
  border: none;
  border-bottom: 1px solid black;
}

/*
 * 編集部ブログで使用
 */
.blog-archive-block {
  max-width: 300px;
  word-break: break-all;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 0 12px 6px;
  background-color: #f4f4f4;
}
@media(max-width: 767px) {
  .blog-archive-block {
    max-width: 500px;
  }
}

.blog-sidebar-title {
  position: relative;
  font-size: .9rem;
  padding: 4px 14px;
  display: flex;
  align-items: center;
}

.blog-sidebar-title::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 70%;
  top: 5px;
  left: 0px;
  background-color: var(--label-accent-color);
}

.page-numbers {
  margin-top: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-numbers > li > a,
.page-numbers > li > span {
  width: 30px;
  height: 30px;
}
.page-numbers > li > .dots {
  width: auto;
  height: auto;
  border: 0;
}
.page-numbers li span {
  opacity: 0.5;
}
.page-numbers > li > .dots {
  opacity: 1;
}
