/* ==========================
   NEWS common
========================== */
.inner1000{
  width: 1000px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}
.inner800{
  width: 800px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.news-hero{position:relative; overflow:hidden;}
.news-hero__ph{height:220px;}
.news-hero__ph img{width:100%;height:100%;object-fit:cover;display:block;filter:grayscale(.2);}
.news-hero__mask{position:absolute;inset:0;background:linear-gradient(0deg, rgba(10,67,168,.25), rgba(10,67,168,.25));mix-blend:multiply;}
.news-hero__copy{position:absolute;left:40px;bottom:28px;color:#fff;line-height:1;}
.news-hero__copy .en{display:block;font-weight:900;letter-spacing:.1em;font-size:44px;}
.news-hero__copy .ja{display:block;margin-top:6px;font-size:13px;opacity:.95;}

.crumbs{background:#fff;}
.crumbs ol{display:flex;gap:10px;flex-wrap:wrap;padding:14px 0;font-size:12px;color:#6d7891;}
.crumbs a{color:#6d7891;text-decoration:none;}
.crumbs ol li+li::before{content:"›";margin:0 6px 0 0;color:#98a0b5;}
.crumbs-bar{height:14px;background:#124a93;}

/* ====== Filter ====== */
.news-filter{
  padding:100px 0 20px;
  
}
.news-filter__form{display:flex;gap:16px;flex-wrap:wrap;}
.sel{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#000;
  padding: 8px 0 8px 33px;
  color:#fff;
  height: 50px;
}
.sel01{
  width: 180px;
}
.sel02{
  width: 230px;
}
.sel__label{
  font-size:18px;
  color:#fff;
  position: relative;
  z-index: 9;
}
.sel select{
  appearance:none;
  padding: 18px 0 8px 33px;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  border:none;
  background:#000;
  color:#fff;
  cursor:pointer;
  line-height: 1;
}
.sel::after{
  content:"▾";
  position:absolute;
  right:10px;top:50%;
  transform:translateY(-50%);
  font-size:20px;
  color:#fff;
}

/* ====== List ====== */
.news-list-sec{
  padding:55px 0 100px;
}
.news-list{list-style:none;margin:0;padding:0;}
.news-item{border-bottom:1px solid #ccc;}
.news-item a{display:grid;
  grid-template-columns: 110px 130px 1fr;
  gap:16px;
  align-items:center;
  padding:18px 6px 18px 0;
  text-decoration:none;
  color:var(--text);
}
.news-item a:hover .news-ttl{text-decoration:underline;}
.news-cat{
  display:inline-block;
  background:#000088;
  color:#fff;
  font-size:12px;
  line-height:1;
  text-align: center;
  width: fit-content;
  padding:7px 20px;
  font-weight:700;
}
.news-cat-02{
  width: auto;
}
.news-ttl{
  margin-bottom:2px;
}

/* ====== Pager ====== */
.pager{
  display:flex;
  gap:10px;
  justify-content:center;
  margin:56px 0 20px
}
.pg{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  text-decoration:none;
  color:#fff;
  background: #000;
  font-weight:500;
  border: solid 1px #000;
  transition: 0.2s;
}
.pg.is-current{
  color:#000;
  background: #fff;
}
.pg:hover{
  color:#000;
  background: #fff;
}
.pg.next{
  width: 70px;
  font-size: 32px;
  font-weight:200;
}
.pg.prev{
  width: 70px;
  font-size: 32px;
  font-weight:200;
}
/* ====== Detail ====== */
.news-article{
  padding:95px 0 52px;
}
.art-meta{
  display:flex;
  gap:25px;
  align-items:center;
  margin-top:8px;
}
.art-title{
  margin: 18px 0 33px;
  font-size: 34px;
  line-height:1.5;font-weight:900;
}
.news-detail-page .news-cat{padding:6px 10px;}

.news-article-txt{
  line-height:2.1;
  margin:16px 0 40px;
}
.news-article-txt-02{
  margin: 10px 0 0 0;
  padding: 0;
  color:#595959;
  font-size: 14px;
  font-weight: 300;
  text-align: right;
}
.art-link a{
  word-break:break-all;
  color:#000088;
  text-decoration:underline;
}
.art-link a:hover{
  word-break:break-all;
  color:#000088;
  text-decoration:none;
  opacity: 1;
}
.news-article-img{
  margin: 60px 0;
  text-align: right;
}

.news-article h2{
  margin:28px 0 30px;
  padding-left:12px;
  border-left:4px solid #000088;
  font-size:26px;
  line-height: 1.2;
  font-weight:900;
}
.news-article h3{
  margin:20px 0 15px;
  font-size:20px;
  font-weight:800;
}
.news-btn01{
  height: 60px;
}


/* ====== RWD ====== */
@media (max-width: 960px){
  .news-item a{grid-template-columns:120px 100px 1fr;}
}
@media (max-width: 720px){
  .sel01{
    width: 120px;
  }
  .sel02{
    width: 150px;
  }

  .art-title{
    font-size: 26px;
  }
  .news-article h2 {
    font-size: 22px;
  }
  .news-article h3 {
    font-size: 18px;
  }
  .news-hero__ph{height:180px;}
  .news-item a{grid-template-columns:1fr;gap:6px;padding:16px 0;}
  .news-date{order:1;}
  .news-cat{
    order:2;width:max-content;
    min-width: 150px;
  
  }
  .news-ttl{order:3;}
  .news-ex{order:4;}
  .news-filter{
    padding:80px 0 0;
  }
  .news-list-sec{
    padding:45px 0 40px;
  }
  .news-article-img{
    margin: 30px 0;
    text-align: right;
  }
  .news-article-txt{
    margin:16px 0 20px;
  }
}

