@charset "UTF-8";
.news-detail-fv {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 300px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.72) 100%), url("../images/news-fv.webp") center/cover no-repeat;
  color: #fff;
}

.news-detail-fv__inner,
.news-detail__inner {
  width: min(100% - 64px, 920px);
  margin-inline: auto;
}

.news-detail-fv__en {
  margin: 0 0 12px;
  color: #ff771d;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news-detail-fv__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.2;
}

.news-detail-fv__lead {
  margin: 18px 0 0;
  font-weight: 700;
}

.news-detail {
  padding: 64px 0 80px;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
  font-weight: 700;
}

.news-detail__meta span {
  min-width: 96px;
  padding: 5px 18px;
  border: 1px solid #ff771d;
  color: #ff771d;
  font-size: 13px;
  text-align: center;
}

.news-detail__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.45;
}

.news-detail__line {
  display: block;
  width: 64px;
  height: 4px;
  margin: 24px 0 24px;
  background: #ff771d;
}

.news-detail__image {
  margin-bottom: 36px;
  overflow: hidden;
  border-radius: 6px;
}

.news-detail__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.news-detail__content {
  font-size: 16px;
  line-height: 2;
}

.news-detail__content p {
  margin: 0 0 1.4em;
}

.news-detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  padding: 28px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.news-detail-nav__item a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
}

.news-detail-nav__item--next a {
  justify-content: flex-end;
  text-align: right;
}

.news-detail-nav__thumb {
  flex: 0 0 92px;
}

.news-detail-nav__thumb img {
  width: 92px;
  height: 58px;
  object-fit: cover;
}

.news-detail-nav__text em {
  display: block;
  margin-bottom: 4px;
  color: #777;
  font-size: 12px;
  font-style: normal;
}

.news-detail-nav__text strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-detail-nav i {
  color: #ff771d;
  font-size: 28px;
}

.news-related {
  margin-top: 56px;
}

.news-related__title {
  position: relative;
  margin: 0 0 24px;
  padding-left: 18px;
  font-size: 24px;
}

.news-related__title::before {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 4px;
  height: 1.2em;
  background: #ff771d;
}

.news-related__item {
  display: grid;
  grid-template-columns: 110px 90px 96px 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}

.news-related__thumb img {
  width: 110px;
  height: 70px;
  object-fit: cover;
}

.news-related__date {
  font-size: 14px;
}

.news-related__category {
  padding: 5px 14px;
  border: 1px solid #ff771d;
  color: #ff771d;
  font-size: 13px;
  text-align: center;
}

.news-related__post-title {
  font-weight: 700;
}

.news-related__item i {
  justify-self: end;
}

.news-related__button-wrap {
  margin-top: 40px;
  text-align: center;
}

.news-related__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 300px;
  padding: 18px 32px;
  border: 1px solid #ff771d;
  background: #fff;
  color: #ff771d;
  font-weight: 700;
  transition: background-color 0.32s cubic-bezier(0.22, 1, 0.36, 1), color 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-related__button i {
  transition: transform 0.28s ease;
}

.news-related__button:hover {
  background: #ff771d;
  color: #fff;
  border-color: #ff771d;
}

.news-related__button:hover i {
  transform: translateX(5px);
}

@media screen and (max-width: 767px) {
  .news-detail-fv__inner,
  .news-detail__inner {
    width: min(100% - 40px, 920px);
  }
  .news-detail {
    padding: 44px 0 64px;
  }
  .news-detail__title {
    font-size: clamp(20px, 5.4vw, 26px);
    line-height: 1.5;
  }
  .news-detail__meta {
    gap: 16px;
  }
  .news-detail__image img {
    aspect-ratio: auto;
  }
  .news-detail-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 44px;
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
  .news-detail-nav__item {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
  }
  .news-detail-nav__item--next {
    border-top: 1px solid #ddd;
  }
  .news-detail-nav__item a {
    display: grid;
    grid-template-columns: 24px 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: auto;
    padding: 12px;
    text-align: left;
  }
  .news-detail-nav__item--next a {
    grid-template-columns: minmax(0, 1fr) 72px 24px;
    justify-content: initial;
    text-align: right;
  }
  .news-detail-nav__thumb {
    flex: none;
  }
  .news-detail-nav__thumb img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 4px;
  }
  .news-detail-nav__text {
    min-width: 0;
  }
  .news-detail-nav__text em {
    font-size: 11px;
  }
  .news-detail-nav__text strong {
    font-size: 13px;
    line-height: 1.45;
    max-width: 100%;
  }
  .news-detail-nav i {
    font-size: 18px;
  }
  .news-related__item {
    grid-template-columns: 88px 1fr 20px;
    gap: 14px;
  }
  .news-related__thumb {
    grid-row: span 3;
  }
  .news-related__thumb img {
    width: 88px;
    height: 64px;
  }
  .news-related__date,
  .news-related__category {
    width: fit-content;
  }
  .news-related__item i {
    grid-column: 3;
    grid-row: 1/4;
  }
  /* 前の記事・次の記事 */
  .news-detail-nav__text strong {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }
  /* 関連記事 */
  .news-related__post-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.news-detail__signature {
  margin-top: 40px;
  text-align: right;
  line-height: 1.8;
}

.news-detail__signature-name {
  display: inline-block;
  margin-top: 8px;
  font-family: "Yuji Mai", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
}/*# sourceMappingURL=news-detail.css.map */