@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : article_paginate.css
Description : recommend to use with article_paginate.js
===================================================================== */

[v-cloak] {
  display: none;
}

.text.is-highlighted {
  background: #ffe08a;
}

/* =====================================================================
*    article_pager
* =================================================================== */
.article_pager_box {
  margin: calc(120 / 750 * 100%) 0 0;
}

.article_pager_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article_pager_list li {
    width: calc(60 / 680 * 100%);
    margin: 0 calc(10 / 680 * 100%) 0 0;
}

.article_pager_list li:last-child {
  margin-right: 0;
}

.article_pager_list li a {
    padding: 0.4em 0.8em;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.article_pager_arrow2 a,
.article_pager_arrow3 a {
  background: url(../images/common/btn_arrow3.png) no-repeat center center;
  background-size: calc(16 / 64 * 100%) auto;
}

.article_pager_arrow1 a,
.article_pager_arrow4 a {
  background: url(../images/common/btn_arrow4.png) no-repeat center center;
  background-size: calc(16 / 64 * 100%) auto;
}

.article_pager_arrow3 a,
.article_pager_arrow4 a {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.article_pager_list li.active a {
  background-color: #151b1b;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .article_pager_box {
    margin: calc(100 / 1600 * 100%) 0 0;
  }

  .article_pager_list li {
width: calc(40 / 1024 * 100%);
    margin: 0 calc(20 / 1024 * 100%) 0 0;
  }

  .article_pager_list li a {

font-size: 1.2rem;
  }

  .article_pager_list li a:hover {
    background-color: #151b1b;
    color: #fff;
  }

  .article_pager_arrow2 a::after,
  .article_pager_arrow3 a::after,
  .article_pager_arrow1 a::after,
  .article_pager_arrow4 a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/common/btn_arrow3w.png) no-repeat center center;
    background-size: calc(16 / 64 * 100%) auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }

  .article_pager_arrow1 a::after,
  .article_pager_arrow4 a::after {
    background: url(../images/common/btn_arrow4w.png) no-repeat center center;
    background-size: calc(16 / 64 * 100%) auto;
  }

  .article_pager_arrow2 a:hover::after,
  .article_pager_arrow3 a:hover::after,
  .article_pager_arrow1 a:hover::after,
  .article_pager_arrow4 a:hover::after {
    opacity: 1;
  }
}

@media screen and (min-width: 1600px) {

}
