@charset "UTF-8";
/* =====================
  MV
===================== */
.main .mv {
  background-image: url('/assets/image/news/news_mv.png');
}
/* =====================
  ニュースタイトル
===================== */
/* ==== H2タイトル ==== */
.news .h2-title {
  margin-top: 104px;
}
/* ==== 十字飾り ==== */
.cross {
  margin-top: 85px;
}
/* =====================
  ニュース一覧
===================== */
.news .inner {
  padding-bottom: 122px;
}
.news-wrapper {
  width: 1060px;
  margin-inline: auto;
}
.news-wrapper ul li {
  border-bottom: 1px solid var(--white);
}
.news-wrapper ul li a {
  display: flex;
  align-items: center;
}
.news-wrapper ul li .head {
  width: 120px;
  flex-shrink: 0;
  padding-inline: 1.4em;
  letter-spacing: 0.02em;
}
.news-wrapper ul li .body {
  display: inline-flex;
  align-items: center;
  height: inherit;
  padding-block: 38px;
  gap: 20px;
  letter-spacing: 0.02em;
}
.news-wrapper ul li .body::before {
  content: '';
  display: block;
  height: 1px;
  width: 55px;
  background: var(--navy);
  margin-inline: 20px;
}
/* ==== READ MORE ==== */
.news button {
  display: block;
  margin-inline: auto;
  margin-top: 63px;
}
.news .more {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/assets/image/common/arrow.png');
  transform: rotate(90deg);
  width: 54px;
  height: 46px;
  margin: auto;
}
.news button > span {
  text-align: center;
  font-family: var(--title);
  font-size: 15px;
  display: block;
  margin-top: 0.8em;
}
