/* ブログ・お知らせページ */

.news-page {
  background: #fff;
}

.news-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #fff;
}

.news-hero__leaf {
  position: absolute;
  top: 52px;
  left: 0;
  width: 130px;
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}

.news-hero__visual {
  position: absolute;
  inset: 0;
  background: url("a_imges/top.png") center right / cover;
}

.news-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.65);
  opacity: 0;
  pointer-events: none;
}

.news-hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 76px 34px;
}

.news-hero h1 {
  font-size: clamp(2.35rem, 5vw, 3.7rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.news-hero__lead {
  color: var(--green-dark);
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.news-hero__inner p:not(.news-hero__lead) {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 2.05;
  color: #44443e;
}

.news-categories {
  max-width: var(--max);
  margin: -38px auto 62px;
  padding: 0 34px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  min-height: 128px;
  padding: 28px 22px;
  display: grid;
  grid-template-columns: 76px 1fr 20px;
  gap: 18px;
  align-items: center;
  border: 1px solid #e2dbcf;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(57,54,42,0.06);
}

.category-card__icon {
  width: 72px;
  height: 72px;
  color: var(--green-dark);
}

.category-card__icon img,
.arrival-column h3 span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.category-card h2 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  white-space: nowrap;
}

.category-card p {
  font-family: var(--sans);
  font-size: 0.76rem;
  line-height: 1.75;
  color: #5c5b54;
}

.category-card > span {
  color: var(--gold);
  font-size: 1.3rem;
}

.new-arrivals,
.popular-contents {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 34px 58px;
}

.section-title-news {
  text-align: center;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 34px;
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.arrival-column {
  padding: 0 28px;
  border-right: 1px solid #e2ddd4;
}

.arrival-column:first-child {
  padding-left: 0;
}

.arrival-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.arrival-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.arrival-column h3 span {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.news-list-item {
  min-height: 64px;
  padding: 14px 4px;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 14px;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #e5ded2;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: #3f3f39;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.news-list-item time {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.news-list-item b {
  color: var(--gold);
  font-weight: 400;
  text-align: right;
  transition: transform 0.22s ease;
}

.news-list-item > span {
  line-height: 1.7;
}

a.news-list-item:hover {
  opacity: 1;
  color: var(--green-dark);
  background: #fafaf8;
  transform: translateX(3px);
}

.news-list-item:hover b {
  transform: translateX(4px);
}

.column-more {
  margin-top: 18px;
  padding-right: 4px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  color: var(--green-dark);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.column-more span {
  transition: transform 0.25s ease;
}

.column-more:hover {
  color: var(--gold-dark);
  transform: translateX(3px);
}

.column-more:hover span {
  transform: translateX(5px);
}

.column-more:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.popular-card {
  display: block;
  border: 1px solid #e2dbcf;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(57,54,42,0.06);
  overflow: hidden;
}

.popular-card__image {
  position: relative;
}

.popular-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.popular-card__image span {
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(57,54,42,0.12);
  transform: translateX(-50%);
}

.popular-card__image span svg {
  width: 34px;
  height: 34px;
}

.popular-card__image span img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.popular-card__body {
  position: relative;
  padding: 42px 24px 26px;
  text-align: center;
}

.popular-card__body h3 {
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 14px;
}

.popular-card__body p {
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.8;
  color: #5c5b54;
  text-align: left;
}

.popular-card__body b {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--gold);
  font-weight: 400;
}

.newsletter {
  max-width: var(--max);
  margin: 0 auto 54px;
  padding: 24px 34px;
  display: grid;
  grid-template-columns: 58px 1fr 420px;
  gap: 22px;
  align-items: center;
  background: #f7f8f5;
  border-radius: 6px;
}

.newsletter__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green-dark);
  border-radius: 50%;
}

.newsletter__icon svg {
  width: 34px;
  height: 34px;
}

.newsletter__text h2 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.newsletter__text p {
  font-family: var(--sans);
  font-size: 0.76rem;
  color: #5c5b54;
}

.newsletter__form {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
}

.newsletter__form input,
.newsletter__form button {
  min-height: 42px;
  border: 0;
  font-family: var(--sans);
  font-size: 0.82rem;
}

.newsletter__form input {
  padding: 0 16px;
  background: #fff;
}

.newsletter__form button {
  color: #fff;
  background: var(--green-dark);
  cursor: pointer;
}

/* =============================================
   記事詳細ページ
   ============================================= */

/* パンくずリスト */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 34px 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.74rem;
  color: #888;
}

.breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
  color: #bbb;
}

.breadcrumb a {
  color: var(--green-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* 詳細ページ全体 */
.detail-page {
  background: #fff;
}

/* 記事＋ページャーのラッパー */
.detail-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 38px 34px 58px;
}

/* 記事ヘッダー */
.detail-article__header {
  margin-bottom: 36px;
}

.detail-article__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

/* カテゴリバッジ */
.detail-article__category {
  display: inline-block;
  padding: 3px 14px;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 999px;
}

/* カテゴリ別の色分け */
.detail-article__category[data-key="information"] {
  background: var(--gold-dark);
}

.detail-article__category[data-key="movie"] {
  background: #4a6fa5;
}

.detail-article__date {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.04em;
}

.detail-article__title {
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  border-bottom: 2px solid #e8e3d9;
  padding-bottom: 20px;
}

/* サムネイル画像 */
.detail-article__thumbnail {
  margin-bottom: 34px;
  border-radius: 6px;
  overflow: hidden;
}

.detail-article__thumbnail img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}

/* 記事本文のタイポグラフィ */
.detail-article__body {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 2;
  color: #3f3f39;
}

.detail-article__body p {
  margin-bottom: 1.4em;
}

.detail-article__body h2 {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-left: 4px solid var(--green-dark);
  padding-left: 14px;
  margin: 2em 0 1em;
  line-height: 1.5;
}

.detail-article__body h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 1.8em 0 0.8em;
  color: var(--green-dark);
}

.detail-article__body ul,
.detail-article__body ol {
  padding-left: 1.6em;
  margin-bottom: 1.4em;
}

.detail-article__body li {
  margin-bottom: 0.5em;
}

.detail-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.4em 0;
}

/* 前後記事ナビゲーション */
.detail-pager {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  border-top: 1px solid #e8e3d9;
  padding-top: 32px;
  margin-top: 48px;
}

.detail-pager__prev,
.detail-pager__next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  text-decoration: none;
  padding: 16px 0;
}

.detail-pager__prev {
  align-items: flex-start;
}

.detail-pager__next {
  align-items: flex-end;
  text-align: right;
}

.detail-pager__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-pager__text {
  font-size: 0.82rem;
  color: #3f3f39;
  line-height: 1.55;
}

.detail-pager__prev:hover .detail-pager__text,
.detail-pager__next:hover .detail-pager__text {
  text-decoration: underline;
  text-decoration-color: var(--gold);
}

.detail-pager__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid #c9c3b6;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3f3f39;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.detail-pager__back:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

/* CTA */
.detail-cta {
  background: #f3f5f0;
  text-align: center;
  padding: 56px 34px;
}

.detail-cta p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: #5c5b54;
  margin-bottom: 22px;
  line-height: 1.9;
}

.detail-cta__btn {
  display: inline-block;
  padding: 14px 48px;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.detail-cta__btn:hover {
  opacity: 0.85;
}

@media (max-width: 980px) {
  .news-categories,
  .arrival-grid,
  .popular-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    grid-template-columns: 58px 1fr;
  }

  .newsletter__form {
    grid-column: 1 / -1;
  }

  .arrival-grid {
    gap: 34px;
  }

  .arrival-column,
  .arrival-column:first-child,
  .arrival-column:last-child {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid #e2ddd4;
  }

  .arrival-column:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  /* スマホ：TOP画像にテキスト可読用の白オーバーレイを表示 */
  .news-hero__overlay {
    opacity: 1;
  }

  .news-hero__inner,
  .news-categories,
  .new-arrivals,
  .popular-contents,
  .newsletter {
    padding-left: 20px;
    padding-right: 20px;
  }


  .category-card {
    grid-template-columns: 64px 1fr 18px;
    padding: 22px 18px;
  }

  .category-card__icon {
    width: 60px;
    height: 60px;
  }

  .news-list-item {
    grid-template-columns: 1fr 18px;
    gap: 4px 10px;
  }

  .news-list-item time,
  .news-list-item span {
    grid-column: 1 / 2;
  }

  .news-list-item b {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .newsletter {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter__icon {
    margin: 0 auto;
  }

  .newsletter__form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* 詳細ページ */
  .breadcrumb {
    padding: 14px 20px 0;
  }

  .detail-wrap {
    padding: 28px 20px 48px;
  }

  .detail-pager {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-pager__next {
    align-items: flex-start;
    text-align: left;
  }

  .detail-pager__back {
    width: 100%;
    text-align: center;
  }

  .detail-cta {
    padding: 44px 20px;
  }
}
