/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 物流不動産協同組合 カスタムテーマ
Author: 
Tags: 
Version: 1.0.0
*/

/* ============================================
   NET-E.ORG モダンデザイン CSS
   ============================================ */

/* Google Fonts */
@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-text:       #1a1a1a;
  --nete-text-light: #5a5a5a;
  --nete-bg:         #f8f9f5;
  --nete-white:      #ffffff;
  --nete-radius:     12px;
  --nete-shadow:     0 4px 24px rgba(26,74,46,0.12);
  --nete-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* 全体フォント */
body, .entry-body, .nete-page {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--nete-text);
  line-height: 1.8;
}

/* Lightning ヘッダー調整 */
.site-header {
  background: var(--nete-green) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.global-nav-list > li > a {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--nete-transition);
}
.global-nav-list > li > a:hover {
  color: var(--nete-accent) !important;
}
/* スライダー非表示 */
.ltg-slide { display: none !important; }
/* entry-body のデフォルトpadding除去 */
.entry-body { padding: 0 !important; margin: 0 !important; }
.entry { padding: 0 !important; }
.entry-content { padding: 0 !important; }
/* site_body_padding 無効化 */
.l-main { padding: 0 !important; }
.container { max-width: 100% !important; padding: 0 !important; }

/* ============================================
   nete-page 共通
   ============================================ */
.nete-page { width: 100%; overflow-x: hidden; }
.nete-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HERO
   ============================================ */
.nete-hero {
  background: linear-gradient(135deg, var(--nete-green) 0%, #0f3a22 50%, #162e1e 100%);
  color: var(--nete-white);
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}
.nete-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.nete-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.nete-hero-badge {
  display: inline-block;
  background: rgba(200,168,75,0.2);
  border: 1px solid var(--nete-accent);
  color: var(--nete-accent);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.nete-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
  color: var(--nete-white);
}
.nete-hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  margin: 0 0 40px;
  line-height: 1.9;
}
.nete-hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.nete-hero-stats {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
}
.nete-stat {
  text-align: center;
  padding: 16px;
}
.nete-stat-num {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--nete-accent);
  line-height: 1;
}
.nete-stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ============================================
   ボタン
   ============================================ */
.nete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  transition: all var(--nete-transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.nete-btn-primary {
  background: var(--nete-accent);
  color: #1a1a1a !important;
  box-shadow: 0 4px 16px rgba(200,168,75,0.4);
}
.nete-btn-primary:hover {
  background: #d4b55a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.5);
  color: #1a1a1a !important;
}
.nete-btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: white !important;
  background: transparent;
}
.nete-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white !important;
}
.nete-btn-outline-light {
  border: 2px solid rgba(255,255,255,0.5);
  color: white !important;
  background: transparent;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-block;
  transition: all var(--nete-transition);
}
.nete-btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: white !important;
}
.nete-btn-sm { padding: 10px 24px; font-size: 14px; }

/* ============================================
   セクション共通
   ============================================ */
.nete-section { padding: 80px 0; }
.nete-section-light { background: var(--nete-bg); }
.nete-section-dark  { background: var(--nete-green); }
.nete-section-green { background: linear-gradient(135deg, var(--nete-green-mid), var(--nete-green)); }

.nete-section-header { text-align: center; margin-bottom: 56px; }
.nete-section-header-light .nete-section-title { color: var(--nete-white); }
.nete-section-header-light .nete-section-sub  { color: rgba(255,255,255,0.8); }

.nete-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--nete-green-light);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--nete-accent);
  padding-bottom: 4px;
}
.nete-label-light { color: var(--nete-accent); }
.nete-section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--nete-green);
  margin: 8px 0 16px;
  line-height: 1.4;
}
.nete-section-sub {
  color: var(--nete-text-light);
  font-size: 16px;
  margin: 0;
}

/* ============================================
   代表挨拶
   ============================================ */
.nete-greeting-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.nete-greeting-text p {
  color: var(--nete-text-light);
  margin-bottom: 20px;
  font-size: 15px;
}
.nete-greeting-sign {
  color: var(--nete-green) !important;
  font-size: 16px !important;
  border-top: 1px solid #ddd;
  padding-top: 16px;
  margin-top: 24px !important;
}
.nete-org-mini {
  background: var(--nete-white);
  border-radius: var(--nete-radius);
  box-shadow: var(--nete-shadow);
  padding: 32px;
  border-left: 4px solid var(--nete-accent);
}
.nete-org-mini-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nete-org-mini-item:last-child { border-bottom: none; }
.nete-org-mini-item > span { font-size: 11px; color: var(--nete-text-light); letter-spacing: 0.05em; }
.nete-org-mini-item > strong { font-size: 16px; color: var(--nete-green); }
.nete-org-mini-item > small { font-size: 12px; color: var(--nete-text-light); }

/* ============================================
   組織概要テーブル
   ============================================ */
.nete-table-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: var(--nete-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.nete-table { width: 100%; border-collapse: collapse; }
.nete-table th, .nete-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}
.nete-table th {
  background: rgba(255,255,255,0.05);
  color: var(--nete-accent);
  font-weight: 700;
  width: 180px;
  white-space: nowrap;
}
.nete-table td { color: rgba(255,255,255,0.9); }
.nete-table tr:last-child th,
.nete-table tr:last-child td { border-bottom: none; }
.nete-list { margin: 0; padding-left: 1.2em; }
.nete-list li { margin-bottom: 6px; font-size: 14px; }

/* ============================================
   タイムライン
   ============================================ */
.nete-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.nete-timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--nete-green-light), var(--nete-accent));
}
.nete-timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 32px;
  margin-bottom: 48px;
  position: relative;
}
.nete-timeline-item:last-child { margin-bottom: 0; }
.nete-timeline-year {
  font-weight: 900;
  font-size: 14px;
  color: var(--nete-green-light);
  text-align: right;
  padding-top: 4px;
  padding-right: 20px;
  letter-spacing: -0.02em;
}
.nete-timeline-content {
  background: var(--nete-white);
  border-radius: var(--nete-radius);
  padding: 24px 28px;
  box-shadow: var(--nete-shadow);
  border-left: 3px solid var(--nete-accent);
  position: relative;
}
.nete-timeline-content::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--nete-accent);
  border: 2px solid var(--nete-white);
}
.nete-timeline-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--nete-green);
  margin: 0 0 10px;
}
.nete-timeline-content p {
  font-size: 14px;
  color: var(--nete-text-light);
  margin: 0;
  line-height: 1.8;
}

/* ============================================
   組合員グリッド
   ============================================ */
.nete-members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nete-member-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--nete-radius);
  padding: 24px 20px;
  text-align: center;
  color: var(--nete-white);
  font-weight: 500;
  font-size: 14px;
  transition: all var(--nete-transition);
  backdrop-filter: blur(4px);
}
.nete-member-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================================
   賛助会
   ============================================ */
.nete-support-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.nete-support-main h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--nete-green);
  margin: 0 0 16px;
}
.nete-support-main > p {
  color: var(--nete-text-light);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 32px;
}
.nete-support-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nete-benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--nete-white);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 2px 8px rgba(26,74,46,0.08);
}
.nete-benefit-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--nete-accent);
  line-height: 1;
  min-width: 36px;
}
.nete-benefit-item p { margin: 0; font-size: 15px; color: var(--nete-text); font-weight: 500; }
.nete-info-card {
  background: var(--nete-white);
  border-radius: var(--nete-radius);
  box-shadow: var(--nete-shadow);
  padding: 32px;
  border-top: 4px solid var(--nete-accent);
}
.nete-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.nete-info-row:last-of-type { border-bottom: none; }
.nete-info-row > span { font-size: 11px; color: var(--nete-text-light); }
.nete-info-row > strong { font-size: 15px; color: var(--nete-green); }
.nete-info-cta { margin-top: 24px; text-align: center; }

/* ============================================
   研究会
   ============================================ */
.nete-research-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.nete-research-text {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
}

/* ============================================
   お問合せ
   ============================================ */
.nete-contact-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--nete-white);
  border-radius: var(--nete-radius);
  padding: 48px;
  box-shadow: var(--nete-shadow);
  border-top: 4px solid var(--nete-green);
}
/* CF7スタイル上書き */
.nete-contact-wrap .wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--nete-text);
  margin-bottom: 6px;
  margin-top: 20px;
}
.nete-contact-wrap .wpcf7-form input[type="text"],
.nete-contact-wrap .wpcf7-form input[type="email"],
.nete-contact-wrap .wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px !important;
  border: 1px solid #dde0da !important;
  border-radius: 8px !important;
  font-size: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  background: #fafaf8;
  transition: border-color var(--nete-transition), box-shadow var(--nete-transition);
  box-sizing: border-box;
}
.nete-contact-wrap .wpcf7-form input:focus,
.nete-contact-wrap .wpcf7-form textarea:focus {
  border-color: var(--nete-green-light) !important;
  box-shadow: 0 0 0 3px rgba(74,158,104,0.15) !important;
  outline: none;
  background: white;
}
.nete-contact-wrap .wpcf7-form .wpcf7-submit {
  background: var(--nete-green) !important;
  color: white !important;
  border: none !important;
  padding: 16px 48px !important;
  border-radius: 100px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all var(--nete-transition);
  margin-top: 24px;
  display: block;
  width: 100%;
}
.nete-contact-wrap .wpcf7-form .wpcf7-submit:hover {
  background: var(--nete-green-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,74,46,0.3);
}

/* ============================================
   フッター調整
   ============================================ */
.site-footer {
  background: #0d2a1a !important;
  color: rgba(255,255,255,0.7) !important;
  border-top: 1px solid rgba(200,168,75,0.3);
}
.site-footer a { color: rgba(255,255,255,0.6) !important; }
.site-footer-copyright { display: none; }

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 768px) {
  .nete-section { padding: 56px 0; }
  .nete-hero { padding: 70px 20px 48px; }
  .nete-hero-stats { grid-template-columns: repeat(3, 1fr); }
  .nete-stat-num { font-size: 28px; }
  .nete-greeting-grid { grid-template-columns: 1fr; }
  .nete-support-grid { grid-template-columns: 1fr; }
  .nete-members-grid { grid-template-columns: repeat(2, 1fr); }
  .nete-timeline::before { left: 0; display: none; }
  .nete-timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .nete-timeline-year { text-align: left; padding: 0; }
  .nete-contact-wrap { padding: 28px 20px; }
  .nete-hero-cta { flex-direction: column; }
  .nete-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .nete-members-grid { grid-template-columns: 1fr; }
}
