/* ==========================================================================
   Net-e Theme Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@400;700&display=swap');

:root {
  --nete-green:       #1a4a2e;
  --nete-green-mid:   #2d6e45;
  --nete-green-light: #4a9e68;
  --nete-accent:      #c8a84b;
  --nete-accent-hover:#b4943a;
  --nete-text:        #1a1a1a;
  --nete-text-light:  #5a5a5a;
  --nete-bg:          #f8f9f5;
  --nete-white:       #ffffff;
  --nete-radius:      16px;
  --nete-shadow:      0 8px 30px rgba(26, 74, 46, 0.08);
  --nete-shadow-hover: 0 16px 40px rgba(26, 74, 46, 0.16);
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── Base Reset ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', Meiryo, sans-serif;
  color: var(--nete-text);
  background-color: var(--nete-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  line-height: 1.3;
}

/* ── Container ── */
.nete-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--nete-green);
  transition: var(--transition-smooth);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.site-header-logo {
  flex-shrink: 0;
}

.site-header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition-smooth);
  object-fit: contain;
}

/* Navigation */
.global-nav {
  display: flex;
  align-items: center;
}

.global-nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.global-nav-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  padding: 4px 0;
}

.global-nav-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.global-nav-description {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: none;
  margin-top: 1px;
}

.global-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nete-accent);
  transition: var(--transition-smooth);
}

.global-nav-list li a:hover {
  color: var(--nete-accent);
}

.global-nav-list li a:hover::after {
  width: 100%;
}

.global-nav-list li.current-menu-item a {
  color: var(--nete-accent);
}

.global-nav-list li.current-menu-item a::after {
  width: 100%;
}

/* Mobile Nav Button */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* ── Hero Section ── */
.nete-hero {
  position: relative;
  background: linear-gradient(135deg, #113320 0%, #0d281a 50%, #071910 100%);
  color: #fff;
  padding: 180px 0 100px;
  overflow: hidden;
}

/* Background canvas overlay */
#network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto; /* allow interactive network effect */
}

.nete-hero-inner {
  position: relative;
  z-index: 2;
  pointer-events: none; /* let mouse events pass to canvas */
}

/* Allow click/hover on hero text elements */
.nete-hero-title, .nete-hero-info, .nete-hero-nav a {
  pointer-events: auto;
}

.nete-hero-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(200, 168, 75, 0.3);
  padding-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.nete-hero-info {
  margin-bottom: 36px;
}

.nete-hero-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 6px 0;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.nete-hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nete-hero-nav a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition-smooth);
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.nete-hero-nav a:hover {
  background: var(--nete-accent);
  border-color: var(--nete-accent);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 168, 75, 0.3);
}

/* ── Section Commons ── */
.nete-section {
  padding: 100px 0;
  position: relative;
}

.nete-section-light {
  background-color: var(--nete-bg);
}

.nete-section-dark {
  background-color: var(--nete-green);
  color: #fff;
}

.nete-section-green {
  background: linear-gradient(135deg, var(--nete-green-mid) 0%, var(--nete-green) 100%);
  color: #fff;
}

.nete-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.nete-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: none;
  color: var(--nete-green-light);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--nete-accent);
  padding-bottom: 6px;
}

.nete-section-dark .nete-label,
.nete-section-green .nete-label {
  color: var(--nete-accent);
}

.nete-section-title {
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--nete-green);
  position: relative;
}

.nete-section-dark .nete-section-title,
.nete-section-green .nete-section-title {
  color: #fff;
}

/* ── Message Section (ご挨拶) ── */
.nete-greeting-grid {
  display: grid;
  gap: 40px;
}

.nete-greeting-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.nete-greeting-text p {
  color: var(--nete-text-light);
  font-size: 15px;
  line-height: 2.0;
  margin-bottom: 24px;
}

.nete-section-dark .nete-greeting-text p {
  color: rgba(255, 255, 255, 0.85);
}

.nete-greeting-signature {
  text-align: right;
  margin-top: 32px;
  border-right: 3px solid var(--nete-accent);
  padding-right: 16px;
}

.nete-greeting-signature strong {
  display: block;
  font-size: 16px;
  color: var(--nete-green);
  line-height: 1.8;
}

.nete-section-dark .nete-greeting-signature strong {
  color: #fff;
}

.nete-greeting-photos {
  display: flex;
  gap: 20px;
}

.nete-greeting-photo-item {
  width: 180px;
  text-align: center;
}

.nete-greeting-photo-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: var(--nete-shadow);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nete-greeting-photo-item:hover img {
  transform: scale(1.03) translateY(-4px);
  box-shadow: var(--nete-shadow-hover);
}

.nete-greeting-photo-item span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--nete-text-light);
}

.nete-section-dark .nete-greeting-photo-item span {
  color: rgba(255, 255, 255, 0.7);
}

/* ── About Us Section (組織概要) ── */
.nete-table-wrap {
  border-radius: var(--nete-radius);
  overflow: hidden;
  background: var(--nete-white);
  box-shadow: var(--nete-shadow);
  border: 1px solid rgba(26, 74, 46, 0.08);
}

.nete-table {
  width: 100%;
  border-collapse: collapse;
}

.nete-table th,
.nete-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #e8ede9;
  font-size: 15px;
}

.nete-table th {
  background: #f0f4f1;
  color: var(--nete-green);
  font-weight: 700;
  width: 200px;
  white-space: nowrap;
}

.nete-table td {
  color: var(--nete-text);
  background: #fff;
}

.nete-table tr:last-child th,
.nete-table tr:last-child td {
  border-bottom: none;
}

.nete-list {
  list-style: none;
  counter-reset: nete-counter;
}

.nete-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.7;
}

.nete-list li:last-child {
  margin-bottom: 0;
}

.nete-list li::before {
  counter-increment: nete-counter;
  content: counter(nete-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-color: var(--nete-green-light);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}

.nete-org-chart-container {
  margin-top: 48px;
  text-align: center;
}

.nete-org-chart-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--nete-radius);
  box-shadow: var(--nete-shadow);
  transition: var(--transition-smooth);
}

.nete-org-chart-container:hover img {
  transform: translateY(-4px);
  box-shadow: var(--nete-shadow-hover);
}

/* ── Members Section (組合員) ── */
.nete-members-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -12px;
  margin-bottom: 24px;
}

.nete-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nete-member-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--nete-radius);
  padding: 28px 24px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-smooth);
  min-height: 80px;
  backdrop-filter: blur(4px);
}

.nete-member-card:not(.nete-member-no-link):hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.nete-member-card::after {
  content: '↗';
  font-size: 12px;
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.nete-member-card:hover::after {
  opacity: 1;
  transform: translate(2px, -2px);
}

.nete-member-no-link {
  cursor: default;
}

.nete-member-no-link::after {
  display: none;
}

/* ── History Section (沿革) ── */
.nete-history-lead-area {
  text-align: center;
  margin-bottom: 50px;
}

.nete-history-lead {
  color: var(--nete-green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.nete-history-body {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}

/* Timeline Vertical Line */
.nete-history-body::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 6px;
  width: 2px;
  height: calc(100% - 24px);
  background-color: #e0e0e0;
}

.nete-history-item {
  position: relative;
  margin-bottom: 48px;
}

.nete-history-item:last-child {
  margin-bottom: 0;
}

/* Timeline dot */
.nete-history-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--nete-green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--nete-green);
  z-index: 1;
}

.nete-hist-year {
  font-size: 18px;
  font-weight: 700;
  color: var(--nete-green);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.nete-history-content {
  background: var(--nete-white);
  border-radius: var(--nete-radius);
  padding: 24px 30px;
  box-shadow: var(--nete-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.nete-history-content p {
  color: var(--nete-text-light);
  line-height: 1.8;
  font-size: 14.5px;
}

/* ── Supporting Members (賛助会) ── */
.nete-support-card {
  max-width: 850px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--nete-radius);
  padding: 40px;
  box-shadow: var(--nete-shadow);
  border-top: 4px solid var(--nete-accent);
}

.nete-support-main p {
  color: var(--nete-text-light);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.nete-support-details {
  background: var(--nete-bg);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.nete-support-detail-item h4 {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--nete-green);
  font-size: 14px;
  margin-bottom: 6px;
}

.nete-support-detail-item p {
  font-size: 15px;
  color: var(--nete-text);
  margin-bottom: 0;
}

.nete-support-detail-item ul {
  padding-left: 18px;
}

.nete-support-detail-item ul li {
  font-size: 14px;
  color: var(--nete-text);
  margin-bottom: 4px;
}

/* Button style */
.nete-custom-btn {
  background: var(--nete-green);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(26, 74, 46, 0.2);
}

.nete-custom-btn:hover {
  background: var(--nete-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 74, 46, 0.35);
  color: #fff;
}

/* ── Contact Section (お問合せ) ── */
.nete-contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--nete-radius);
  padding: 48px;
  box-shadow: var(--nete-shadow);
  border-top: 4px solid var(--nete-green);
}

.nete-form-group {
  margin-bottom: 24px;
}

.nete-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--nete-text);
  margin-bottom: 8px;
}

.nete-form-group label small {
  color: #dc3545;
  font-size: 11px;
  margin-left: 4px;
}

.nete-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dde0da;
  border-radius: 8px;
  font-size: 15px;
  background: #fafaf8;
  transition: var(--transition-smooth);
  font-family: inherit;
}

.nete-form-control:focus {
  border-color: var(--nete-green-light);
  box-shadow: 0 0 0 3px rgba(74, 158, 104, 0.15);
  outline: none;
  background: #fff;
}

textarea.nete-form-control {
  resize: vertical;
  min-height: 120px;
}

/* Radio buttons list */
.nete-radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.nete-radio-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: var(--nete-text-light);
  font-weight: normal;
}

.nete-radio-item input {
  margin-right: 8px;
  accent-color: var(--nete-green);
  width: 16px;
  height: 16px;
}

.nete-submit-btn {
  background: var(--nete-green);
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: block;
  width: 100%;
  box-shadow: 0 4px 15px rgba(26, 74, 46, 0.25);
  margin-top: 36px;
}

.nete-submit-btn:hover {
  background: var(--nete-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 74, 46, 0.35);
}

.nete-submit-btn:active {
  transform: translateY(0);
}

/* Toast Success Alert */
.nete-toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--nete-green);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.1);
}

.nete-toast.show {
  bottom: 40px;
}

.nete-toast-icon {
  width: 20px;
  height: 20px;
  background-color: var(--nete-accent);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ── Footer ── */
.nete-footer {
  background: #091a10;
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid rgba(200, 168, 75, 0.2);
}

.nete-footer-logo {
  margin-bottom: 20px;
}

.nete-footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.nete-footer-logo img:hover {
  opacity: 1;
}

.nete-copyright {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  margin: 0;
  letter-spacing: 0.05em;
}

.nete-page-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: var(--nete-accent);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.nete-page-top.show {
  opacity: 1;
  visibility: visible;
}

.nete-page-top:hover {
  background-color: var(--nete-accent-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ── Mobile Navigation Drawer ── */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 26, 16, 0.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.mobile-nav-list li a:hover {
  color: var(--nete-accent);
}

.mobile-nav-list li a span {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: none;
}

/* ── Responsive Adaptation ── */
@media (max-width: 1024px) {
  .nete-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header-container {
    height: 64px;
  }
  
  .global-nav {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }

  /* Hamburger Active Animation */
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nete-hero {
    padding: 140px 0 70px;
  }

  .nete-section {
    padding: 70px 0;
  }

  .nete-greeting-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nete-greeting-photos {
    justify-content: center;
  }

  .nete-table th {
    width: auto;
    display: block;
    border-bottom: none;
    padding-bottom: 4px;
  }

  .nete-table td {
    display: block;
    padding-top: 4px;
  }

  .nete-table tr {
    border-bottom: 1px solid #e8ede9;
  }

  .nete-table tr:last-child {
    border-bottom: none;
  }

  .nete-support-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nete-support-card {
    padding: 28px 20px;
  }

  .nete-contact-wrap {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .nete-members-grid {
    grid-template-columns: 1fr;
  }
  
  .nete-greeting-photos {
    flex-direction: column;
    align-items: center;
  }
  
  .nete-greeting-photo-item {
    width: 100%;
    max-width: 220px;
  }
}

#org-chart {
  scroll-margin-top: 90px;
}


/* ── Study Group (研究会) Section Styles ── */
.nete-forum-card {
  background: #fff;
  border-radius: var(--nete-radius);
  padding: 40px;
  box-shadow: var(--nete-shadow);
  margin-bottom: 48px;
  border-left: 5px solid var(--nete-accent);
}

.nete-forum-header {
  margin-bottom: 25px;
  border-bottom: 1px solid #e8ede9;
  padding-bottom: 16px;
}

.nete-forum-badge {
  background: #dc3545;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.nete-forum-title {
  font-size: 22px;
  color: var(--nete-green);
  margin: 0 0 6px 0;
  font-weight: 700;
  line-height: 1.4;
}

.nete-forum-subtitle {
  font-size: 16px;
  color: #c8a84b;
  margin: 0;
  font-weight: 600;
}

.nete-forum-body {
  margin-top: 25px;
}

.nete-forum-section-title {
  font-size: 15.5px;
  color: var(--nete-green);
  margin-bottom: 15px;
}

.nete-forum-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nete-forum-list li {
  font-size: 14.5px;
  color: #333;
  line-height: 1.7;
  margin: 0;
  padding-left: 4px;
}

.nete-forum-list-tag {
  font-weight: 700;
  margin-right: 8px;
  font-family: 'Noto Serif JP', serif;
  color: var(--nete-text);
}

.nete-forum-text {
  font-size: 14.5px;
  color: #555;
  line-height: 1.8;
  margin: 25px 0 0 0;
  padding-top: 20px;
  border-top: 1px dashed #e8ede9;
}

/* Projects Grid */
/* Project List (Single Block) */
.nete-project-single-block {
  background: #fff;
  border-radius: var(--nete-radius);
  padding: 40px;
  box-shadow: var(--nete-shadow);
}

.nete-single-item {
  margin-bottom: 24px;
}

.nete-single-item:last-child {
  margin-bottom: 0;
}

.nete-single-title {
  font-size: 18px;
  color: var(--nete-green);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.nete-title-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-smooth);
}

.nete-title-link:hover {
  color: var(--nete-accent);
}

.nete-single-desc {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  padding-left: 4px;
}

.nete-single-sub {
  margin-top: 16px;
  background: #f8faf9;
  padding: 18px 20px;
  border-radius: 8px;
  border: 1px solid #e8ede9;
}

.nete-single-sub-title {
  font-size: 14px;
  color: var(--nete-green);
  font-weight: 700;
  margin: 0 0 12px 0;
}

.nete-single-sub-title small {
  color: #666;
  font-weight: 400;
  margin-left: 8px;
}

.nete-single-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nete-single-list li {
  font-size: 13.5px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Badge styles in the single block */
.nete-single-badge {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 5px;
  text-decoration: none !important;
  color: #fff;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.nete-single-badge:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.btn-chirashi { background: linear-gradient(135deg, #ff416c, #ff4b2b); }
.btn-movie { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.btn-web { background: linear-gradient(135deg, #11998e, #38ef7d); }
.btn-manga { background: linear-gradient(135deg, #f857a6, #ff5858); }

.nete-single-divider {
  border: none;
  border-top: 1px solid #e8ede9;
  margin: 28px 0;
}

@media (max-width: 768px) {
  .nete-forum-card {
    padding: 24px;
  }
  .nete-forum-title {
    font-size: 19px;
  }
  .nete-forum-subtitle {
    font-size: 14px;
  }
  .nete-forum-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .nete-project-single-block {
    padding: 24px 20px;
  }
}



/* Forum Banner Image Style (Inline inside combined card) */
.nete-forum-banner-inline {
  max-width: 520px;
  margin: 32px auto 16px;
  text-align: center;
}

.nete-forum-banner-inline img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
}

.nete-forum-banner-inline:hover img {
  transform: translateY(-2px);
  box-shadow: var(--nete-shadow-hover);
}

