/* =========================
   News (YAMAZEN style)
========================= */

.news--yamazen{
  position: relative;
  padding: 64px 0;
}

.news--yamazen .container{
  width: min(1080px, 92vw);
  margin: 0 auto;
}

/* =========================
   Section Head（見出しセンター）
========================= */
.sec-head{
  text-align:center;
  margin: 0 0 26px;
}

.sec-en{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .28em;
  color: #1c4fd1;
}

.sec-ja{
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .04em;
  color:#111;
}

/* 下の細いグラデ線 */
.sec-line{
  display:block;
  width: 220px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(13,79,134,.35) 25%,
    rgba(13,79,134,.85) 50%,
    rgba(13,79,134,.35) 75%,
    transparent 100%
  );
  filter: blur(.2px);
  opacity: .9;
}

/* =========================
   List
========================= */
.news-y-list{
  list-style:none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0,0,0,.14);
  background: #fff;
}

.news-y-item{
  border-bottom: 1px solid rgba(0,0,0,.14);
}

.news-y-link{
  display:grid;
  grid-template-columns: 160px 150px 1fr auto auto;
  align-items:center;
  gap: 14px;
  padding: 18px 8px;
  text-decoration:none;
  color:#111;
}

.news-y-date{
  font-weight: 800;
  color: rgba(0,0,0,.6);
  white-space: nowrap;
}

/* カテゴリタグ（丸枠） */
.news-y-tag{
  justify-self:start;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  border: 2px solid #d11;
  color:#d11;
  font-weight: 900;
  letter-spacing: .04em;
  white-space: nowrap;
  font-size: 10px;
}

/* タイトル */
.news-y-title{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
}

/* NEW */
.news-y-new{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 22px;
  padding: 0 10px;
  border-radius: 6px;
  background:#ff6a4a;
  color:#fff;
  font-size: 12px;
  font-weight: 900;
}

/* 右矢印 */
.news-y-arrow{
  font-size: 28px;
  color: rgba(0,0,0,.35);
  transform: translateY(-1px);
}

/* hover */
.news-y-link:hover{
  background: rgba(0,0,0,.02);
}
.news-y-link:hover .news-y-arrow{
  color: rgba(0,0,0,.55);
}

/* 空表示 */
.news-y-empty{
  padding: 18px 8px;
  color: rgba(0,0,0,.6);
  font-weight: 700;
}

/* =========================
   VIEW MORE（下部）
========================= */
.news-more-wrap{
  margin-top: 26px;
  display:flex;
  justify-content:flex-end;
}

.news-more-link{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  color:#111;
  white-space: nowrap;
}

.news-more-line{
  width: 46px;
  height: 2px;
  background:#111;
  opacity:.7;
  transform: translateY(1px);
}

.news-more-link:hover{
  opacity:.75;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px){
  .news-y-link{
    grid-template-columns: 140px 130px 1fr auto;
  }
  .news-y-new{ display:none; }
  .sec-ja{ font-size: 20px; }
}

@media (max-width: 600px){
  .sec-en{ font-size: 15px; letter-spacing: .24em; }
  .sec-ja{ font-size: 20px; }
  .sec-line{ width: 170px; }

  .news-y-link{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 6px;
  }

  .news-y-date{ order:1; }
  .news-y-tag{ order:2; width: fit-content; }
  .news-y-title{ order:3; font-size: 16px; }
  .news-y-arrow{ display:none; }

  .news-more-wrap{
    justify-content:center;
  }
}

/* =========================
   NEWS Heading (Unified)
   - BUSINESS / ACCESS / CONTACT と同じ
========================= */

.news--yamazen .sec-head{
  text-align: center;
  margin: 0 auto 60px;
  width: min(980px, 92vw);
}

/* 青英字 */
.news--yamazen .sec-en{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .22em;
  color: #00467F;
}

/* 太い日本語 */
.news--yamazen .sec-ja{
  margin: 10px 0 0;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .04em;
  color:#111;
  line-height: 1.2;
}

/* 長い黄色ライン（グラデは捨てる） */
.news--yamazen .sec-line{
  display:block;
  height: 4px;
  width: clamp(220px, 56vw, 760px);
  margin: 14px auto 0;
  border-radius: 999px;
  background: #ffe600;
  filter: none;
  opacity: 1;
}

/* responsive */
@media (max-width: 900px){
  .news--yamazen .sec-ja{ font-size: 28px; }
}
@media (max-width: 600px){
  .news--yamazen .sec-en{ font-size: 13px; }
  .news--yamazen .sec-ja{ font-size: 26px; }
}
