@charset "UTF-8";

body.news-detail-page {
  margin: 0;
  background: #d7edf6;
  overflow-x: hidden;
}

.news-detail-page a {
  text-decoration: none;
}

.news-detail-main {
  width: 100%;
  min-height: 100vh;
  padding: 178px 0 88px;
  background: url("../img/lightblue-bg.jpg") center top / cover;
}

.news-detail-container {
  width: min(1040px, calc(100% - 28px));
  margin: 0 auto;
}

.news-detail-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.news-detail-star {
  width: clamp(62px, 6.25vw, 90px);
  height: auto;
}

.news-detail-subtitle {
  margin: 0;
  color: #9e6a41;
  text-align: center;
  font-family: "Baloo Tamma 2", sans-serif;
  font-size: clamp(28px, 2.222vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.news-detail-title {
  margin: 0;
  color: #6f380b;
  text-align: center;
  font-family: "Potta One", sans-serif;
  font-size: clamp(36px, 2.778vw, 40px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.news-detail-article {
  margin-top: 70px;
  padding: clamp(38px, 5vw, 60px) clamp(18px, 8.33vw, 120px) 40px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(87, 118, 131, 0.08);
}

.news-detail-entry-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-detail-category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(9em + 20px);
  padding: 3px 10px;
  border-radius: 2px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}


.news-detail-date {
  color: #8e5930;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.news-detail-headline {
  margin: 0;
  color: #6f380b;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(34px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.news-detail-content {
  margin-top: 44px;
}

.news-detail-actions {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.news-detail-back-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid #aa6f42;
  color: #7d4922;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.news-detail-back-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.74);
}

@media (max-width: 900px) {
  .news-detail-main {
    padding-top: 152px;
    padding-bottom: 66px;
  }

  .news-detail-article {
    padding: 26px 18px 30px;
    border-radius: 14px;
  }

  .news-detail-headline {
    font-size: clamp(26px, 6.2vw, 32px);
  }

  .news-detail-content {
    margin-top: 28px;
  }
}

.table-scroll {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .news-detail-main {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .news-detail-headline {
    font-size: clamp(22px, 5.5vw, 28px);
  }
}

.news-detail-editor ul {
    list-style: disc;
}
