@charset "UTF-8";

:root {
      /* エコ革 白背景版 ブランドカラー・パレット */
      --ec-cyan: #00d2ff;          /* アクセント：水色・テクノロジー */
      --ec-navy: #001529;          /* メインテキスト・強調：深い紺 */
      --ec-navy-light: #002d5b;     /* サブ紺・ホバー用 */
      --ec-white: #ffffff;         /* 背景：完全な白 */
      --text-main: #001529;        /* メインテキスト色（紺） */
      --text-sub: #4a5568;         /* サブテキスト色（紺グレー） */
      --accent-glow: rgba(0, 210, 255, 0.4);
      --bg-card: #f8fafc;          /* カードの初期背景 */
      --radius: 10px;
    }

    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: "Inter", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
      color: var(--text-main);
      background: var(--ec-white);
      line-height: 1.7;
    }

    .container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

    /* --- Hero Section --- */
    .hero {
      padding: 230px 0 100px;
      text-align: center;
      background: radial-gradient(circle at 50% 50%, var(--ec-navy-light) 0%, var(--ec-navy) 100%);
      position: relative;
      color: var(--ec-white);
    }
    .hero-label {
      display: inline-block;
      padding: 4px 18px;
      border: 1px solid var(--ec-cyan);
      color: var(--ec-cyan);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 30px;
      letter-spacing: 0.15em;
      background: rgba(0, 210, 255, 0.05);
    }
    .hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.25; margin: 0 0 28px; font-weight: 800; letter-spacing: -0.02em; }
    .hero h1 span { color: var(--ec-cyan); text-shadow: 0 0 20px var(--accent-glow); }
    .hero p { font-size: 19px; max-width: 850px; margin: 0 auto 40px; color: #cbd5e1; }

    /* --- Sections --- */
    section { padding: 100px 0; }
    .section-head { text-align: center; margin-bottom: 60px; }
    .section-label { color: var(--ec-cyan); font-weight: 700; font-size: 14px; display: block; margin-bottom: 12px; letter-spacing: 0.3em; text-transform: uppercase; }
    h2 { font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin: 0; color: var(--ec-navy); }
    
    /* --- 図解グラフィック領域スタイル --- */
    .graphic-container {
      text-align: center;
      margin: 40px auto 0;
      max-width: 900px;
      background: var(--bg-card);
      padding: 30px;
      border-radius: var(--radius);
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    }
    .graphic-container img {
      width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    /* --- Layout Split (図と説明の横並び) --- */
    .why-us { background: var(--bg-card); border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
    .split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
    .why-list { list-style: none; padding: 0; margin-top: 20px; }
    .why-list li { position: relative; padding-left: 30px; margin-bottom: 16px; font-size: 16px; color: var(--text-main); }
    .why-list li::before { content: ""; position: absolute; left: 0; top: 12px; width: 15px; height: 3px; background: var(--ec-cyan); }

    /* --- Status Grid (通常時・停電時の図解並び) --- */
    .status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
    .status-item { background: var(--ec-white); padding: 30px; border-radius: var(--radius); border: 1px solid #e2e8f0; }
    .status-title { font-size: 20px; font-weight: 800; color: var(--ec-navy); margin-bottom: 20px; text-align: center; }
    .status-img-box {
      background: var(--bg-card);
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .status-img-box img { width: 100%; height: auto; display: block; }
    .status-item p { color: var(--text-sub); margin: 0; font-size: 15px; }

    /* --- CTA --- */
    .cta { padding: 120px 0; background: radial-gradient(circle at top, var(--ec-navy-light), var(--ec-navy)); text-align: center; color: var(--white); }
    .cta h2 { color: var(--ec-white); font-weight: 800; margin: 0 0 20px; }
    .cta p { 
      color: #cbd5e1; 
      font-size: 16px;
      line-height: 1.9;
      margin: 20px auto 35px;
    }
    .btn {
      display: inline-block; background: var(--ec-cyan); color: var(--ec-navy); padding: 22px 70px; border-radius: 4px;
      text-decoration: none; font-weight: 800; font-size: 18px; transition: 0.3s; letter-spacing: 0.1em; box-shadow: 0 0 20px var(--accent-glow);
    }
    .btn:hover { background: var(--ec-white); color: var(--ec-navy); transform: scale(1.05); box-shadow: 0 0 40px var(--accent-glow); }

    @media (max-width: 900px) {
      .split, .status-grid { grid-template-columns: 1fr; }
    }

/* WordPressテーマ側の共通CSSに文字サイズを上書きされる場合の補正 */
#battery .hero p {
  font-size: 19px;
  line-height: 1.7;
}

#battery .section-head p {
  font-size: 16px;
  line-height: 1.9;
}

#battery .status-item p {
  font-size: 15px;
  line-height: 1.7;
}

/* Social Role説明文 */
#battery .section-head p {
  font-size: 16px !important;
  line-height: 1.9;
}

/* Mechanism説明文 */
#battery .why-us p {
  font-size: 16px !important;
  line-height: 1.9;
}

/* Mechanism箇条書き */
#battery .why-list li {
  font-size: 16px !important;
  line-height: 1.8;
}

/* 通常時・停電時説明文 */
#battery .status-item p {
  font-size: 15px !important;
  line-height: 1.7;
}