/* =========================================================
  NEWS DETAIL (news/[id])  - Topの世界観に寄せる
========================================================= */
.public-main.news-detail {
  overflow-x: hidden;
  margin: 5vw auto;
}

/* ===== HERO STRIP ===== */
.newsd-hero {
  position: relative;
  padding-top: 10vw; /* fixed header 分 */
  padding-bottom: 3vw;
  background: #fff;
}

.newsd-hero__inner {
  width: 90vw;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2vw;
}

.newsd-hero__left {
  display: flex;
  flex-direction: column;
  gap: 0.9vw;
  align-items: flex-start;
}

.newsd-hero__right {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.newsd-hero__kicker {
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 3vw;
  line-height: 1;
  position: relative;
  padding-bottom: 1vw;
}
.newsd-hero__kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18vw;
  height: 3px;
  background: linear-gradient(to right, #e8301e 0 35%, #159cde 35% 100%);
}

/* 「NEWS の下」に来る back */
.newsd-hero__back {
  margin-top: 3vw;
  font-weight: 900;
  border-bottom: 2px solid #333;
  padding-bottom: 0.2vw;
  line-height: 1.2;
}

/* ===== LAYOUT ===== */
.newsd {
  position: relative;
  margin-left: 10vw; /* トップの news-wrap に寄せる */
  width: 90vw;
  background: #e8301e; /* 赤の帯 */
  border-radius: 20px 0 0 20px;
  padding: 4vw 0;
}

.newsd__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 26vw;
  gap: 2.5vw;
  padding: 0 2.5vw 0 5vw;
}

/* ===== MAIN CARD ===== */
.newsd-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.newsd-thumb img {
  width: 100%;
  height: 22vw;
  object-fit: cover;
  display: block;
}

.newsd-head {
  padding: 2.5vw;
}

.newsd-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5vw;
  flex-wrap: wrap;
}

.newsd-date {
  font-weight: 800;
  font-size: 0.95vw;
}

.newsd-tags {
  display: flex;
  gap: 0.6vw;
  flex-wrap: wrap;
}

.newsd-tag {
  display: inline-block;
  padding: 0.25vw 1vw;
  border-radius: 999px;
  background: #159cde;
  color: #fff;
  font-weight: 800;
  font-size: 0.85vw;
}

.newsd-title {
  margin-top: 1.2vw;
  font-size: 2.2vw;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.newsd-lead {
  margin-top: 1vw;
  font-weight: bold;
  color: #333;
  opacity: 0.9;
  line-height: 1.8;
  font-size: 1.05vw;
  border-left: 6px solid #e8301e;
  padding-left: 1.2vw;
}

/* ===== BODY ===== */
.newsd-body {
  margin-top: 2vw;
  background: #fff;
  border-radius: 20px;
  padding: 2.5vw;
}

.newsd-content {
  /* 「読み物」はvw固定だと小さすぎるので clamp */
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.95;
  letter-spacing: 0.02em;
}

/* sanitize したHTMLの見た目を整える */
.newsd-content p {
  margin: 0 0 1.2em;
}
.newsd-content h2 {
  margin: 1.8em 0 0.8em;
  font-size: 1.6em;
  font-weight: 900;
  border-left: 8px solid #159cde;
  padding-left: 0.7em;
}
.newsd-content h3 {
  margin: 1.4em 0 0.6em;
  font-size: 1.25em;
  font-weight: 900;
}
.newsd-content ul,
.newsd-content ol {
  padding-left: 1.4em;
  margin: 0 0 1.2em;
}
.newsd-content a {
  font-weight: 800;
  border-bottom: 2px solid #159cde;
}
.newsd-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 1.2em auto;
}

/* ===== PAGER ===== */
.newsd-pager {
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1vw;
}

.newsd-pager__right {
  margin-left: auto;
}

.newsd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  border-radius: 8px;
  padding: 0.9vw 1.8vw;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  user-select: none;
}
.newsd-btn:hover {
  transform: translateY(-2px);
}
.newsd-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  transform: none;
}

.newsd-btn--primary {
  background: #e8301e;
  color: #fff;
}
.newsd-btn--outline {
  background: #fff;
  color: #333;
  border: 2px solid #159cde;
}

/* ===== ASIDE ===== */
.newsd-aside {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.newsd-asideCard {
  background: #fff;
  border-radius: 20px;
  padding: 2vw;
}

.newsd-asideCard.is-soft {
  background: rgba(255, 255, 255, 0.92);
}

.newsd-asideKicker {
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #e8301e;
  margin-bottom: 0.6vw;
}

.newsd-asideTitle {
  font-weight: 900;
  font-size: 1.35vw;
  line-height: 1.4;
}

.newsd-asideText {
  margin-top: 1vw;
  line-height: 1.9;
  font-weight: bold;
  opacity: 0.9;
}

.newsd-asideBtns {
  margin-top: 1.4vw;
  display: flex;
  gap: 0.8vw;
  flex-wrap: wrap;
}

.newsd-miniTitle {
  font-weight: 900;
  margin-bottom: 1vw;
  border-left: 6px solid #e8301e;
  padding-left: 0.8vw;
}

.newsd-links {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  font-weight: 900;
}
.newsd-links a {
  border-bottom: 2px solid #333;
  padding-bottom: 0.2vw;
}

/* ===== MOBILE ===== */
@media screen and (max-width: 767px) {
  /* --- HERO --- */
  .public-main.news-detail {
    margin: 15vw auto;
  }

  .newsd-hero {
    padding-top: 22vw;
    padding-bottom: 6vw;
  }

  .newsd-hero__inner {
    width: 92vw;
    flex-direction: column;
    align-items: stretch;
    gap: 5vw;
  }

  .newsd-hero__kicker {
    font-size: clamp(34px, 10.5vw, 44px);
    padding-bottom: 3vw;
  }
  .newsd-hero__kicker::after {
    width: 56vw;
  }

  .newsd-hero__left {
    gap: 3vw;
  }

  .newsd-hero__back {
    margin-top: 5vw;
    font-size: clamp(16px, 4.4vw, 18px);
    padding-bottom: 1vw;
  }

  .newsd-hero__right {
    display: none;
  }

  /* CTA（予約・お問い合わせ）を押しやすく・文字も大きく */
  .newsd-hero__right .newsd-btn {
    width: 100%;
    justify-content: center;
    font-size: clamp(16px, 4.6vw, 18px); /* ← 予約・お問い合わせボタン */
    padding: 4.2vw 6vw;
    border-radius: 12px;
  }

  /* --- RED STRIP / LAYOUT --- */
  .newsd {
    margin-left: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
    padding: 7vw 0 12vw;
  }

  .newsd__inner {
    grid-template-columns: 1fr;
    padding: 0 5vw;
    gap: 9vw;
  }

  /* --- CARD --- */
  .newsd-thumb img {
    height: 52vw;
  }

  .newsd-head {
    padding: 6.5vw;
  }

  .newsd-meta {
    gap: 3vw;
  }

  .newsd-date {
    font-size: clamp(14px, 3.8vw, 16px);
  }

  .newsd-tag {
    font-size: clamp(13px, 3.6vw, 15px);
    padding: 1.1vw 4vw;
  }

  .newsd-title {
    margin-top: 4vw;
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.25;
  }

  .newsd-lead {
    margin-top: 4vw;
    font-size: clamp(15px, 4.2vw, 18px);
    padding-left: 4.5vw;
    border-left-width: 5px;
  }

  /* --- BODY --- */
  .newsd-body {
    padding: 6.5vw;
    border-radius: 20px;
  }

  /* 本文：最低16px保証（読み物は小さいと辛い） */
  .newsd-content {
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.95;
  }

  .newsd-content h2 {
    font-size: 1.25em; /* 本文基準で自然に拡大 */
  }
  .newsd-content h3 {
    font-size: 1.1em;
  }

  /* --- PAGER --- */
  .newsd-pager {
    flex-direction: column;
    align-items: stretch;
    gap: 3.5vw;
  }

  .newsd-pager__right {
    margin-left: 0;
  }

  /* 前の記事 / 次の記事ボタン：文字しっかり */
  .newsd-pager .newsd-btn {
    width: 100%;
    justify-content: center;
    font-size: clamp(16px, 4.6vw, 18px); /* ← 前/次ボタン */
    padding: 4.2vw 6vw;
    border-radius: 12px;
  }

  /* --- ASIDE --- */
  .newsd-aside {
    gap: 6vw;
  }

  .newsd-asideCard {
    padding: 6.5vw;
  }

  /* 「初めての方へ」(kicker) */
  .newsd-asideKicker {
    font-size: clamp(14px, 3.8vw, 16px); /* ← 初めての方へ */
    margin-bottom: 2.5vw;
  }

  .newsd-asideTitle {
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.35;
  }

  .newsd-asideText {
    font-size: clamp(15px, 4.1vw, 18px);
    line-height: 1.9;
  }

  .newsd-asideBtns {
    gap: 3vw;
  }

  /* 「メニュー・料金を見る」「予約・お問い合わせ」：文字しっかり */
  .newsd-asideBtns .newsd-btn {
    width: 100%;
    justify-content: center;
    font-size: clamp(16px, 4.6vw, 18px); /* ← メニュー・料金 / 予約お問い合わせ */
    padding: 4.2vw 6vw;
    border-radius: 12px;
  }

  /* 関連導線（関連記事全部相当のリンク群） */
  .newsd-miniTitle {
    font-size: clamp(16px, 4.2vw, 18px); /* ← 関連導線 */
    margin-bottom: 3vw;
  }

  .newsd-links {
    gap: 4vw;
  }

  .newsd-links a {
    font-size: clamp(16px, 4.4vw, 18px); /* ← 関連リンク全部 */
    padding-bottom: 1vw;
  }
}
