@charset "utf-8";

/* -----------------------------
■カラーコード
ポイントパープル：#8C57D8;

■ゴシックフォント
font-family: "Noto Sans JP", sans-serif;
■丸フォント
font-family: "Zen Maru Gothic", sans-serif;
--------------------------------*/

/* -------------------------------
NEWSリスト
---------------------------------*/
.newslist-sec {
  margin-bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .newslist-sec {
    margin-bottom: 6.4rem;
  }
}

.newslist-container {
  width: 90%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.newslist {
  list-style: none;
}

.newslist-item {

}

.newslist-item-link {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #333;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
  padding-right: 5rem;
  border-bottom: 1px solid #8C57D8;
  position: relative;
}
.newslist-item-link::after {
  content: '';
  width: 3rem;
  height: 3rem;
  background-image: url(../img/common/icon_arrow_right_bk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: .2s all ease-in-out;
}
.newslist-item-link:hover::after {
  transform: translate(.5rem, -50%);
}

@media screen and (max-width: 767px) {
  .newslist-item-link {
    padding-right: 4rem;
    display: block;
  }
  .newslist-item-link::after {
    right: 0.5rem;
  }
}

.newslist-item-link-date {
  display: block;
  width: 11rem;
}

@media screen and (max-width: 767px) {
  .newslist-item-link-date {
    width: 100%;
  }
}

.newslist-item-link-title {
  display: block;
  width: calc(100% - 14rem);
}

@media screen and (max-width: 767px) {
  .newslist-item-link-title {
    width: 100%;
  }
}



/* -------------------------------
pagerセクション
---------------------------------*/
.pager-sec {
  margin-bottom: 16rem;
}

@media screen and (max-width: 767px) {
  .pager-sec {
    margin-bottom: 12rem;
  }
}

.pager-container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.pager-list {
  display: flex;
  list-style: none;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pager-list-item {

}
.pager-list-item:not(:last-child) {
  margin-right: 2rem;
}

.pager-list-item-link {
  display: block;
  text-decoration: none;
  width: 4rem;
  height: 4rem;
  position: relative;
}
.pager-list-item-link.current {
  background-color: #8C57D8;
}
.pager-list-item-link.dots {
  width: 2rem;
  height: 4rem;
}

.pager-list-item-link-text {
  display: block;
  color: #8C57D8;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pager-list-item-link.current .pager-list-item-link-text {
  color: #fff;
}



/* -------------------------------
NEWS詳細ページ
---------------------------------*/
.newsdetail-sec {
  margin-bottom: 16rem;
}

@media screen and (max-width: 767px) {
  .newsdetail-sec {
    margin-bottom: 12rem;
  }
}

.newsdetail-container {
  width: 90%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .newsdetail-container {
    margin-bottom: 6.4rem;
  }
}

.newsdetail-header {
  border-bottom: 1px solid #8C57D8;
  margin-bottom: 3.2rem;
}

.newsdetail-title {

}

.newsdetail-date {
  margin-bottom: .8rem;
}

/* エディター部分 */
.newsdetail-content {
  
}

.newsdetail-content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #8C57D8;
}

.newsdetail-content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #8C57D8;
  padding-left: 3.5rem;
  position: relative;
}
.newsdetail-content h3::before {
  content: '';
  width: 2.8rem;
  height: 2.8rem;
  background-image: url(../img/common/icon_spanner.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.newsdetail-content h4 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 2rem;
  position: relative;
}
.newsdetail-content h4::before {
  content: '';
  width: .4rem;
  height: 80%;
  background-color: #8C57D8;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.newsdetail-content h5 {
  font-weight: 700;
  color: #8C57D8;
}

.newsdetail-content h6 {
  font-weight: 700;
}

.newsdetail-content ul {
  margin-left: 1.5em;
  margin-bottom: 1.6rem;
}

.newsdetail-content p {
  margin-bottom: 1.6rem;
}

.newsdetail-content .wp-block-image {
  margin-bottom: 1.6rem;
}

.newsdetail-content .wp-block-image::after {
  content: "";
  display: block;
  clear: both;
}

