@charset "utf-8";

/*-- お知らせ --------------------------------------------------------------*/

/* ---------- 一覧 ---------- */

.newsList > .webgene-blog {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 4%;
}

.newsItem {
    border-top: solid 4px #052D67;
    padding: 15px 0 0;
}

.newsItem > a {
    display: block;
    position: relative;
}

.newsItem > a .newsImg > img {
    transition: .3s;
}

.newsItem > a:hover .newsImg > img {
    transform: scale(1.1);
}

.newsImg {
    padding: 0 0 75%;
    overflow: hidden;
}

.newsImg > img + .noImg {
    display: none;
}

.newsItem .cate {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.428em;
    border: solid 1px #2D3538;
    border-radius: 20px;
    color: #333;
    padding: 9px 11px;
    margin: 15px 0 0;
}

.newsItem .deta {
    display: block;
    font-size: 18px;
    font-family: 'Balthazar', serif;
    letter-spacing: 0.06em;
    line-height: 1em;
    color: #000;
    margin: 13px 0 0;
}

.newsItem .tit {
    letter-spacing: 0.05em;
    line-height: 1.72em;
    color: #333;
    margin: 7px 0 0;
}

/* ------ 詳細 ------ */

.newsDate {
    display: flex;
    align-items: center;
}

.newsDtl .cate {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05em;
    line-height: 1.428em;
    border: solid 1px #2D3538;
    border-radius: 20px;
    color: #333;
    padding: 9px 11px;
    margin: 0 0 0 15px;
}

.newsDtl .date {
    max-width: 115px;
    width: 100%;
    display: block;
    font-size: 18px;
    font-family: 'Balthazar', serif;
    letter-spacing: 0.06em;
    line-height: 1em;
    color: #000;
}

.newsDtl > .tit {
    font-size: 18px;
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.45em;
    border-bottom: solid 1px #0E2E6D;
    padding: 0 0 10px;
    margin: 15px 0 0;
}

.newsDtl > .img {
    margin: 30px 0 0;
    text-align: center;
}

.newsDtl > .img:empty {
    display: none;
}

.newsDtl > .content {
    margin: 30px 0 0;
}

.newsDtl {
    border-top: solid 5px #0E2E6D;
    background: #fff;
    padding: 40px 0 0 0;
}

.backBtn {
    margin: 30px auto 0;
}

.backBtn:hover:before {
    left: 0;
}

/* ---------- カテゴリ ---------- */

.cateBox {
  overflow: hidden;
}

.cateBox:not(:first-child) {
    margin: 30px 0 0
}

.cateH {
    font-weight: 900;
    font-size: 14px;
    padding: 7px 10px 8px 20px;
    position: relative;
    background: #052D67;
    color: #fff;
}

.cateLink {
    display: block;
    padding: 10px 10px 11px 20px;
    color: #333;
    border-bottom: solid 1px #707070;
}

.cateLink:hover {
    color: #052D67;
}

.cateLink:hover:before {
    content: "▶";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 13px;
}

/* ---------- ぺージャー ---------- */

.webgene-pagination {
    width: 100%;
    grid-column: 1/3;
}

.webgene-pagination > ul{
  padding: 0;
  display: flex;
  justify-content: center;
}

.webgene-pagination > ul > li{
  display: flex;
}

.webgene-pagination > ul > li{
  margin: 15px 10px 0;
  height:30px;
  min-height:30px;
  width:100%;
  max-width:30px;
  font-size: 14px;
  list-style: none;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  padding: 4px 0;
  align-items: center;
  border: 1px #052D67 solid;
  overflow: hidden;
}

.webgene-pagination > ul > li.selected > a{
  color: #FFF;
  background: #052D67;
  cursor: inherit;
}

.webgene-pagination > ul > li.selected > a:hover {
    color: #FFF;
    background-color: #052D67;
}

.webgene-pagination > ul > li > a{
  width: 100%;
  height: 28px;
  width: 30px;
  color: #052D67;
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination > ul > li > a:hover{
  color:#FFF;
  background-color: #052D67;
  text-decoration: none;
}

.next > a {
    font-size: 11px;
    color: #FFF;
}

.prev > a{
    font-size: 11px;
    color: #FFF;
}

.dtlPager {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 0;
}

.webgene-item-aroundPageLink {
    color: #052D67;
    font-size: 14px;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
/*-- お知らせ --------------------------------------------------------------*/

/* ---------- 一覧 ---------- */

.newsList > .webgene-blog {
    grid-template-columns: repeat(3, 1fr);
}

.newsItem {
    padding: 30px 0 0;
}

.newsItem .cate {
    font-size: 13px;
}

.newsItem .deta {
    font-size: 20px;
}
  
/* ------ 詳細 ------ */

.newsDtl > .tit {
    font-size: 22px;
}
  
.newsDtl .cate {
    font-size: 13px;
}

.newsDtl .date {
    font-size: 20px;
}
  
/* ---------- カテゴリ ---------- */

.cateH {
    font-size: 16px;
}

/* ---------- ページャー ---------- */

.webgene-pagination {
    width: 100%;
    grid-column: 1/4;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  

  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 960px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/*-- お知らせ --------------------------------------------------------------*/
  
/* ---------- 一覧 ---------- */

.newsList > .webgene-blog {
    gap: 40px 4%;
}

.newsItem .cate {
    font-size: 14px;
}

.newsItem .deta {
    font-size: 23px;
}

.newsItem .tit {
    margin: 15px 0 0;
}
  
/* ------ 詳細 ------ */

.newsDtl > .tit {
    font-size: 24px;
}
  
.newsDtl .cate {
    font-size: 14px;
}

.newsDtl .date {
    font-size: 23px;
}

.backBtn {
    margin: 60px auto 0;
}
  
/* ---------- カテゴリ ---------- */

.cateH {
    font-size: 18px;
}
  
/* ---------- ぺージャー ---------- */
  
.webgene-pagination > ul > li{
  margin: 80px 10px 0;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1024px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  

  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 1400px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */