@charset "UTF-8";

/*================================================
* news
================================================*/




#news .news_list .date {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

#news .news_list li {
  margin-bottom: 2rem;
}

#news .news_list li a {
  padding: 0 0 3rem 3rem;
}

#news .news_list li a::before {
  right: 3rem;
}

#news .news_list .news_meta {
  width: calc(100% - 35rem);
}

#news .news_list .ttl {
  font-size: 1.6rem;
  line-height: 1.8;
  width: 100%;
  padding-right: 6rem;
}

#news .news_list .ttl::before {
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}

.news_img {
  width: 30rem;
  aspect-ratio: 300/180;
  border: 1px solid #DBE0EA;
  border-radius: 0.5rem;
  overflow: hidden;
}

.news_img img {
  width: 100%;
  height: 100%;
  object-position: center;
  overflow: hidden;
  object-fit: cover;
}

.pnav {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  font-size: 1.8rem;
}

.pnav a,
.pnav span {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 3px;

  display: grid;
  place-content: center;
}

.pnav a:hover {
  color: var(--color-primary);
}

.pnav .current {
  background: var(--color-primary);
  color: var(--color-white);
}

.pnav .page-numbers.dots {
  background: unset;
  color: var(--color-black);
}

.pnav .prev,
.pnav .next {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/news/pnav_arrow.png);
  width: 2.75rem;
  height: 0.5rem;
  position: relative;
}

.pnav .next {
  transform: rotate(180deg);
}

@media screen and (max-width:767px) {

  .news_img {
    width: 100%;
  }

  #news .news_list .news_meta {
    width: 100%;
  }

  #news .news_list li a {
    padding: 0 2rem 3rem;
    gap: 1.5rem;
  }

  #news .news_list li a::before {
    right: 2rem;
    top: 22.5rem;
  }

  #news .news_list .date {
    margin-bottom: .5rem;
    font-size: 1.3rem;
  }

  #news .news_list .ttl {
    font-size: 1.4rem;
    padding-right: 5.3rem;
  }

  #news .news_list .ttl::before {
    right: 0;
  }
}

/*================================================
* 
================================================*/

.n_cnt-wrap {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 7rem;
  border: 1px solid #DBE0EA;
}

.n_cnt-wrap .n_date {
  font-family: var(--roboto);
  font-size: 1.8rem;
  color: var(--color-primary);
  padding: 0 3rem 0.5rem 3rem;
}

.n_cnt-wrap .n_ttl {
  font-family: var(--shippori);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0 3rem 3rem;
}

.n_cnt {
  padding-top: 5rem;
  border-top: 1px solid #DBE0EA;
}


.n_cnt .thumbnail {
  width: 70rem;
  margin: 0 auto 5rem;
}

.n_cnt img {
  height: auto;
  width: 100%;
  aspect-ratio: 700/420;
  overflow: hidden;
  object-fit: cover;
  border-radius: 0.5rem;
}

.n_cnt-main {
  padding-left: 3rem;
  padding-right: 3rem;
}

.n_cnt-main * {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 400;
}

.n_cnt-main h3,
.n_cnt-main h4,
.n_cnt-main h5,
.n_cnt-main h6,
.n_cnt-main p,
.n_cnt-main ul,
.n_cnt-main ol,
.n_cnt-main blockquote,
.n_cnt-main .wp-block-file {
  margin-bottom: 3rem;
}


.n_cnt-main h3 {
  font-size: 2.4rem;
  color: var(--color-primary);
  font-weight: 700;

}

.n_cnt-main h4,
.n_cnt-main h5,
.n_cnt-main h6 {
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 700;
}

.n_cnt-main b,
.n_cnt-main strong {
  font-weight: 700;
}

.n_cnt-main a {
  text-decoration: underline;
  color: var(--color-primary);
}


.n_cnt-main ul li {
  margin-bottom: 0.5rem;
  padding-left: 1em;
  position: relative;
}

.n_cnt-main ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

.n_cnt-main ol li {
  margin-left: 1.5em;
}

.n_cnt-main ol li::marker {
  color: var(--color-primary);
  font-weight: 500;
}

.n_cnt-main blockquote {
  padding: 3rem 5rem 1px 2.5rem;
  background: #F8F8F8;
  border-top: 1px solid #DBE0EA;
  border-bottom: 1px solid #DBE0EA;
  position: relative;
}

.n_cnt-main blockquote::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/news/icon_blockquote.png);
  width: 3.568rem;
  height: 2.64rem;
  top: 1.6rem;
  right: 1.4rem;
}


.n_cnt-main .wp-block-file__button {
  color: #fff;
  text-decoration: unset;
}

.dnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
  margin-top: 7rem;
}

.dnav .prev,
.dnav .next {
  font-size: 1.6rem;
  position: relative;
}

.dnav .prev {
  padding-left: 4.2rem;
}

.dnav .next {
  padding-right: 4.2rem;
}

.dnav .prev::before,
.dnav .next::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../../images/news_arrow.png);
  width: 2.75rem;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}


.dnav .prev::before {
  left: 0;
  transform: translateY(-50%) rotate(180deg)
}

.dnav .next::before {
  right: 0;
}

.dnav .c_btn-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width:767px) {
  .n_cnt-wrap {
    border-radius: 0.5rem;
    padding: 5rem 2rem;
  }

  .n_cnt-wrap .n_date {
    font-size: 1.4rem;
    padding: 0 0.5rem 1rem 0.5rem;
  }



  .n_cnt-wrap .n_ttl {
    font-size: 2rem;
    padding: 0 0.5rem 3rem;
  }

  .n_cnt {
    padding-top: 3rem;
  }


  .n_cnt .thumbnail {
    width: calc(100% - 1rem);
    margin-bottom: 3rem;
  }

  .n_cnt-main {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .n_cnt-main * {
    font-size: 1.4rem;
  }

  .n_cnt-main h3 {
    font-size: 1.8rem;
  }

  .n_cnt-main h4,
  .n_cnt-main h5,
  .n_cnt-main h6 {
    font-size: 1.6rem;
  }

  .n_cnt-main blockquote {
    padding: 3rem 2rem 1px;
    background: #F8F8F8;
  }

  .n_cnt-main blockquote::before {
    width: 2.697rem;
    height: 1.995rem;
    top: 1.1rem;
    right: 1.1rem;
  }

  .dnav {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem 0;
    margin-top: 4rem;
  }

  .dnav .prev,
  .dnav .next {
    font-size: 1.4rem;
    white-space: nowrap;
  }

  .dnav .prev {
    padding-left: 3.7rem;
  }

  .dnav .next {
    padding-right: 3.7rem;
  }

  .dnav .next {
    order: 2;
  }

  .dnav .c_btn-box {
    order: 3;
    width: 100%;
  }

  .dnav .c_btn-box a {
    margin: 0 auto;
  }
}