/* =======================================
共通
======================================== */
.home.wrapper::before{
  content:"";
  position: fixed;
  inset: 0;
  background: url(../images/top/fixed_bg.jpg) center / cover no-repeat;
  z-index:-1;
}

/* SPだけ：拡大させない */
@media (max-width: 768px){
  .home.wrapper::before{
    background-size: cover;      /* ←全体を優先 */
    background-position: center;  /* 必要なら center top とかに */
    background-color: #fff;       /* 余白が出るなら下地色 */
  }
}

.sec__jp {
  padding-top: 30px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: .1em;
  font-weight: 700;
  color: #4276ba;
  line-height: 1.3;
}

.top-news .sec__jp {
  font-size: 24px;
  padding-top: 20px;
}

.sec__en {
  font-size: 88px;
  font-weight: 700;
  display: table;
  padding-bottom: 40px;
  line-height: 1;
  background: linear-gradient(90deg, #4276ba 0%, #6dd1e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-family: "Cinzel", serif;
}

.business-area .sec__en {
  margin: 0 auto;
}

.business-area .sec__line {
  margin: 0 auto;
}

.top-vehicles .sec__en {
  margin: 0 auto;
}

.top-news .sec__en {
  padding-bottom: 0;
  font-size: 72px;
}

.sec__line {
  display: block;
  width: 150px;
  height: 1px;
  background: #4276ba;
}

.top-vehicles .sec__line,
.business-area .sec__line {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 1px;
  background: #4276ba;
}


.view-more {
  display: flex;
  /* inline-flex → flex */
  justify-content: center;
  margin: 50px auto 0;
  width: fit-content;
  /* ← これ重要（中身幅だけ） */
  align-items: center;
  gap: 22px;
  text-decoration: none;
}

/* テキスト */
.view-more__text {
  font-family: "Cinzel", serif;
  font-size: 20px;
  font-weight: 700;
  color: #4276ba;
  /* 見た目に合わせて調整 */
}

/* 青丸 */
.view-more__circle {
  width: 80px;
  height: 80px;
  background: #4276ba;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.7s;
}

/* 矢印画像 */
.view-more__circle img {
  width: 26px;
  height: auto;
  display: block;
  transition: 0.7s;
}

/* ホバー演出（任意） */
.view-more:hover .view-more__circle {
  background: #6dd1e7;
}

.view-more:hover .view-more__circle img {
  transform: translateX(4px);
}

.top-vehicles .view-more {
  margin: 50px 0 0;
}

@media (max-width: 1280px) {
  .sec__en {
    font-size: 80px;
  }

  .top-news .sec__en {
    font-size: 64px;
  }

}

@media (max-width: 991px) {
  .sec__jp {
    font-size: 35px;
  }

  .more-btn {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .sec__en {
    font-size: 65px;
  }

  .view-more__text {
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 700;
    color: #4276ba;
  }

  .view-more__circle {
    width: 60px;
    height: 60px;
    background: #4276ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
  }

  .view-more__circle img {
    width: 18px;
  }


}

@media (max-width: 480px) {
  .sec-ttl-box .sec__en {
    font-size: 45px;
    padding-bottom: 30px;
  }

  .top-news .sec-ttl-box .sec__en {
    padding-bottom: 10px;
  }

  .sec__jp {
    font-size: 25px;
  }

  .top-news .sec__jp {
    padding-top: 0;
  }

  .more-btn {
    background: linear-gradient(90deg, #fd3d11, #fd6f11);
    color: #fff;
    padding: 20px 30px;
  }
}

/* =======================================
メインビジュアル
======================================== */

.mv {
  background-color: #fff;
  position: relative;
  padding-top: 100px;
  padding-left: 320px;
}

.mv__media img {
  width: 100%;
  height: 840px;
  object-fit: cover;
  object-position: right center;
}

/* 左だけ白グラデ */
.mv__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0) 70%);
}

.mv__shape {
  position: absolute;
  left: 20px;
  width: 650px;
  bottom: -100px;
  z-index: 2;
}

.mv__shape img {
  width: 100%;
}


.mv-text__inner {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 2;
}

/* 共通：カーテンの器 */
.js-reveal {
  position: relative;
  overflow: hidden;
}

/* ===== タイトル ===== */
.mv__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 15px 0 15px 30px;
  display: inline-block;
  /* タイトルはテキスト幅 */
  background: transparent;
  /* 白はbgが担当 */
}

.mv__title-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: linear-gradient(90deg, #4276ba 0%, #6dd1e7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ===== リード（縦並び／白箱はテキスト幅） ===== */
.mv__lead {
  display: block;
  /* ←横並び防止 */
  padding: 0;
  background: transparent;
}

.mv__lead-text {
  display: inline-block;
  /* ←白背景を文字幅にフィット */
  position: relative;
  /* ←bgの基準 */
  overflow: hidden;
  /* ←bgを文字幅で切る */
  padding: 5px 40px;
  color: #191970;
  font-size: 20px;
  font-weight: 700;
  z-index: 1;
}

.mv-text__inner {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 2;
}

/* カーテンの器（タイトル/リード共通） */
.js-reveal {
  position: relative;
  overflow: hidden;
  /* ←ここで切る */
}

/* タイトルは文字幅 */
.mv__title {
  display: inline-block;
  background: transparent;
}

/* リードは縦並び＋白箱はテキスト幅 */
.mv__lead {
  background: transparent;
  padding: 0;
  font-size: 0;
}

.mv__lead-text {
  display: inline-block;
  /* ←白背景を文字幅に */
  position: relative;
  z-index: 1;
  padding: 5px 40px;
  color: #191970;
  font-size: 20px;
  font-weight: 700;
}

/* カーテン */
.mv__bg {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 0;
}

/* 文字は前 */
.mv__title-text,
.mv__lead-text {
  position: relative;
  z-index: 1;
}


.mv-text__inner {
  position: absolute;
  bottom: 100px;
  left: 0;
  z-index: 2;
}

/* カーテンの器（タイトル/リード共通） */
.js-reveal {
  position: relative;
  overflow: hidden;
  /* ←ここで切る */
}

/* タイトルは文字幅 */
.mv__title {
  display: inline-block;
  background: transparent;
}

.mv__lead-txt {
  display: inline-block;
  /* ←白背景を文字幅に */
  position: relative;
  z-index: 1;
  padding: 5px 40px;
  color: #191970;
  font-size: 20px;
  font-weight: 700;
}

/* カーテン */
.mv__bg {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 0;
}

/* 文字は前 */
.mv__title-text,
.mv__lead-text {
  position: relative;
  z-index: 1;
}


/* “白箱の幅”はこの箱で決める：fit-content */
.mv__lead-box {
  display: inline-block;
  /* ←ここがフィットの要 */
  position: relative;
  margin-top: 10px;
  overflow: hidden;
}

/* 文字 */
.mv__lead-txt {
  position: relative;
  z-index: 1;
  display: inline-block;
  line-height: 1.4;
}

/* 白カーテン */
.mv__lead-box .mv__bg {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 0;
}

.mv__title {
  display: inline-block;
  vertical-align: top;
  /* ← これ追加 */
  line-height: 1;
}


@media (max-width: 1280px) {
  .mv__title {
    font-size: 66px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 15px 0 15px 30px;
    display: inline-block;
  }

  .mv__media img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: right center;
  }

  .mv__shape {
    position: absolute;
    left: 20px;
    width: 550px;
    bottom: -100px;
    z-index: 2;
  }

  .mv {
    background-color: #fff;
    position: relative;
    padding-top: 100px;
    padding-left: 260px;
  }
}

@media (max-width: 991px) {
  .mv__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 10px 0 10px 30px;
    display: inline-block;
  }


}

@media(max-width:768px) {

  .mv {
    padding-top: 70px;
  }

  .mv {
    background-color: #fff;
    position: relative;
    padding-top: 80px;
    padding-left: 120px;
  }

  .mv__overlay {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%);
  }

  .mv__shape {
    top: auto;
    bottom: -5%;
    transform: none;
    width: 80%;
    opacity: .7;
  }

  .mv__title {
    line-height: 1.3;
    font-size: 33px;
  }

  .mv__title {
    margin-right: 15px;
    padding: 10px 0 10px 15px;
  }

  .mv__lead-txt {
      display: inline-block;
      position: relative;
      z-index: 1;
      padding: 5px 20px;
      color: #191970;
      font-size: 20px;
      font-weight: 700;
  }

  .mv__lead {
    margin-right: 15px;
  }

  .mv__media img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: right center;
  }

  .mv__shape {
    position: absolute;
    left: 20px;
    width: 400px;
    bottom: -100px;
    z-index: 2;
  }

  .mv-text__inner {
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 2;
    margin: 0 auto;
  }
}

@media(max-width:480px) {
  .mv-text__inner {
    position: absolute;
    bottom: auto;
    top: 140px;
    left: 0;
    z-index: 2;
    padding-right: 15px;
    margin: 0 auto;
  }

  .mv {
    background-color: #fff;
    position: relative;
    padding-left: 40px;
  }

  .mv__media img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: right center;
  }

  .mv__shape {
    position: absolute;
    left: 10px;
    width: 270px;
    bottom: -60px;
    z-index: 2;
  }

  .mv__title {
    margin-right: 0;
    line-height: 1.3;
    font-size: 28px;
    letter-spacing: 0;
  }

  .mv__lead {
    width: 100%;
    margin-right: 0;
    letter-spacing: 0;
  }

  .mv__lead-txt {
      font-size: 18px;
  }

}

/* =========================
  ABOUT US
========================= */
.aboutus {
  margin-bottom: 600px;
  padding-top: 290px;
  padding-bottom: 477px;
  position: relative;
  background: #fff;
  overflow: visible;
  z-index: ;
  /* ←ここだけ直す */
}

.aboutus .container {
  position: relative;
  z-index: 2;
}

.aboutus .about-bg {
  position: absolute;
  bottom:0;
  width:100%;
  z-index: 1;
  height: 1000px;
}

.aboutus .about-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.aboutus__image {
  position: relative;
  z-index: 2;
}

/* うっすら背景（画像なしでそれっぽく） */
.aboutus::before {
  content: "";
  position: absolute;
  inset: -80px;
  pointer-events: none;
  opacity: .25;
  background:
    repeating-linear-gradient(165deg,
      rgba(0, 0, 0, .035) 0 1px,
      transparent 1px 18px);
}


/* テキスト */
.aboutus__text {
  font-size: 14px;
  line-height: 2.2;
  color: #222;
}

.aboutus__text p {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.aboutus {
  position: relative;
  background: #fff;
}

/* 画像：常に下（被り判定を気にしない） */
.aboutus__image {
  position: relative;
  z-index: 1;
  padding-right: 205px;
}

@media (max-width: 1450px) {
  .aboutus__image {
    position: relative;
    z-index: 1;
    padding-right: 35px;
  }
}

/* PC：画像を左端に固定＆高さ固定 */
@media (min-width: 992px) {
  .aboutus__image {
    position: absolute;
    left: 0;
    bottom: 240px;
    /* あなたのpadding-topに合わせて */
    width: 50vw;
    /* 左半分に収める（右に食い込まない） */
    height: 450px;
    /* ★高さ固定：変わらない */
    z-index: 1;
  }

  .aboutus__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* 高さ固定ならcoverが自然 */
    object-position: left center;
  }
}

@media (max-width: 991px) {
  .aboutus {
    margin-bottom: 600px;
    padding-top: 220px;
    padding-bottom: 100px;
    position: relative;
    background: #fff;
    overflow: visible;
  }

  .aboutus__image {
    margin-top: 30px;
    position: relative
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }

  .aboutus__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .aboutus__text {
    margin-top: 50px;
  }

  .aboutus__text p {
    margin-bottom: 18px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .aboutus .about-bg {
    position: absolute;
    bottom:0;
    width:100%;
    z-index: 1;
    height: 800px;
  }
}

@media (max-width: 480px) {
  .aboutus {
    margin-bottom: 400px;
  }

  .aboutus {
    padding-top: 100px;
  }

  .aboutus__text p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .aboutus__image {
    position: relative;
    z-index: 1;
    padding-right: 15px;
  }
}

/* 写真ブロック */
.truck-photo {
  position: relative;
  z-index: 0;
  margin-bottom: -20vh;
  /* ← これで次が確実に上へ被さる */
}

.truck-photo__sticky {
  position: sticky;
  top: 0;
  height: 600px;
  overflow: hidden;

  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.truck-photo__sticky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none !important;
}

/* 次のブロック（タグ不問）を上に乗せる */
.truck-photo+* {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding-top: 80px;
  /* 角丸の“板”の上余白 */
}

/* SP */
@media (max-width: 768px) {
  .truck-photo {
    margin-bottom: -10vh;
  }

  .truck-photo__sticky {
    height: 52vh;
  }

  .truck-photo+* {
    border-radius: 18px 18px 0 0;
    padding-top: 40px;
  }
}

/* =========================
  BUSINESS
========================= */

.business-area {
  background-size: cover;
  background-position: bottom center;
  background-image: url('../images/top/business-obj.png');
  background-color: #f4f4f4;
  padding: 200px 0;
  position: relative;
}

.business-area .text {
  font-size: 20px;
  line-height: 2;
  margin-top: 60px;
  text-align: center;
}

@media (max-width: 1450px) {
  .business-area {
    background-size: contain;
    background-position: bottom center;
    background-image: url('../images/top/business-obj.png');
    background-repeat: no-repeat;
    background-color: #f4f4f4;
    padding: 150px 0;
    position: relative;
  }
}

@media (max-width: 1150px) {
  .business-area {
    background-size: contain;
    background-position: bottom center;
    background-image: url('../images/top/business-obj.png');
    background-repeat: no-repeat;
    background-color: #f4f4f4;
    padding: 120px 0;
    position: relative;
  }
}

@media (max-width: 991px) {
  .business-area {
    background-size: contain;
    background-position: bottom center;
    background-image: url('../images/top/business-obj.png');
    background-repeat: no-repeat;
    background-color: #f4f4f4;
    padding: 100px 0;
    position: relative;
  }

  .business-area .text {
    font-size: 18px;
    line-height: 2;
    margin-top: 60px;
    text-align: center;
  }

}

@media (max-width: 700px) {
  .business-area .text {
    text-align: left;
  }
  .business-area .text .pc-700 {
    display: none;
  }
}

@media (max-width: 480px) {
  .business-area {
    padding: 80px 0;
  }

  .business-area .text {
    font-size: 16px;
    line-height: 2;
    margin-top: 40px;
  }

  .business-area .text br.pc {
    display: none;
  }
}

/* =========================
  VEHICLES
========================= */

.top-vehicles {
  padding: 200px 0 250px;
  background: #fff;
}

/* 写真＋パネル */
.vehicle-hero {
  margin-top: 45px;
  position: relative;
}

/* 写真：左右にはみ出し */
.vehicle-hero__media {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.vehicle-hero__media img {
  width: 100%;
  object-fit: cover;
  display: block;
}


/* 説明パネル：画像に被せる */
.vehicle-hero__panel {
  max-width: 800px;
  width: 100%;
  margin: -100px auto 0;
  background: #fff;
  padding: 50px 0 0 60px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.1em;
  margin-right: 0;
  margin-left: auto;
}

.vehicle-hero__ttl {
  margin: 0 0 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: .1em;
  color: #4276ba;
  font-family: "Shippori Mincho", serif;
}

.vehicle-hero__txt {
  font-size: 20px;
  line-height: 2;
  letter-spacing: .1em;
}

@media (max-width: 1280px) {

  .vehicle-hero__media img {
    width: 100%;
    object-fit: cover;
    display: block;
    height: 500px;
  }

  .top-vehicles {
    padding: 150px 0 200px;
    background: #fff;
  }
}

@media (max-width: 991px) {
  .vehicle-hero__panel {
    max-width: 600px;
    width: 100%;
    margin: -100px auto 0;
    background: #fff;
    padding: 50px 0 0 60px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.1em;
    margin-right: 0;
    margin-left: auto;
  }

  .vehicle-hero__txt {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .top-vehicles {
    padding: 100px 0 150px;
    background: #fff;
  }

  .vehicle-hero__panel {
    max-width: 480px;
    width: 100%;
    margin: -100px auto 0;
    background: #fff;
    padding: 40px 0 0 40px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.1em;
    margin-right: 0;
    margin-left: auto;
  }

  .vehicle-hero__ttl {
    margin: 0 0 20px;
    font-size: 34px;
    font-weight: 700;
    line-height: 2;
    letter-spacing: .1em;
    color: #4276ba;
    font-family: "Shippori Mincho", serif;
  }

}

@media (max-width: 580px) {
  .top-vehicles {
    padding: 80px 0 100px;
    background: #fff;
  }

  .vehicle-hero__panel {
    max-width: 400px;
    width: 90%;
    margin: -100px 15px 0;
    background: #fff;
    padding: 30px 0 0 30px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.1em;
    margin-right: 0;
    margin-left: auto;
  }

  .vehicle-hero__ttl {
    font-size: 30px;
  }

  .vehicle-hero__txt {
    font-size: 16px;
  }

  .top-vehicles .view-more {
    margin: 30px 0 0;
  }

}

/* =========================
  NEWS
========================= */

.top-news {
  padding: 0 0 200px;
  background: #fff;
}


.news-list {
  list-style: none;
  margin: 0;
  height: 420px;
  overflow-y: scroll;
  padding: 0;
}

.news-item {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 27px;
  padding-bottom: 22px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  transition: 0.7s;
}

.news-item a:hover .news-item__main {
  opacity: 0.6;
}

.news-date {
  font-size: 12px;
  letter-spacing: .12em;
  color: #666;
}

.news-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  letter-spacing: .10em;
  line-height: 1.8;
}

.news-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #4276ba;
  display: grid;
  place-items: center;
  text-decoration: none;
  justify-self: end;
}


.news-arrow img {
  width: 16px;
  height: auto;
  display: block;
}

/* リスト */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, .12);
}

.news-item__main {
  width: 100%;
  transition: 0.7s;
  max-width: calc(100% - 66px);
}

.news-date {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .10em;
  white-space: nowrap;
}

.news-title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .10em;
  text-decoration: none;
  line-height: 1.6;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-excerpt {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: 500;
  max-width: 820px;
  width: 100%;
  letter-spacing: 0.1em;
  line-height: 2;

  /* 3行省略（不要なら消してOK） */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #4276ba;
  display: grid;
  place-items: center;
  text-decoration: none;
  justify-self: end;
  transition: 0.7s;
}

.news-item a:hover .news-arrow {
  background: #6dd1e7;
}

.news-arrow img {
  width: 20px;
  height: auto;
  display: block;
  transition: 0.7s;
}

/* hover（任意） */
.news-item:hover .news-arrow img {
  transform: translateX(4px);
}

/* ===== SP ===== */
@media (max-width: 991px) {
  .top-news {
    padding: 0 0 150px;
  }

  .top-news__body {
    margin-top: 30px;
  }

  .news-item {
    grid-template-columns: 1fr 48px;
    gap: 14px;
  }

  .news-item__meta {
    grid-template-columns: 110px 1fr;
    gap: 14px;
  }

  .news-title {
    white-space: normal;
    /* SPは折り返しでOKにするなら */
    overflow: visible;
    text-overflow: clip;
  }

  .news-arrow {
    width: 40px;
    height: 40px;
  }

  .news-item {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .top-news {
    padding: 0 0 100px;
  }

  .news-item {
    grid-template-columns: 1fr 48px;
    gap: 10px;
    padding: 20px 10px;
  }

  .news-date {
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .10em;
    white-space: nowrap;
  }

  .news-title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .10em;
    text-decoration: none;
    line-height: 1.6;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .news-excerpt {
    margin: 20px 0 0;
    font-size: 16px;
    font-weight: 500;
    max-width: 820px;
    width: 100%;
    letter-spacing: 0.1em;
    line-height: 2;

    /* 3行省略（不要なら消してOK） */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}