@charset "UTF-8";
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 変数の定義
--------------------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 色の定義
--------------------------------------------------*/
/* 色のクラス
--------------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.blue {
  color: #2953ED;
}

.orange {
  color: #D56300;
}

/* フォントの定義
--------------------------------------------------*/
html,
body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
table,
tr,
th,
td,
a,
figure {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #000;
}

body,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
img,
svg,
a,
table,
tr,
th,
td,
figure {
  font-size: 1.6rem;
}
@media screen and (max-width: 999px) {
  body,
  ul,
  ol,
  dl,
  li,
  dt,
  dd,
  p,
  div,
  img,
  svg,
  a,
  table,
  tr,
  th,
  td,
  figure {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
}

/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/*-----------------------------------------

※このスタイルシートはSCSSで生成されています。
cssへの直記入はなさらないようにしてください。

-----------------------------------------*/
/* 共通
--------------------------------------------------*/
body {
  word-break: break-word;
}

a {
  transition-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}

span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

section {
  position: relative;
  z-index: 1;
}

span.word {
  display: inline-block;
}

/* 404
--------------------------------------------------*/
/* ---------- News ---------- */
.news {
  padding: 100px 0;
  background: #F5F6F9;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 60px 0;
  }
}
.news .container {
  width: calc(100% - 28.57vw);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .news .container {
    width: 90%;
  }
}
.news .news-list {
  display: grid;
}
.news .news-list li {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  border-bottom: 1px solid #2953ED;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .news .news-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0;
  }
}
.news .news-date {
  color: #858585;
  font-weight: 700;
  width: 110px;
  letter-spacing: 0.05em;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .news .news-date {
    width: 100%;
  }
}
.news .news-text {
  color: #000;
  font-weight: 500;
  line-height: 1.6;
  width: calc(100% - 60px);
}
@media screen and (max-width: 768px) {
  .news .news-text {
    width: 100%;
  }
}
.news .pager {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news .pager {
    margin-top: 40px;
  }
}
.news .pager .wp-pagenavi {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news .pager .wp-pagenavi {
    gap: 12px;
  }
}
.news .pager .page, .news .pager span, .news .pager .nextpostslink, .news .pager .previouspostslink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #2953ED;
  color: #2953ED;
  font-weight: 700;
  font-size: 18px;
  font-family: "EB Garamond", serif;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .news .pager .page, .news .pager span, .news .pager .nextpostslink, .news .pager .previouspostslink {
    width: 35px;
    height: 35px;
  }
}
.news .pager .page:hover, .news .pager span:hover, .news .pager .nextpostslink:hover, .news .pager .previouspostslink:hover {
  background: #2953ED;
  color: #fff;
}
.news .pager .page:hover .icon, .news .pager span:hover .icon, .news .pager .nextpostslink:hover .icon, .news .pager .previouspostslink:hover .icon {
  filter: brightness(0) invert(1);
}
.news .pager .pages {
  display: none;
}
.news .pager .current {
  border: 1px solid #2953ED;
  background: #2953ED;
  color: #fff;
}
.news .pager .nextpostslink, .news .pager .previouspostslink {
  position: relative;
}
.news .pager .nextpostslink::before, .news .pager .previouspostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url("../img/common/arrow.svg") no-repeat center/contain;
}
.news .pager .nextpostslink:hover::before, .news .pager .previouspostslink:hover::before {
  background: url("../img/common/arrow_white.svg") no-repeat center/contain;
}
.news .pager .previouspostslink::before {
  transform: translate(-50%, -50%) rotate(90deg);
}/*# sourceMappingURL=news.css.map */