:root {
  --green: #4caf3d;
  --green-dark: #2f8b29;
  --brown: #4b2507;
  --cream: #f7f3ee;
  --text: #2d2d2d;
  --shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}


img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   hero
========================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0) 40%),
    linear-gradient(to bottom, #65bef6 0%, #8fd0f8 34%, #b8e8ff 66%, #d6f3ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/hero-bg.jpg") center bottom / cover no-repeat;
  opacity: 1;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 126px;
  background: var(--cream);
  border-radius: 48% 52% 0 0 / 55% 55% 0 0;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 24px 180px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 24px;
}

.hero-copy {
  max-width: 560px;
  margin-left: 10px;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--brown);
  text-shadow: 0 5px 0 rgba(255, 255, 255, 0.38);
}

@media (min-width: 821px) {
  .hero-title {
    white-space: nowrap;
  }
}

.hero-title .accent {
  color: var(--green);
}

.hero-lead {
  margin: 34px 0 0;
  font-size: clamp(1.65rem, 2.5vw, 3rem);
  line-height: 1.6;
  font-weight: 700;
  color: var(--brown);
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.28);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 250px;
  padding: 19px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover {
  background: #459d37;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: #214012;
  border: 2px solid rgba(76, 175, 61, 0.7);
}

.btn-secondary:hover {
  background: #fff;
}

/* =========================
   hero visual
========================= */
.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: visible;
}

.splash-effect {
  position: absolute;
  right: -10px;
  bottom: -62px;
  width: 500px;
  transform: translateX(-70px);
  z-index: 2;
  pointer-events: none;
  animation: splash-float 3.5s ease-in-out infinite;
}

.cow-wrap {
  position: absolute;
  right: 0;
  top: 14px;
  width: min(42vw, 520px);
  transform: translateX(-30px);
  transform-origin: 72% 58%;
  z-index: 3;
}

.cow {
  width: 100%;
  display: block;
  object-fit: contain;
}

.cow-floating {
  animation: cow-float 3.6s ease-in-out infinite;
  will-change: transform;
}

.cow-wrap::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 6%;
  bottom: -12px;
  height: 50px;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.10) 45%,
    rgba(0,0,0,0) 78%
  );
  filter: blur(10px);
  animation: shadow-float 3.6s ease-in-out infinite;
  z-index: -1;
}

/* animations */
@keyframes cow-float {
  0%, 100% {
    transform: translateX(-30px) translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateX(-30px) translateY(-10px) rotate(-1deg) scale(1.015);
  }
}

@keyframes splash-float {
  0%, 100% {
    transform: translateX(-70px) translateY(0);
  }
  50% {
    transform: translateX(-70px) translateY(-4px);
  }
}

@keyframes shadow-float {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.14;
  }
  50% {
    transform: scale(0.90);
    opacity: 0.10;
  }
}

@keyframes cow-float-md {
  0%, 100% {
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-8px) rotate(-1deg) scale(1.015);
  }
}

@keyframes splash-float-md {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* =========================
   lower section
========================= */
.section-area {
  position: relative;
  z-index: 5;
  margin-top: -80px;
  padding: 0 24px 60px;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text);
  background: var(--cream);
}

.section-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 34px;
  align-items: start;
}

.card {
  background: rgba(255,255,255,0.94);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px 28px;
}

.card h2 {
  margin: 0;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-list {
  display: grid;
  gap: 16px;
}

.notice-item {
  display: grid;
  grid-template-columns: 96px 84px 1fr;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid #e9e2da;
  font-size: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.tag-news { background: #dff1cb; color: #2f7c1a; }
.tag-entry { background: #ffe0dd; color: #d53e2f; }
.tag-report { background: #dcecff; color: #2865c7; }

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.card-head a {
  color: var(--green-dark);
  font-weight: 800;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.project-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px 14px 16px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.project-card .emoji {
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.project-card .label {
  font-weight: 800;
  line-height: 1.55;
  min-height: 3.2em;
}

.project-more {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.project-more .btn {
  min-width: 330px;
  padding: 18px 32px;
}

/* =========================
   responsive
========================= */
@media (max-width: 1200px) {
  .hero-inner,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    min-height: 540px;
  }

  .cow-wrap {
    left: 50%;
    right: auto;
    top: 26px;             /* 1051前後はもっと左上 */
    width: min(52vw, 455px);
    transform: translateX(-58%);
  }

  .cow-floating {
    animation: cow-float-md 3.6s ease-in-out infinite;
  }

  .splash-effect {
    left: 50%;
    right: auto;
    bottom: -54px;
    width: min(56vw, 400px);
    transform: translateX(-45%);
    animation: splash-float-md 3.5s ease-in-out infinite;
  }

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .hero-inner {
    min-height: auto;
    padding: 48px 16px 150px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 340px;
    min-width: 0;
  }

  .hero-visual {
    min-height: 420px;
  }

  .cow-wrap {
    left: 50%;
    right: auto;
    top: 46px;
    width: min(72vw, 320px);
    transform: translateX(-52%);
  }

  .cow-floating {
    animation: none;
  }

  .splash-effect {
    left: 50%;
    right: auto;
    bottom: -34px;
    width: min(78vw, 230px);
    transform: translateX(-48%);
    animation: none;
  }

  .section-area {
    margin-top: -60px;
    padding: 0 16px 50px;
  }

  .card {
    padding: 20px 18px;
  }

  .notice-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  
  
  
  
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.35rem;
  }

  .hero-visual {
    min-height: 360px;
  }

  .cow-wrap {
    left: 50%;
    right: auto;
    top: 78px;             /* 414では上すぎたので下げる */
    width: min(78vw, 210px);
    transform: translateX(-50%);
  }

  .cow-floating {
    animation: none;
  }

  .splash-effect {
    left: 50%;
    right: auto;
    bottom: -16px;
    width: min(84vw, 135px);
    transform: translateX(-50%);
    animation: none;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-more .btn {
    min-width: 0;
    width: 100%;
  }
}

/* =========================
   about page
========================= */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 100px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.12), rgba(255,255,255,0) 45%),
    linear-gradient(to bottom, #dff4ff 0%, #edf9ff 100%);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: var(--cream);
  border-radius: 48% 52% 0 0 / 55% 55% 0 0;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-en {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  font-weight: 700;
  opacity: 0.6;
}

.page-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--brown);
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.page-lead {
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 1.15rem;
  line-height: 2;
  color: #5a4636;
}

.breadcrumb-wrap {
  background: var(--cream);
  padding: 20px 24px 0;
}

.breadcrumb {
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #7a6a5d;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.about-section {
  background: var(--cream);
  padding: 30px 24px 80px;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.about-side {
  position: sticky;
  top: 110px;
}

.about-side h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  color: var(--brown);
}

.side-nav {
  display: grid;
  gap: 10px;
}

.side-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  background: #f8fbf6;
  transition: background 0.2s ease, transform 0.2s ease;
}

.side-nav a:hover {
  background: #edf8e8;
  transform: translateX(4px);
  color: var(--green-dark);
}

.about-main {
  display: grid;
  gap: 24px;
}

.about-card {
  padding: 30px 32px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.75rem;
  color: var(--brown);
}

.section-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.about-card p {
  margin: 0 0 16px;
  line-height: 1.95;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.info-table {
  display: grid;
  gap: 0;
  border-top: 1px solid #e5ddd5;
  border-bottom: 1px solid #e5ddd5;
}

.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid #eee5dc;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  padding: 18px 18px;
  background: #fbf8f4;
  font-weight: 800;
  color: var(--brown);
}

.info-value {
  padding: 18px 20px;
  background: #fff;
  line-height: 1.8;
}

.about-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-work-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.work-emoji {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.about-work-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--brown);
}

.about-work-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
}

.access-box {
  background: #fcfbf8;
  border: 1px solid #ebe2d8;
  border-radius: 18px;
  padding: 22px 20px;
}

.access-box p {
  margin: 0 0 10px;
}

.access-box p:last-child {
  margin-bottom: 0;
}

.about-contact-btn {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .page-hero {
    padding: 70px 16px 82px;
  }

  .breadcrumb-wrap,
  .about-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-card {
    padding: 24px 20px;
  }

  .section-heading h2 {
    font-size: 1.45rem;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .info-label,
  .info-value {
    padding: 14px 16px;
  }

  .about-work-grid {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 140px 24px 150px;

  background:
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.8)),
    url("images/about-bg.jpg") center right / cover no-repeat;
}

/* =========================
   project page
========================= */

.project-page-section {
  background: linear-gradient(to bottom, #f7f3ee 0%, #fdfbf7 100%);
  padding: 30px 24px 80px;
}

.project-page-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.4;
  color: var(--brown);
  font-weight: 800;
}

.section-title + .project-list-grid {
  margin-bottom: 44px;
}

.project-list-grid {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.project-list-grid-1 {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.project-list-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.project-list-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.project-list-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.project-detail-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  border-radius: 28px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(255, 214, 153, 0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.project-detail-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff6cc 0%, #ffe7a8 100%);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.7);
}

.project-detail-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--brown);
  letter-spacing: 0.02em;
}

.project-detail-card p {
  margin: 0;
  line-height: 1.95;
  font-size: 0.98rem;
  flex-grow: 1;
}

.project-detail-card .more {
  margin-top: 18px;
  text-align: right;
  display: block;
  font-weight: 700;
  color: var(--green-dark);
}

@media (max-width: 1100px) {
  .project-list-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-list-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .project-page-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-title {
    font-size: 1.55rem;
    margin-bottom: 16px;
  }

  .project-list-grid-4,
  .project-list-grid-3,
  .project-list-grid-2 {
    grid-template-columns: 1fr;
  }

  .project-detail-card {
    padding: 24px 20px;
  }
}

/* =========================
   footer
========================= */
.site-footer {
  background: #f0ece6;
  padding: 34px 24px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brown);
}

.footer-address {
  margin: 10px 0 0;
  color: #6e6258;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-copy {
  margin: 10px 0 0;
  color: #8a7d72;
  font-size: 0.85rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-card .more {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 700;
}

/* =========================
   documents
========================= */
.document-list {
  display: grid;
  gap: 14px;
}

.document-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fcfbf8;
  border: 1px solid #ebe2d8;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.document-link:hover {
  background: #f7f3ee;
  transform: translateY(-2px);
}

.pdf-note {
  font-size: 0.85rem;
  color: #7a6a5d;
  margin-bottom: 12px;
}

html {
  scroll-behavior: smooth;
}

.about-card {
  scroll-margin-top: 150px;
}

.project-card.highlight {
  border: 2px solid rgba(76, 175, 61, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf4 100%);
}

.project-card.highlight .emoji {
  transform: scale(1.05);
}

.project-detail-card {
  text-decoration: none;
  color: inherit;
}

.project-detail-card {
  cursor: default;
}

a.project-detail-card {
  cursor: pointer;
}

.project-detail-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-detail-card .more {
  margin-top: auto;
  text-align: right;
  display: block;
}

.project-detail-card .more {
  margin-top: auto;
  text-align: right;
  display: block;
  font-weight: 700;
  color: var(--green-dark);
}

.notice-box {
  background: #fff4e6;
  border: 1px solid #ffd9a8;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.notice-box p {
  margin: 0;
  line-height: 1.9;
}

.section-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: #7a6a5d;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.photo-card {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   news page
========================= */

.news-page .about-card {
  scroll-margin-top: 150px;
}

.news-list,
.news-archive-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.news-item,
.news-archive-item {
  border: 1px solid #d9e7f2;
  border-radius: 18px;
  background: #fff;
  transition: 0.3s ease;
}

.news-item:hover,
.news-archive-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 70, 120, 0.08);
}

.news-item-link {
  display: block;
  padding: 22px 24px;
  color: inherit;
  text-decoration: none;
}

.news-archive-item {
  padding: 18px 22px;
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #5b6b7a;
}

.news-item h4,
.news-archive-item h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.6;
}

.news-item p {
  margin: 0;
  line-height: 1.8;
  color: #4d5a66;
}

.news-archive-item h4 a {
  color: #234;
  text-decoration: none;
}

.news-archive-item h4 a:hover {
  color: #2d78b8;
  text-decoration: underline;
}

.news-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.news-tag.recruit {
  background: #e8f4ff;
  color: #1e6fb8;
}

.news-tag.report {
  background: #eef8ea;
  color: #4c8a2b;
}

.news-tag.pdf {
  background: #fff1e7;
  color: #cc6b2c;
}

.news-tag.info {
  background: #f2efff;
  color: #6a55b5;
}

.news-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.news-category-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f8fbfe;
  border: 1px solid #dceaf4;
}

.news-category-card h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.news-category-card p {
  margin: 0;
  line-height: 1.8;
  color: #4d5a66;
}

.news-index ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.news-index li + li {
  margin-top: 8px;
}

.news-index a {
  text-decoration: none;
  color: #2d78b8;
}

.news-index a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .news-item-link {
    padding: 18px;
  }

  .news-archive-item {
    padding: 16px 18px;
  }

  .news-category-grid {
    grid-template-columns: 1fr;
  }

  .news-meta {
    gap: 8px;
  }

  .news-item h4,
  .news-archive-item h4 {
    font-size: 1.05rem;
  }
}

/* =========================
   news detail page
========================= */

.news-detail-card {
  max-width: 900px;
}

.news-detail-title {
  margin: 12px 0 16px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.5;
  color: var(--brown);
}

.news-detail-lead {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5a4636;
}

.news-detail-section + .news-detail-section {
  margin-top: 30px;
}

.news-detail-section h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--brown);
}

.news-detail-section p {
  margin: 0 0 14px;
  line-height: 1.95;
}

.news-detail-section p:last-child {
  margin-bottom: 0;
}

.news-detail-links {
  display: flex;
  flex-direction: column;   /* ← 縦並び */
  align-items: center;      /* ← 中央寄せ */
  gap: 18px;
  margin-top: 30px;
}

.news-detail-links .btn {
  width: 100%;
  max-width: 360px;
  text-align: center;
}

@media (max-width: 820px) {
  .news-detail-links {
    flex-direction: column;
  }

  .news-detail-links .btn {
    width: 100%;
    max-width: 340px;
  }
}

.news-detail-card {
  max-width: 1000px;
  margin: 40px auto 0;
}

.news-meta {
  margin-bottom: 10px;
}

.news-detail-title {
  margin-top: 10px;
}

/* タイトルとオレンジ枠の間 */
.news-detail-title {
  margin-bottom: 24px;
}

/* オレンジ枠 */
.notice-box {
  margin-top: 12px;
}

/* =========================
   contact page
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}

.contact-side {
  position: sticky;
  top: 110px;
}

.contact-topic-list {
  display: grid;
  gap: 16px;
}

.contact-topic-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.contact-topic-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--brown);
}

.contact-topic-card p {
  margin: 0;
  line-height: 1.8;
}

.contact-side-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  align-items: center;
}

.contact-side-links .btn {
  width: 100%;
  max-width: 260px;
}

/* =========================
   fake form（お問い合わせ）
========================= */

.fake-form {
  margin-top: 24px;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown);
}

.form-box {
  padding: 14px 16px;
  border-radius: 12px;
  background: #f7f9fb;
  border: 1px solid #e2e8ee;
  color: #8a8f95;
  font-size: 0.95rem;
}

.form-box.textarea {
  height: 120px;
}

.contact-btn {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.contact-btn .btn {
  max-width: 360px;
  width: 100%;
  font-size: 1rem;
  padding: 14px 20px;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-side {
    position: static;
  }
}

/* =========================
   header final
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-text .jp {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-text .en {
  margin-top: 4px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #555;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.main-nav a.is-current,
.main-nav a:hover {
  color: var(--green-dark);
}

.main-nav a.is-current::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(76, 175, 61, 0.22);
  flex-shrink: 0;
}

.header-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(76, 175, 61, 0.28);
}

.header-contact .icon {
  font-size: 0.95rem;
  line-height: 1;
}

@media (max-width: 1100px) {
  .header-inner {
    padding: 16px 18px;
    gap: 18px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-text .jp {
    font-size: 1.25rem;
  }

  .brand-text .en {
    font-size: 0.72rem;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 1rem;
  }

  .header-contact {
    padding: 11px 20px;
    font-size: 0.98rem;
  }
}

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-left: 0;
  }

  .header-contact {
    margin-top: 4px;
  }
}

/* =========================
   officer page
========================= */

.officer-card {
  max-width: 1000px;
  margin: 40px auto;
}

/* テーブル全体 */
.officer-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.officer-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

/* ヘッダー */
.officer-table thead {
  background: #eaf3f6;
}

.officer-table th {
  padding: 14px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

/* 行 */
.officer-table td {
  padding: 14px;
  font-size: 0.95rem;
  border-top: 1px solid #eee;
  text-align: center;
}

/* ストライプ */
.officer-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* スマホ対応 */
@media (max-width: 600px) {
  .officer-table th,
  .officer-table td {
    font-size: 0.85rem;
    padding: 10px;
  }
}

/* =========================
   officer table (3列ver)
========================= */

.officer-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* ヘッダー */
.officer-table thead {
  background: #e3edf2;
}

.officer-table th {
  padding: 14px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

/* セル */
.officer-table td {
  padding: 16px;
  font-size: 0.95rem;
  border-top: 1px solid #eee;
  text-align: center;
  line-height: 1.8; /* ← 複数行見やすく */
}

/* 所属だけ少し左寄せ */
.officer-table td:last-child {
  text-align: left;
}

/* ストライプ */
.officer-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.officer-table td:nth-child(2) {
  text-align: center;
  font-weight: 600;
}

.officer-table td:first-child {
  font-weight: 600;
  color: var(--brown);
}

/* =========================
   officer table (3列ver)
========================= */

.officer-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* ヘッダー */
.officer-table thead {
  background: #e3edf2;
}

.officer-table th {
  padding: 14px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

/* セル */
.officer-table td {
  padding: 20px 16px; 
  font-size: 0.95rem;
  border-top: 1px solid #eee;
  text-align: center;
  line-height: 1.8; /* ← 複数行見やすく */
}

.officer-table td:last-child {
  text-align: left;
  line-height: 2;
}

/* ストライプ */
.officer-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.officer-table td:nth-child(2) {
  text-align: center;
  font-weight: 600;
}

.officer-table td:first-child {
  font-weight: 600;
  color: var(--brown);
}

.section-note {
  text-align: right;
  font-size: 0.8rem;
  color: #777;
  margin-top: 10px;
}

/* =========================
/* =========================
   about → 役員リンク
========================= */

.about-officer-link {
  margin-top: 18px;
  text-align: right;
}

.about-officer-link .btn {
  min-width: 0;
  padding: 8px 16px;
  font-size: 0.88rem;
  line-height: 1.2;
  box-shadow: none;
}

.related-org {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 12px;
  padding-left: 0;
  list-style: none;
}

.related-org li {
  font-size: 0.95rem;
}

.related-org a {
  color: #2a6db0;
  text-decoration: none;
}

.related-org a:hover {
  text-decoration: underline;
}

.map-wrap {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

/* =========================
   about responsive fix
========================= */
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr !important;
  }

  .about-side {
    position: static !important;
    width: 100%;
  }

  .about-main {
    width: 100%;
  }

  .about-card,
  .about-side.card {
    width: 100%;
  }

  .page-hero,
  .about-section,
  .breadcrumb-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* =========================
   mobile final fix
========================= */
@media (max-width: 520px) {
  html, body {
    overflow-x: hidden;
  }

  .site-header {
    overflow-x: hidden;
  }

  .header-inner {
    padding: 12px 12px 14px !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .brand {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .brand img {
    width: 44px !important;
    height: 44px !important;
  }

  .brand-text {
    min-width: 0;
    text-align: left;
  }

  .brand-text .jp {
    font-size: 0.95rem !important;
    white-space: normal !important;
    line-height: 1.25;
  }

  .brand-text .en {
    font-size: 0.58rem !important;
    letter-spacing: 0.04em !important;
    white-space: normal !important;
    line-height: 1.35;
  }

  .main-nav {
    width: 100%;
    margin-left: 0 !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px 14px !important;
    white-space: normal !important;
  }

  .main-nav a {
    font-size: 0.95rem !important;
    padding: 4px 0 !important;
  }

  .header-contact {
    margin-top: 4px;
    padding: 10px 18px !important;
    font-size: 0.92rem !important;
    width: auto !important;
    max-width: none !important;
  }

  .page-hero {
    padding: 52px 16px 64px !important;
  }

  .page-title {
    font-size: 1.9rem !important;
    line-height: 1.2 !important;
  }

  .page-lead {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    max-width: 100% !important;
  }

  .breadcrumb-wrap,
  .about-section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .about-side,
  .about-main,
  .about-card,
  .about-side.card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .about-card {
    padding: 20px 16px !important;
  }

  .section-heading h2 {
    font-size: 1.35rem !important;
  }

  .info-row {
    grid-template-columns: 1fr !important;
  }

  .info-label,
  .info-value {
    padding: 12px 14px !important;
  }

  .about-work-grid {
    grid-template-columns: 1fr !important;
  }

  .related-org {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .map-wrap iframe {
    width: 100% !important;
    height: 240px !important;
    display: block;
  }
}

/* =========================
   tablet fix
========================= */
@media (max-width: 1100px) {
  html, body {
    overflow-x: hidden;
  }

  .header-inner {
    padding: 16px 18px !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    width: 100%;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px 16px !important;
    margin-left: 0 !important;
    white-space: normal !important;
  }

  .header-contact {
    margin-top: 4px;
  }

  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .about-side {
    position: static !important;
    width: 100%;
  }

  .about-main,
  .about-card,
  .about-side.card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .page-hero,
  .breadcrumb-wrap,
  .about-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .page-title {
    font-size: 2.2rem !important;
  }

  .page-lead {
    max-width: 100% !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
  }

  .info-table,
  .info-row,
  .info-value,
  .access-box,
  .map-wrap,
  .officer-table-wrap {
    min-width: 0 !important;
  }

  .map-wrap iframe {
    width: 100% !important;
    height: 280px !important;
    display: block;
  }

  .related-org {
    flex-wrap: wrap !important;
    gap: 10px 18px !important;
  }
}

/* =========================
   full screen mobile menu
========================= */

.mobile-menu-overlay {
  display: none;
}

.menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brown);
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: var(--brown);
    padding: 6px 10px;
  }

  .header-contact {
    display: none !important;
  }

  .main-nav {
    display: none !important;
  }

  .header-inner {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .brand {
    width: auto !important;
    justify-content: flex-start !important;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand img {
    width: 44px !important;
    height: 44px !important;
  }

  .brand-text .jp {
    font-size: 1rem !important;
    line-height: 1.2;
    white-space: normal !important;
  }

  .brand-text .en {
    font-size: 0.6rem !important;
    line-height: 1.3;
    white-space: normal !important;
    letter-spacing: 0.03em !important;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    background: rgba(255, 255, 255, 0.98);
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  .mobile-menu-panel {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 18px 18px 32px;
    background: #fff;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
  }

  .mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .mobile-menu-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .mobile-menu-brand-text .jp {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--brown);
  }

  .mobile-menu-brand-text .en {
    margin-top: 2px;
    font-size: 0.58rem;
    line-height: 1.25;
    color: #666;
    letter-spacing: 0.03em;
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
  }

  .mobile-menu-nav a {
    display: block;
    padding: 16px 6px;
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 1px solid #efefef;
  }

  .mobile-menu-nav a:last-child {
    border-bottom: none;
  }

  .mobile-menu-contact {
    margin-top: 18px;
    padding: 14px 18px !important;
    text-align: center;
    border-radius: 999px;
    background: var(--green);
    color: #fff !important;
    border-bottom: none !important;
  }
}

/* =========================
   tablet hamburger fix
========================= */
@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: var(--brown);
    padding: 6px 10px;
  }

  .header-contact {
    display: none !important;
  }

  .main-nav {
    display: none !important;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    background: rgba(255, 255, 255, 0.98);
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  .mobile-menu-panel {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 18px 18px 32px;
    background: #fff;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
  }

  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
  }

  .mobile-menu-nav a {
    display: block;
    width: 100%;
    padding: 16px 6px;
    font-size: 1.05rem;
    font-weight: 700;
    border-bottom: 1px solid #efefef;
  }

  .mobile-menu-contact {
    margin-top: 18px;
    padding: 14px 18px !important;
    text-align: center;
    border-radius: 999px;
    background: var(--green);
    color: #fff !important;
    border-bottom: none !important;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  .brand {
    width: auto !important;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start !important;
  }

  .brand img {
    width: 52px !important;
    height: 52px !important;
  }

  .brand-text .jp {
    font-size: 1.2rem !important;
    line-height: 1.2;
  }

  .brand-text .en {
    font-size: 0.72rem !important;
    line-height: 1.3;
    letter-spacing: 0.04em !important;
  }
}

/* =========================
   hamburger control
========================= */

/* ハンバーガー初期は非表示（PC用） */
.menu-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .menu-toggle {
    display: block;
  }
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.mobile-menu-panel {
  transition: transform 0.3s ease;
}

.section-sub-title {
  font-size: 1.1rem;
  margin: 20px 0 10px;
  padding-left: 10px;
  border-left: 4px solid #8bc34a; /* 緑ライン */
}

.report-box {
  background: #f7fbf5;
  padding: 14px;
  border-radius: 10px;
  margin-top: 10px;
}

.news-detail-section {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.news-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.news-photo-grid img {
  width: 100%;
  border-radius: 10px;
}

.news-photo-grid img {
  width: 100%;
  height: 280px;       /* ←ここで高さ固定 */
  object-fit: cover;   /* ←これ超重要 */
  border-radius: 10px;
}

.news-photo-grid img {
  height: 280px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .news-photo-grid {
    grid-template-columns: 1fr; /* ←1列にする */
  }

  .news-photo-grid img {
    height: auto; /* ←高さも自然に */
  }
}

@media (max-width: 768px) {
  .news-photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.news-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.news-photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .news-photo-grid {
    grid-template-columns: 1fr;
  }

  .news-photo-grid img {
    height: auto;
  }
}

.news-photo-grid {
  margin-top: 8px;
}

#lastyear h3 {
  margin-bottom: 8px;
}

.news-photo-grid img:only-child {
  grid-column: 1 / -1; /* ←1枚のとき横いっぱい */
  max-width: 600px;   /* ←広がりすぎ防止（好みで） */
  height: 340px;
  margin: 0 auto;     /* ←中央寄せ */
}

.flyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.flyer-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .flyer-grid {
    grid-template-columns: 1fr;
  }
}

.flyer-grid a {
  display: block;
  transition: transform 0.2s;
}

.flyer-grid a:hover {
  transform: scale(1.02);
}

.result-box {
  background: #f7f7f7;
  padding: 16px;
  border-radius: 10px;
  margin-top: 10px;
}

.result-title {
  margin-top: 20px;
}

.result-box ul {
  padding-left: 20px;
}

.result-note {
  margin-top: 10px;
  font-size: 0.95rem;
}

.about-report-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.about-report-links .btn {
  min-width: 240px;
  text-align: center;
}

@media (max-width: 768px) {
  .about-report-links {
    flex-direction: column;
  }

  .about-report-links .btn {
    width: 100%;
    min-width: 0;
  }
}

.project-detail-card .btn {
  min-width: 0;
  width: auto;
  padding: 10px 18px;
  font-size: 14px;
  margin-top: 12px;
}

.notice-finished {
  background: #fff4f4;
  border: 1px solid #e6a2a2;
  border-left: 6px solid #d96b6b;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.notice-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 12px;
  background: #d96b6b;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.notice-finished p:last-child {
  margin: 0;
  color: #7a3030;
  line-height: 1.9;
}

.notice-finished {
  background: #fff7f7;
  border: 1px solid #ef9b9b;
  border-radius: 16px;
  padding: 26px 28px 28px;
  margin-bottom: 30px;
  text-align: center;
}

.notice-label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 10px 30px;
  background: linear-gradient(180deg, #ff5b5b 0%, #e53e3e 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(229, 62, 62, 0.18);
  position: relative;
}

.notice-text {
  margin: 0;
  color: #8f2f2f;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.9;
}

.news-detail-title {
  margin-bottom: 32px;
  line-height: 1.5;
}

.notice-finished {
  margin-top: 10px;
}

.project-notice {
  background: #fff7f7;
  border: 1px solid #efb0b0;
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 28px;
  text-align: center;
}

.project-notice-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 10px 26px;
  background: linear-gradient(180deg, #ff5b5b 0%, #e53e3e 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(229, 62, 62, 0.18);
}

.project-notice-text {
  margin: 0;
  color: #8f2f2f;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.9;
}