:root{
  --blue:#082f6b;
  --blue-dark:#062454;
  --green:#21a844;
  --green-dark:#178d37;
  --muted:#5c6778;
  --line:#e3ebf3;
  --bg:#f7fafc;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Hiragino Kaku Gothic ProN","Yu Gothic","Meiryo",Arial,sans-serif;
  color:var(--blue-dark);
  background:#fff;
  line-height:1.7;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%;height:auto}
.container{width:min(1180px,calc(100% - 48px));margin:0 auto}

/* Header */
.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(8,47,107,.08);
}
.header-inner{
  height:92px;
  display:flex;align-items:center;justify-content:space-between;gap:28px;
}
.logo img{width:330px;height:auto;object-fit:contain}
.nav{
  display:flex;align-items:center;gap:58px;
  color:var(--blue-dark);font-weight:900;font-size:15px;
}
.nav a{position:relative;padding:34px 0}
.nav a.active::after,
.nav a:hover::after{
  content:"";position:absolute;left:0;right:0;bottom:12px;height:4px;background:var(--green);border-radius:10px;
}
.header-cta{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-width:142px;height:50px;padding:0 18px;border-radius:8px;
  background:linear-gradient(90deg,var(--green),var(--green-dark));
  color:#fff;font-weight:900;box-shadow:0 8px 18px rgba(33,168,68,.22);
}
.header-cta:hover{transform:translateY(-1px)}

.company-hero .kicker-large,
.company-hero h1,
.company-hero p{
  color:#082f6b !important;
}

/* Hero */
.hero{
  min-height:620px;
  position:relative;
  background:url("../images/web/01_hero/hero-main-1280x576.webp") center center/cover no-repeat;
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.96) 23%,rgba(255,255,255,.83) 36%,rgba(255,255,255,.40) 56%,rgba(255,255,255,.06) 75%,rgba(255,255,255,0) 100%);
}
.hero-content{
  position:relative;z-index:1;
  min-height:620px;
  display:flex;flex-direction:column;justify-content:center;
  align-items:flex-start;
  padding-top:14px;
}
.hero h1{
  margin:0 0 24px;
  font-size:clamp(36px,5vw,52px);
  line-height:1.3;
  color:var(--blue);
  font-weight:950;
  letter-spacing:.02em;
  max-width:720px;
}
.hero p{
  margin:0 0 30px;
  font-size:18px;
  line-height:1.85;
  color:#24466f;
  font-weight:750;
  max-width:620px;
}
.hero-actions{
  display:flex;align-items:center;gap:18px;flex-wrap:wrap;
}
.hero-actions .btn-primary,
.hero-actions .btn-outline{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  width:210px;height:58px;border-radius:8px;
  font-weight:900;font-size:16px;
}
.hero-actions .btn-primary{
  background:linear-gradient(90deg,var(--green),var(--green-dark));
  color:#fff;
  box-shadow:0 10px 18px rgba(33,168,68,.20);
}
.hero-actions .btn-outline{
  background:#fff;border:2px solid #9fb7d7;color:var(--blue);
}
.arrow{font-size:22px;line-height:1}

/* Issues */
.issue-strip{
  background:#f7fbff;
  padding:30px 0 34px;
}
.issue-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
  background:#fff;border-radius:4px;
}
.issue-item{
  display:flex;align-items:center;gap:22px;
  padding:20px 28px;border-right:1px solid var(--line);
}
.issue-item:last-child{border-right:none}
.issue-icon{
  width:110px;height:110px;flex:0 0 auto;
  display:grid;place-items:center;
}
.issue-icon img{
  width:110px;height:110px;object-fit:contain;
}
.issue-item h3{
  margin:0 0 6px;
  font-size:20px;font-weight:950;color:var(--blue);
}
.issue-item p{
  margin:0;font-size:14px;color:var(--muted);font-weight:700;line-height:1.8;
}

/* Common sections */
.section{padding:28px 0}
.section-head{text-align:center;margin-bottom:22px}
.kicker{
  color:var(--green);
  font-weight:900;
  font-size:14px;
  line-height:1;
}
.section-title{
  margin:6px 0 0;
  color:var(--blue-dark);
  font-size:28px;
  line-height:1.35;
  font-weight:950;
}

/* Services */
.services{padding-top:20px}
.service-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;
}
.service-card{
  background:#fff;border:1px solid var(--line);
  border-radius:12px;overflow:hidden;
  box-shadow:0 8px 18px rgba(8,47,107,.06);
}
.service-card img{
  width:100%;aspect-ratio:16/9;object-fit:cover;
}
.service-card-body{padding:16px 18px 14px}
.service-title{
  display:flex;align-items:center;gap:8px;
  margin:0 0 8px;
  font-size:18px;font-weight:950;color:var(--blue);
}
.service-badge{
  width:22px;height:22px;border-radius:50%;
  display:grid;place-items:center;
  border:1px solid #b8e4c1;background:#eef8f0;
  color:var(--green);font-size:12px;
}
.service-card p{
  margin:0;font-size:13px;line-height:1.75;
  color:var(--muted);font-weight:700;min-height:46px;
}
.more-link{
  display:flex;justify-content:flex-end;align-items:center;gap:8px;
  margin-top:12px;font-size:14px;color:var(--blue);font-weight:900;
}
.more-link span{color:var(--green);font-size:20px}

/* Reasons */
.reason-section{padding-top:18px}
.reason-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:22px;
}
.reason-card{
  background:#fff;border:1px solid var(--line);border-radius:14px;
  box-shadow:0 7px 16px rgba(8,47,107,.05);
  text-align:center;min-height:205px;
  padding:26px 22px 24px;
  display:flex;flex-direction:column;align-items:center;
}
.reason-icon{
  width:82px;height:62px;
  display:grid;place-items:center;
  margin-bottom:12px;
}
.reason-icon svg{width:52px;height:52px;stroke:var(--green);fill:none;stroke-width:2.2}
.reason-card h3{
  margin:0 0 8px;color:var(--green);font-size:20px;font-weight:950;
}
.reason-card p{
  margin:0;color:#4d5d72;font-size:14px;line-height:1.65;font-weight:750;
}

.pale-illust{
  margin-top:30px;
  text-align:center;
}

.pale-illust img{
  width:100%;
  max-width:577px;
  height:auto;
  display:block;
  margin:0 auto;
}

/* 個人情報保護方針：送信ボタンの上に中央配置 */
.privacy-row{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #082f6b;
  white-space: nowrap;
}

/* checkbox が普通の input の幅100%を引き継がないようにする */
.privacy-row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
}

/* 送信ボタン */
.submit-row{
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Flow */
.flow-section{padding-top:22px}
.flow{
  display:grid;grid-template-columns:repeat(7,1fr);gap:12px;position:relative;
}
.flow-step{text-align:center;position:relative}
.flow-step:not(:last-child)::after{
  content:"";position:absolute;top:46px;left:calc(50% + 40px);width:56px;border-top:4px dotted var(--green);
}
.step-num{
  width:22px;height:22px;border-radius:50%;
  background:var(--green);color:#fff;
  display:grid;place-items:center;
  font-size:12px;font-weight:900;
  position:absolute;left:50%;top:-4px;transform:translateX(-46px);
}
.flow-icon{
  width:88px;height:88px;border-radius:50%;
  border:1px solid var(--line);background:#fff;
  box-shadow:0 6px 14px rgba(8,47,107,.06);
  display:grid;place-items:center;
  margin:0 auto 8px;
}
.flow-icon img{width:48px;height:48px;object-fit:contain}
.flow-step h3{margin:0 0 3px;font-size:14px;color:var(--blue);font-weight:950}
.flow-step p{margin:0;font-size:11px;color:var(--muted);line-height:1.55;font-weight:700}

/* Target */
.target-section{padding-top:28px}
.target-grid{
  display:grid;grid-template-columns:repeat(6,1fr);gap:16px;
}
.target-card{
  background:#fff;border:1px solid var(--line);border-radius:12px;
  box-shadow:0 6px 16px rgba(8,47,107,.05);
  min-height:110px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:10px 8px;
}
.target-card img{
  height:52px;width:auto;object-fit:contain;margin-bottom:8px;
}
.target-label{
  font-size:14px;color:var(--blue);font-weight:900;line-height:1.3;text-align:center;
}

/* News */
.news-section{padding-top:32px;padding-bottom:28px}
.news-head-row{
  display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:18px;
}
.news-head-row .section-head{text-align:left;margin:0}
.news-list-link{font-size:14px;color:var(--blue);font-weight:900}
.news-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
}
.news-card{
  background:#fff;border:1px solid var(--line);border-radius:12px;
  box-shadow:0 6px 16px rgba(8,47,107,.05);
  padding:12px;
  display:grid;grid-template-columns:124px 1fr;gap:14px;align-items:center;
}
.news-card img{
  width:124px;height:86px;object-fit:cover;border-radius:8px;
}
.news-meta{
  display:flex;align-items:center;gap:8px;
  margin-bottom:4px;font-size:12px;color:#506075;font-weight:850;
}
.badge{
  background:#0f63b7;color:#fff;font-size:11px;font-weight:900;
  padding:2px 8px;border-radius:4px;
}
.badge.green{background:var(--green)}
.news-card h3{
  margin:0 0 5px;font-size:16px;line-height:1.45;color:var(--blue);font-weight:950;
}
.news-card p{
  margin:0;font-size:12px;line-height:1.55;color:var(--muted);font-weight:700;
}

/* CTA band */
.big-cta{
  background:linear-gradient(90deg,#062d70 0%,#0c4ea1 70%,#0a4a95 100%);
  color:#fff;
  position:relative;overflow:visible;
  min-height:132px;
}
.big-cta::before{
  content:"";position:absolute;right:0;top:0;bottom:0;width:34%;
  background:
    radial-gradient(circle at 30% 55%, rgba(32,168,74,.28), rgba(32,168,74,0) 58%),
    radial-gradient(circle at 20% 35%, rgba(255,255,255,.18) 1px, transparent 2px);
  background-size:auto, 28px 28px;
  opacity:.95;
}
.big-cta-inner{
  position:relative;z-index:1;
  min-height:132px;
  display:grid;grid-template-columns:1.25fr .95fr 190px;
  align-items:center;gap:24px;
}
.big-cta-copy h2{
  margin:0 0 4px;
  font-size:28px;line-height:1.25;font-weight:950;color:#fff;
}
.big-cta-copy p{
  margin:0;font-size:14px;line-height:1.6;font-weight:750;color:rgba(255,255,255,.88);
}
.big-cta-center{
  display:flex;justify-content:center;
}
.big-cta-btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-width:300px;height:52px;padding:0 24px;
  border-radius:999px;background:linear-gradient(90deg,var(--green),var(--green-dark));
  color:#fff;font-size:16px;font-weight:900;
  box-shadow:0 10px 18px rgba(33,168,68,.20);
}
.cta-icon{font-size:1.5em;line-height:1}
.support-person{
  align-self:end;justify-self:end;line-height:0;
  width:190px;height:132px;overflow:visible;position:relative;
}
.support-person img{
  height:180px;width:auto;object-fit:contain;object-position:bottom right;
  position:absolute;right:0;bottom:0;
}

/* Footer */
.site-footer{
  background:#05275e;color:#fff;padding:30px 0 16px;
}
.footer-grid{
  display:grid;grid-template-columns:1.55fr 1fr 1fr 1fr 1.4fr;gap:28px;
}
.footer-logo{font-size:32px;font-weight:950;margin-bottom:8px}
.footer-col h4{margin:0 0 10px;font-size:15px}
.footer-col p,.footer-col a{
  display:block;margin:4px 0;color:rgba(255,255,255,.78);font-size:13px;font-weight:650;
}
.socials{display:flex;gap:14px;margin-top:12px;font-weight:900}
.contact-phone{font-size:22px!important;color:#fff!important;font-weight:950!important}
.copyright{
  margin-top:18px;padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
  text-align:center;font-size:12px;color:rgba(255,255,255,.65);
}
.to-top{
  position:fixed;right:16px;bottom:16px;z-index:20;
  width:40px;height:40px;border-radius:50%;
  display:grid;place-items:center;background:#08306d;color:#fff;border:1px solid rgba(255,255,255,.35)
}

/* EneBankのサポート内容：强制缩小 icon */
/* EneBankのサポート内容：icon尺寸 + 自然箭头 */
.sub-section.flow-section .support-flow-grid {
  overflow: visible;
}

/* 卡片允许箭头超出 */
.sub-section.flow-section .support-step {
  position: relative;
  overflow: visible;
}

/* 强制缩小 icon */
.sub-section.flow-section .support-step img.service-page-img {
  width: 76px !important;
  height: 76px !important;
  max-width: 76px !important;
  max-height: 76px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 18px auto 18px !important;
}

/* 卡片之间的绿色虚线 */
.sub-section.flow-section .support-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 96px;
  right: -31px;
  width: 30px;
  border-top: 3px dotted #21a64b;
  z-index: 5;
}

/* 箭头头部：不用文字，改成CSS画出来，更自然 */
.sub-section.flow-section .support-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -39px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #21a64b;
  border-right: 3px solid #21a64b;
  transform: rotate(45deg);
  z-index: 6;
}

/* 手机端隐藏箭头 */
@media (max-width: 900px) {
  .sub-section.flow-section .support-step::before,
  .sub-section.flow-section .support-step::after {
    display: none !important;
  }
}
/* 導入までの流れ：调整虚线和箭头位置 */
.section.flow-section .flow {
  overflow: visible;
}

.section.flow-section .flow-step {
  position: relative;
  overflow: visible;
}

/* 虚线：放在圆形 icon 的中间高度 */
.section.flow-section .flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 43px;
  right: -28px;
  width: 58px;
  border-top: 3px dotted #20a84a;
  z-index: 5;
}

/* 箭头：放在虚线末尾 */
.section.flow-section .flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 35px;
  right: -32px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #20a84a;
  border-right: 2px solid #20a84a;
  transform: rotate(45deg);
  z-index: 6;
}

/* 手机端隐藏箭头 */
@media (max-width: 900px) {
  .section.flow-section .flow-step::before,
  .section.flow-section .flow-step::after {
    display: none !important;
  }
}

@media (max-width:1100px){
  .nav{gap:30px}
  .service-grid,.reason-grid{grid-template-columns:repeat(2,1fr)}
  .flow{grid-template-columns:repeat(4,1fr)}
  .flow-step:not(:last-child)::after{display:none}
  .target-grid{grid-template-columns:repeat(3,1fr)}
  .news-grid{grid-template-columns:1fr}
  .issue-grid{grid-template-columns:1fr}
  .issue-item{border-right:none;border-bottom:1px solid var(--line)}
  .issue-item:last-child{border-bottom:none}
  .big-cta-inner{grid-template-columns:1fr}
  .big-cta-center{justify-content:flex-start}
  .support-person{display:none}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  .container{width:min(100% - 24px,1180px)}
  .header-inner{height:74px}
  .logo img{width:190px}
  .nav{display:none}
  .header-cta{min-width:auto;height:42px;padding:0 12px;font-size:13px}
  .hero{min-height:520px;background-position:70% center}
  .hero-content{min-height:520px}
  .hero::before{background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.78),rgba(255,255,255,.4))}
  .hero-actions .btn-primary,.hero-actions .btn-outline{width:100%}
  .service-grid,.reason-grid,.target-grid{grid-template-columns:1fr}
  .flow{grid-template-columns:repeat(2,1fr)}
  .news-card{grid-template-columns:1fr}
  .news-card img{width:100%;height:auto;aspect-ratio:16/9}
  .footer-grid{grid-template-columns:1fr}
  .big-cta-btn{min-width:0;width:100%}
}

/* ===== Section 4 redesign: エネルギー自給自足の仕組み ===== */
.battery-system-section .detail-section-number{
  text-align:center;
  margin-bottom:34px;
}
.eb-system-redesign{
  display:grid;
  grid-template-columns: 1fr 58px 1fr 58px 1.08fr 92px 1.05fr;
  align-items:center;
  gap:0;
  max-width:1180px;
  margin:0 auto;
}
.eb-system-card{
  min-height:205px;
  padding:26px 24px 24px;
  border:1px solid #e2eaf3;
  border-radius:18px;
  background:#fff;
  box-shadow:0 8px 24px rgba(14, 38, 72, .04);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.eb-system-card h3{
  margin:18px 0 10px;
  color:#08275f;
  font-size:22px;
  font-weight:800;
  letter-spacing:.03em;
  line-height:1.35;
}
.eb-system-card p{
  margin:0;
  color:#415064;
  font-size:15px;
  font-weight:700;
  line-height:1.75;
}
.eb-system-card.is-storage{
  border-color:#b7e3bf;
  background:linear-gradient(180deg,#fbfffb 0%,#f7fff8 100%);
}
.eb-system-img{
  width:112px;
  height:82px;
  object-fit:contain;
  display:block;
}
.eb-system-img.storage{
  width:116px;
  height:96px;
}
.eb-solar-icon{
  width:96px;
  height:96px;
  color:#1b9a43;
}
.eb-flow-arrow{
  width:58px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.eb-flow-arrow::before{
  content:"";
  width:48px;
  height:4px;
  border-radius:999px;
  background:#15933a;
  display:block;
}
.eb-flow-arrow::after{
  content:"";
  position:absolute;
  width:14px;
  height:14px;
  border-top:4px solid #15933a;
  border-right:4px solid #15933a;
  transform:rotate(45deg);
  margin-left:30px;
}
.eb-branch{
  height:255px;
  position:relative;
}
.eb-branch .branch-stem{
  position:absolute;
  left:26px;
  top:33px;
  width:3px;
  height:188px;
  background:#15933a;
  border-radius:999px;
}
.eb-branch .branch-line{
  position:absolute;
  height:3px;
  background:#15933a;
  border-radius:999px;
}
.eb-branch .branch-line::after{
  content:"";
  position:absolute;
  right:-2px;
  top:50%;
  width:12px;
  height:12px;
  border-top:3px solid #15933a;
  border-right:3px solid #15933a;
  transform:translateY(-50%) rotate(45deg);
}
/* 上下の線は左側の余分な部分を消し、縦線から右側だけ表示 */
.eb-branch .branch-top{
  top:33px;
  left:26px;
  width:35px;
}
.eb-branch .branch-mid{
  top:50%;
  left:0;
  width:61px;
  transform:translateY(-50%);
}
.eb-branch .branch-bottom{
  bottom:33px;
  left:26px;
  width:35px;
}
.eb-use-list{
  display:grid;
  grid-template-rows:repeat(3, 1fr);
  gap:16px;
}
.eb-use-card{
  min-height:78px;
  padding:14px 18px;
  border:1px solid #e2eaf3;
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 22px rgba(14, 38, 72, .035);
  display:flex;
  align-items:center;
  gap:16px;
}
.eb-use-card svg{
  width:40px;
  height:40px;
  flex:0 0 40px;
  stroke:#08275f;
  stroke-width:3.2;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.eb-use-card h4{
  margin:0 0 5px;
  color:#08275f;
  font-size:18px;
  font-weight:800;
  line-height:1.2;
}
.eb-use-card p{
  margin:0;
  color:#4d596a;
  font-size:14px;
  font-weight:700;
}
@media (max-width: 1024px){
  .eb-system-redesign{
    grid-template-columns:1fr;
    gap:18px;
  }
  .eb-flow-arrow{
    width:100%;
    height:28px;
    transform:rotate(90deg);
  }
  .eb-branch{
    display:none;
  }
  .eb-use-list{
    grid-template-rows:auto;
  }
}

/* ===== Sub pages generated from latest index/style ===== */
.page-hero{position:relative;min-height:340px;overflow:hidden;background:#eef6ff;display:flex;align-items:center}
.page-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.88) 40%,rgba(255,255,255,.25) 72%,rgba(255,255,255,.04) 100%);z-index:1}
.page-hero.has-dark::before{background:linear-gradient(90deg,rgba(5,35,86,.96) 0%,rgba(5,35,86,.84) 38%,rgba(5,35,86,.34) 68%,rgba(5,35,86,.05) 100%)}
.page-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.page-hero-content{position:relative;z-index:2;padding:56px 0;max-width:650px}
.page-hero .kicker-large{color:#082f6b;;font-size:24px;font-weight:950;margin-bottom:10px}
.service-hero .kicker-large{
  color:#ffffff}
.page-hero h1{margin:0 0 18px;color:var(--blue);font-size:clamp(42px,6vw,68px);line-height:1.12;font-weight:950;letter-spacing:.02em}
.page-hero.has-dark h1,.page-hero.has-dark p{color:#fff}
.page-hero p{margin:0;color:#183b6c;font-size:18px;line-height:1.9;font-weight:750}
.breadcrumb{padding:15px 0;font-size:13px;color:#516176;border-bottom:1px solid var(--line);background:#fff}
.breadcrumb span{color:var(--blue);font-weight:850}
.sub-section{padding:48px 0;background:#fff}.sub-section.soft{background:#f7fbff}
.block-title{display:flex;align-items:center;gap:12px;color:var(--blue);font-size:26px;font-weight:950;margin:0 0 28px}
.block-title::before{content:"";width:5px;height:32px;background:var(--green);border-radius:8px}
.white-card{background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:0 8px 18px rgba(8,47,107,.06)}
.green-btn{display:inline-flex;align-items:center;justify-content:center;gap:12px;height:50px;min-width:170px;padding:0 28px;border-radius:8px;background:linear-gradient(90deg,var(--green),var(--green-dark));color:#fff;font-weight:900;box-shadow:0 8px 16px rgba(33,168,68,.20)}
.services-page-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.service-page-card{overflow:hidden}.service-page-card .service-page-img{width:100%;aspect-ratio:1.08/1;object-fit:cover}
.service-page-card .service-page-body{padding:0 26px 28px;position:relative}
.service-page-icon{width:82px;height:82px;border-radius:50%;display:grid;place-items:center;background:#fff;border:1px solid #dfe8f1;box-shadow:0 8px 18px rgba(8,47,107,.08);margin:-41px 0 22px}
.service-page-icon svg{width:42px;height:42px;stroke:var(--green);fill:none;stroke-width:2.2}
.service-page-card h2{margin:0 0 14px;color:var(--blue);font-size:28px;font-weight:950}.service-page-card p{margin:0 0 26px;color:#4c5c70;font-weight:700;line-height:1.85}
.target-rich-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:22px}.target-rich-card{text-align:center;padding:24px 16px;min-height:182px}
.target-rich-card svg{width:52px;height:52px;stroke:var(--green);fill:none;stroke-width:2;margin:0 auto 12px}.target-rich-card h3{margin:0 0 8px;color:var(--blue);font-size:16px;font-weight:950}.target-rich-card p{margin:0;color:#5c6778;font-size:12px;line-height:1.65;font-weight:700}
.support-flow-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:18px}.support-step{position:relative;text-align:center;padding:18px 14px;min-height:196px}
.support-step:not(:last-child)::after{content:"";position:absolute;right:-22px;top:72px;width:28px;border-top:3px dotted var(--green)}
.support-step .num{width:24px;height:24px;display:grid;place-items:center;background:var(--green);color:#fff;border-radius:50%;font-size:13px;font-weight:950;margin:0 auto 8px}
.support-step svg{width:54px;height:54px;stroke:var(--green);fill:none;stroke-width:2;margin:0 auto 8px}.support-step h3{margin:0 0 8px;color:var(--blue);font-size:16px;font-weight:950}.support-step p{margin:0;font-size:12px;line-height:1.65;color:#5c6778;font-weight:700}
.contact-main-grid{display:grid;grid-template-columns:330px 1fr;gap:34px}.contact-note{padding:32px 0;color:#223d63;font-weight:700;line-height:2.1}.contact-note .pale-illust{margin-top:55px;opacity:.14}.contact-note .pale-illust svg{width:180px;height:180px}
.contact-form-card{padding:30px 36px 34px}.form-grid{display:grid;grid-template-columns:180px 1fr;gap:16px 18px;align-items:center}
.form-grid label{color:#1d3152;font-size:14px;font-weight:900}.required{color:#fff;background:#ff6a70;border-radius:4px;padding:1px 6px;font-size:11px;margin-left:8px}
.form-grid input,.form-grid textarea{width:100%;border:1px solid #d6e0ea;border-radius:7px;padding:13px 16px;font:inherit;font-size:14px}.form-grid textarea{min-height:120px;resize:vertical}
.radio-row{display:flex;flex-wrap:wrap;gap:18px;font-size:13px;color:#2b3f5d;font-weight:800}.privacy-row{grid-column:1/-1;display:flex;align-items:center;gap:10px;color:var(--green);font-weight:900;margin-top:8px}.submit-row{grid-column:1/-1;text-align:center}.submit-row .green-btn{width:330px;border:0;font:inherit;cursor:pointer}
.contact-lower-grid{display:grid;grid-template-columns:1fr 1.45fr;gap:28px}.contact-info-card,.faq-card,.after-flow-card,.map-card{padding:28px 32px}
.info-list{display:grid;gap:22px}.info-item{display:flex;gap:18px;align-items:center;padding-bottom:10px;border-bottom:1px solid var(--line)}.info-item:last-child{border-bottom:0;padding-bottom:0}
.info-icon{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:#eff8f0}.info-icon svg{width:32px;height:32px;stroke:var(--green);fill:none;stroke-width:2}.info-item strong{color:var(--blue);font-size:23px}.info-item p{margin:2px 0;font-size:13px;line-height:1.4}
.faq-item{display:grid;grid-template-columns:42px 1fr 24px;gap:12px;align-items:start;padding:18px 0;border-bottom:1px solid var(--line)}.faq-item:last-child{border-bottom:0}.qmark{width:34px;height:34px;border-radius:50%;background:#eff8f0;color:var(--green);display:grid;place-items:center;font-weight:950}.plus{color:var(--green);font-size:22px;font-weight:900}
.after-flow{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}.after-step{position:relative;text-align:center}.after-step:not(:last-child)::after{content:"";position:absolute;top:48px;right:-26px;width:44px;border-top:3px dotted var(--green)}.after-step .num{width:24px;height:24px;background:var(--green);color:#fff;border-radius:50%;display:grid;place-items:center;margin:0 auto 8px;font-size:12px;font-weight:950}.after-step svg{width:62px;height:62px;stroke:var(--green);fill:none;stroke-width:2;margin:0 auto 10px}
.map-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:28px;align-items:stretch}.map-box{min-height:220px;border-radius:12px;overflow:hidden;background:linear-gradient(45deg,rgba(255,255,255,.65),rgba(255,255,255,.2)),repeating-linear-gradient(0deg,#eef3f8,#eef3f8 24px,#e0e8f1 26px),repeating-linear-gradient(90deg,#eef3f8,#eef3f8 28px,#dfe8f1 30px);position:relative}.map-pin{position:absolute;left:52%;top:42%;background:#e64538;width:38px;height:38px;border-radius:50% 50% 50% 0;transform:translate(-50%,-50%) rotate(-45deg)}.map-pin::after{content:"";position:absolute;width:14px;height:14px;background:#fff;border-radius:50%;left:12px;top:12px}.access-info{color:#233b62;font-weight:700;line-height:1.8}
.news-tabs{display:grid;grid-template-columns:repeat(6,1fr);gap:0;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:0 8px 18px rgba(8,47,107,.06);overflow:hidden;margin-bottom:34px}.news-tabs a{text-align:center;padding:16px 10px;font-weight:950;color:var(--blue);border-right:1px solid var(--line)}.news-tabs a:last-child{border-right:0}.news-tabs a.active{background:var(--green);color:#fff;border-radius:999px;margin:8px 18px;padding:8px 10px}
.news-layout{display:grid;grid-template-columns:1fr 300px;gap:34px;align-items:start}.featured-news{display:grid;grid-template-columns:360px 1fr;gap:34px;padding:20px;margin-bottom:24px;position:relative}.featured-news .ribbon{position:absolute;left:20px;top:20px;background:var(--green);color:#fff;padding:8px 16px;border-radius:8px 0 8px 0;font-weight:950}.featured-news img{width:100%;height:250px;object-fit:cover;border-radius:10px}.news-date{color:#526278;font-size:13px;font-weight:800}.news-category{display:inline-block;background:#0f63b7;color:#fff;padding:3px 8px;border-radius:4px;font-size:12px;font-weight:900;margin-left:8px}.featured-news h2{color:var(--blue);font-size:26px;line-height:1.5}
.article-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0;overflow:hidden}.article-card{padding:20px;display:grid;grid-template-columns:150px 1fr;gap:18px;border-right:1px solid var(--line);border-bottom:1px solid var(--line)}.article-card:nth-child(2n){border-right:0}.article-card img{width:150px;height:128px;border-radius:10px;object-fit:cover}.article-card h3{color:var(--blue);font-size:17px;line-height:1.55;margin:8px 0 12px}.read-more{color:var(--green);font-weight:900}.sidebar-card{padding:26px 24px;margin-bottom:28px}.popular-item{display:grid;grid-template-columns:30px 78px 1fr;gap:10px;padding:14px 0;border-bottom:1px solid var(--line)}.rank{width:24px;height:24px;background:var(--green);color:#fff;border-radius:50%;display:grid;place-items:center;font-weight:950}.popular-item img{width:78px;height:58px;object-fit:cover;border-radius:7px}.popular-item h4{margin:0 0 6px;color:var(--blue);font-size:13px;line-height:1.45}.side-cta{text-align:center;background:#f1f7ff}.side-cta h3{color:var(--blue);font-size:24px}.pagination{display:flex;justify-content:center;gap:22px;align-items:center;margin-top:34px}.pagination a{width:38px;height:38px;display:grid;place-items:center;border-radius:8px;color:var(--blue);font-weight:900}.pagination a.active{background:var(--green);color:#fff}
.message-grid{display:grid;grid-template-columns:1fr 520px;gap:56px;align-items:center}.message-text{color:#243d63;font-weight:700;line-height:2.05}.ceo-sign{text-align:right;font-size:26px;color:#111;font-weight:900}.ceo-photo{height:320px;background:linear-gradient(90deg,#eef3f8,#fff);border-radius:12px;overflow:hidden;display:grid;place-items:center}.ceo-photo img{width:100%;height:100%;object-fit:cover}.value-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:38px}.value-card{padding:26px 30px;display:grid;grid-template-columns:86px 1fr;gap:18px;align-items:center}.value-card svg{width:64px;height:64px;stroke:var(--green);fill:none;stroke-width:2}.value-card h3{color:var(--green);margin:0 0 6px;font-size:20px}.company-two-col{display:grid;grid-template-columns:1fr 1fr;gap:34px}.company-table{width:100%;border-collapse:collapse;overflow:hidden;border-radius:12px}.company-table th,.company-table td{border:1px solid var(--line);padding:18px 20px;text-align:left;vertical-align:top;font-weight:700}.company-table th{width:150px;color:var(--blue);background:#f8fbff}.business-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.business-card{overflow:hidden}.business-card img{width:100%;height:120px;object-fit:cover}.business-card div{padding:14px 16px}.business-card h3{margin:0 0 8px;color:var(--blue)}.access-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:0;overflow:hidden}
@media(max-width:1100px){.services-page-grid,.reason-grid,.service-grid{grid-template-columns:repeat(2,1fr)}.target-rich-grid,.support-flow-grid,.target-grid{grid-template-columns:repeat(3,1fr)}.support-step:not(:last-child)::after,.after-step:not(:last-child)::after{display:none}.contact-main-grid,.contact-lower-grid,.news-layout,.message-grid,.company-two-col,.map-grid,.access-grid{grid-template-columns:1fr}.featured-news{grid-template-columns:1fr}.article-grid{grid-template-columns:1fr}.article-card{border-right:0}}
@media(max-width:760px){.page-hero{min-height:300px}.services-page-grid,.target-rich-grid,.support-flow-grid,.after-flow,.value-grid,.business-grid{grid-template-columns:1fr}.form-grid{grid-template-columns:1fr}.privacy-row,.submit-row{grid-column:1/-1}.submit-row .green-btn{width:100%}.news-tabs{grid-template-columns:repeat(2,1fr)}.article-card{grid-template-columns:1fr}.article-card img{width:100%;height:auto;aspect-ratio:16/9}}


/* =========================================================
   EneBank service detail pages
   battery.html / ev-charger.html / low-voltage.html / high-voltage.html
   ========================================================= */
.detail-body .site-header{box-shadow:0 2px 12px rgba(8,47,107,.04)}
.detail-hero{position:relative;min-height:420px;background:#f3f8fc;overflow:hidden;display:flex;align-items:center}
.detail-hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center}
.detail-hero::before{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.92) 28%,rgba(255,255,255,.55) 52%,rgba(255,255,255,.08) 78%,rgba(255,255,255,0) 100%)}
.detail-hero-inner{position:relative;z-index:2;min-height:420px;display:flex;align-items:center}
.detail-hero-copy{max-width:650px;padding:56px 0}
.detail-hero h1{margin:0 0 20px;color:var(--blue);font-size:clamp(44px,6vw,72px);line-height:1.15;font-weight:950;letter-spacing:.06em}
.detail-hero p{margin:0 0 28px;color:#173760;font-size:20px;line-height:1.85;font-weight:850;letter-spacing:.02em}
.detail-hero .btn-primary,.detail-hero .btn-outline{width:auto;min-width:210px;padding:0 24px}
.detail-hero-battery .btn-primary{min-width:285px}.detail-hero-battery .btn-outline{min-width:245px}
.detail-hero-low,.detail-hero-high{min-height:430px}.detail-hero-ev{min-height:400px}
.detail-section-number{margin:0 0 24px;text-align:center;color:var(--blue);font-size:30px;line-height:1.45;font-weight:950;letter-spacing:.05em}
.narrow-center{max-width:920px;text-align:center}.narrow-center p{font-size:16px;line-height:2.15;color:#1c3356;font-weight:750;margin:0 auto}.detail-section-tight{padding-top:34px;padding-bottom:34px}.detail-intro{padding-top:42px;padding-bottom:34px}
.detail-grid{display:grid;gap:18px}.detail-grid-4{grid-template-columns:repeat(4,1fr)}.detail-grid-5{grid-template-columns:repeat(5,1fr)}.detail-grid-6{grid-template-columns:repeat(6,1fr)}.detail-grid-7{grid-template-columns:repeat(7,1fr)}
.detail-icon-card{min-height:152px;padding:22px 16px 20px;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:flex-start}.detail-icon-card h3{margin:10px 0 6px;color:var(--blue);font-size:17px;line-height:1.35;font-weight:950}.detail-icon-card p{margin:0;color:#4d5d72;font-size:12px;line-height:1.75;font-weight:750}.detail-svg{width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:rgba(33,168,68,.08)}.detail-svg svg,.detail-icon-card svg{width:38px;height:38px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.detail-svg.large{width:82px;height:82px}.detail-svg.large svg{width:54px;height:54px}.detail-grid-6 .detail-icon-card,.detail-grid-7 .detail-icon-card{min-height:150px;padding:20px 12px}.detail-grid-6 .detail-icon-card h3,.detail-grid-7 .detail-icon-card h3{font-size:15px}.detail-grid-6 .detail-icon-card p,.detail-grid-7 .detail-icon-card p{font-size:11px}
.detail-pill-grid{display:grid;gap:22px}.detail-pill-grid-5{grid-template-columns:repeat(5,1fr)}.detail-pill{height:78px;padding:12px 18px;display:flex;align-items:center;justify-content:center;gap:14px}.detail-pill svg{width:38px;height:38px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.detail-pill span{color:var(--blue);font-size:17px;font-weight:950;line-height:1.25;text-align:center}
.detail-flow{display:grid;gap:16px;position:relative}.detail-flow-6{grid-template-columns:repeat(6,1fr)}.detail-flow-7{grid-template-columns:repeat(7,1fr)}.detail-flow-step{position:relative;text-align:center;min-height:166px}.detail-flow-step:not(:last-child)::after{content:"";position:absolute;top:49px;left:calc(50% + 44px);width:55px;border-top:3px dotted var(--green);z-index:0}.detail-flow-step:not(:last-child)::before{content:"";position:absolute;top:43px;left:calc(50% + 96px);width:10px;height:10px;border-top:2px solid var(--green);border-right:2px solid var(--green);transform:rotate(45deg);z-index:1}.detail-flow-step .step-num{left:50%;top:-2px;transform:translateX(-45px);z-index:3}.detail-flow-icon svg{width:42px;height:42px;stroke:var(--green);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}.detail-flow-step h3{margin:0 0 4px;color:var(--blue);font-size:14px;font-weight:950}.detail-flow-step p{margin:0;color:#536274;font-size:11px;line-height:1.6;font-weight:700}.detail-flow-section{padding-top:34px;padding-bottom:38px}.detail-bottom-cta .big-cta-copy h2{font-size:30px}.detail-bottom-cta{margin-top:0}

/* battery */
.battery-system{display:grid;grid-template-columns:1fr 52px 1fr 52px 1.12fr .95fr;align-items:center;gap:16px}.system-main-card{min-height:190px;padding:24px 18px;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center}.system-main-card h3{margin:12px 0 8px;color:var(--blue);font-size:18px;font-weight:950}.system-main-card p{margin:0;color:#4d5d72;font-size:13px;font-weight:750;line-height:1.7}.system-main-card img{height:78px;width:auto;max-width:100%;object-fit:contain;margin-bottom:6px}.highlight-card{background:linear-gradient(180deg,#f8fff9,#fff);border-color:#bfe6c8}.system-arrow{text-align:center;color:var(--green);font-size:38px;font-weight:950}.system-uses{display:grid;gap:12px}.system-use{padding:14px 16px;display:grid;grid-template-columns:44px 1fr;gap:12px;align-items:center}.system-use svg{width:38px;height:38px;stroke:var(--blue);fill:none;stroke-width:2}.system-use h4{margin:0 0 2px;color:var(--blue);font-size:15px;font-weight:950}.system-use p{margin:0;color:#4d5d72;font-size:12px;font-weight:750}.detail-mini-cta{background:#fff;padding:16px 0 22px}.detail-mini-cta-inner{min-height:96px;padding:18px 28px;display:grid;grid-template-columns:90px 1fr auto;gap:20px;align-items:center;border-color:#cfe0ef}.detail-mini-cta-illust svg{width:72px;height:72px;stroke:var(--green);fill:none;stroke-width:2}.detail-mini-cta p{margin:0;color:#5b6b7e;font-size:15px;font-weight:800}.detail-mini-cta h2{margin:0;color:var(--blue);font-size:28px;font-weight:950}.detail-mini-cta .green-btn{min-width:360px;height:58px;font-size:17px;border-radius:8px}

/* EV */
.ev-intro-card-section{padding-top:22px}.ev-intro-card{padding:24px 34px;display:grid;grid-template-columns:88px 1fr;gap:24px;align-items:center}.ev-intro-card h2{margin:0 0 8px;color:var(--blue);font-size:28px;font-weight:950}.ev-intro-card p{margin:0;color:#253c60;line-height:1.9;font-weight:750}.scene-card-grid{display:grid;gap:24px}.scene-card-grid-5{grid-template-columns:repeat(5,1fr)}.scene-card{overflow:hidden}.scene-card img{width:100%;height:150px;object-fit:cover;background:#e9f0f6}.scene-card>div{position:relative;padding:28px 18px 18px}.scene-card svg{position:absolute;left:18px;top:-24px;width:52px;height:52px;padding:10px;border-radius:50%;background:#eff8f0;stroke:var(--green);fill:none;stroke-width:2;box-shadow:0 5px 12px rgba(8,47,107,.08)}.scene-card h3{margin:0 0 10px;color:var(--blue);font-size:17px;font-weight:950}.scene-card p{margin:0;color:#4d5d72;font-size:12px;line-height:1.75;font-weight:750}.scene-card a{display:block;margin-top:12px;color:var(--blue);font-size:13px;font-weight:950;text-align:right}.scene-card a span{color:var(--green)}.charger-compare{display:grid;grid-template-columns:1fr 1fr;gap:28px}.charger-card{padding:26px 28px;display:grid;grid-template-columns:1fr 190px;gap:18px;align-items:center}.charger-card h3{margin:0 0 14px;color:var(--green);font-size:20px;font-weight:950;text-align:center}.charger-card dl{display:grid;grid-template-columns:120px 1fr;margin:0;border-top:1px solid var(--line)}.charger-card dt,.charger-card dd{margin:0;padding:10px 0;border-bottom:1px solid var(--line);font-size:13px;line-height:1.55}.charger-card dt{color:#1d3152;font-weight:950}.charger-card dd{color:#253c60;font-weight:750}.charger-card img{max-height:180px;object-fit:contain}.detail-note{margin:14px 0 0;text-align:center;color:#67768a;font-size:12px;font-weight:700}.detail-faq-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.detail-faq{padding:22px 24px}.detail-faq h3{margin:0 0 10px;color:var(--blue);font-size:16px;line-height:1.55}.detail-faq p{margin:0;color:#4d5d72;font-size:13px;line-height:1.75;font-weight:750}

/* low voltage */
.detail-feature-strip-section{padding:26px 0;background:#f7fbff}.detail-feature-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}.feature-strip-item{display:grid;grid-template-columns:74px 1fr;gap:14px;align-items:center;text-align:left;min-height:110px;padding:18px 22px;border:0;box-shadow:none;background:transparent}.feature-strip-item .detail-svg{grid-row:span 2}.feature-strip-item h3{margin:0 0 4px;font-size:18px}.feature-strip-item p{font-size:12px}.feature-strip-item svg{width:42px;height:42px}

/* high voltage */
.high-about-section{padding-top:42px;padding-bottom:30px}.high-about-grid{display:grid;grid-template-columns:420px 1fr;gap:58px;align-items:center}.high-about-img{width:100%;height:210px;object-fit:cover;border-radius:9px;box-shadow:0 8px 18px rgba(8,47,107,.08);background:#dfe8f1}.high-about-copy h2{margin:0 0 14px;color:var(--blue);font-size:34px;font-weight:950}.high-about-copy p{margin:0;color:#223a61;font-size:15px;line-height:2.05;font-weight:750}

@media(max-width:1180px){.detail-grid-7{grid-template-columns:repeat(4,1fr)}.detail-grid-6{grid-template-columns:repeat(3,1fr)}.detail-flow-7,.detail-flow-6{grid-template-columns:repeat(3,1fr)}.detail-flow-step::before,.detail-flow-step::after{display:none!important}.scene-card-grid-5{grid-template-columns:repeat(3,1fr)}.battery-system{grid-template-columns:1fr 42px 1fr;grid-auto-flow:row}.battery-system .system-uses{grid-column:1/-1;grid-template-columns:repeat(3,1fr)}.detail-feature-strip{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.detail-hero{min-height:360px}.detail-hero-inner{min-height:360px}.detail-hero-copy{padding:42px 0}.detail-grid-4,.detail-grid-5,.detail-grid-6,.detail-grid-7{grid-template-columns:repeat(2,1fr)}.detail-pill-grid-5{grid-template-columns:repeat(2,1fr)}.scene-card-grid-5{grid-template-columns:repeat(2,1fr)}.charger-compare{grid-template-columns:1fr}.high-about-grid{grid-template-columns:1fr}.detail-faq-grid{grid-template-columns:1fr}.charger-card{grid-template-columns:1fr}.charger-card img{margin:0 auto}.ev-intro-card{grid-template-columns:1fr;text-align:center}.ev-intro-card .detail-svg{margin:0 auto}.detail-mini-cta-inner{grid-template-columns:1fr;text-align:center}.detail-mini-cta-illust svg{margin:0 auto}.detail-mini-cta .green-btn{min-width:0;width:100%}.battery-system{grid-template-columns:1fr}.system-arrow{transform:rotate(90deg);font-size:30px}.battery-system .system-uses{grid-template-columns:1fr}}
@media(max-width:760px){.detail-hero{min-height:480px;background-position:center}.detail-hero::before{background:linear-gradient(90deg,rgba(255,255,255,.96),rgba(255,255,255,.82),rgba(255,255,255,.62))}.detail-hero-inner{min-height:480px}.detail-hero h1{font-size:40px}.detail-hero p{font-size:16px}.detail-hero .btn-primary,.detail-hero .btn-outline{width:100%;min-width:0}.detail-actions{width:100%}.detail-section-number{font-size:24px}.detail-grid-4,.detail-grid-5,.detail-grid-6,.detail-grid-7,.detail-pill-grid-5,.scene-card-grid-5,.detail-feature-strip,.detail-flow-6,.detail-flow-7{grid-template-columns:1fr}.detail-flow-step{min-height:auto}.feature-strip-item{grid-template-columns:62px 1fr}.charger-card dl{grid-template-columns:100px 1fr}.site-footer{padding-bottom:60px}}

/* ===== Hamburger Menu (Mobile) ===== */
.hamburger{
  display:none;
  background:none;border:none;cursor:pointer;
  width:44px;height:44px;padding:10px;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
  position:relative;z-index:1100;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.hamburger span{
  display:block;width:22px;height:2.5px;
  background:var(--blue-dark);border-radius:2px;
  transition:all .3s ease;
  pointer-events:none;
}
.hamburger.is-open span:nth-child(1){transform:translateY(7.5px) rotate(45deg)}
.hamburger.is-open span:nth-child(2){opacity:0}
.hamburger.is-open span:nth-child(3){transform:translateY(-7.5px) rotate(-45deg)}

@media (max-width:760px){
  .hamburger{display:flex}
  .header-cta{display:none !important}
  .nav{
    display:none !important;
    position:fixed;top:74px;left:0;right:0;
    background:#fff;
    flex-direction:column;
    padding:20px 24px 28px;
    box-shadow:0 12px 24px rgba(0,0,0,.12);
    gap:0;
    z-index:1050;
    border-bottom:3px solid var(--green);
  }
  .nav.is-open{display:flex !important}
  .nav a{
    padding:14px 0;
    border-bottom:1px solid var(--line);
    font-size:16px;
    font-weight:900;
  }
  .nav a:last-child{border-bottom:none}
  .nav a.active{color:var(--green)}
  .nav a.active::after{display:none}
}

/* =========================================================
   Mobile header menu fix
   修正：スマホでハンバーガーが四角だけ表示される／クリック無効になる問題を解消
   ========================================================= */
.hamburger{
  display:none;
  appearance:none !important;
  -webkit-appearance:none !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  outline:none;
  cursor:pointer;
  width:46px !important;
  height:46px !important;
  padding:10px !important;
  margin:0;
  flex:0 0 46px;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;
  position:relative;
  z-index:3001;
  border-radius:8px;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}
.hamburger span{
  display:block !important;
  width:25px !important;
  height:3px !important;
  background:#062454 !important;
  border-radius:999px !important;
  transition:transform .25s ease, opacity .2s ease;
  pointer-events:none;
}
.hamburger.is-open span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.hamburger.is-open span:nth-child(2){opacity:0}
.hamburger.is-open span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}

@media (max-width:760px){
  .site-header{z-index:3000}
  .header-inner{
    height:74px !important;
    gap:12px;
  }
  .logo img{
    width:190px !important;
    max-width:58vw;
  }
  .header-cta{
    display:none !important;
  }
  .hamburger{
    display:flex !important;
  }
  #main-nav.nav{
    display:none !important;
    position:fixed !important;
    top:74px !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    max-height:calc(100vh - 74px);
    overflow-y:auto;
    background:#fff !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:0 !important;
    padding:8px 24px 18px !important;
    box-shadow:0 16px 30px rgba(8,47,107,.16) !important;
    border-top:1px solid #e3ebf3;
    border-bottom:3px solid #21a844;
    z-index:2999;
  }
  #main-nav.nav.is-open{
    display:flex !important;
  }
  #main-nav.nav a{
    display:block !important;
    padding:16px 4px !important;
    border-bottom:1px solid #e3ebf3;
    color:#062454 !important;
    font-size:16px !important;
    font-weight:900 !important;
    line-height:1.4;
  }
  #main-nav.nav a:last-child{
    border-bottom:0;
  }
  #main-nav.nav a.active{
    color:#21a844 !important;
  }
  #main-nav.nav a.active::after,
  #main-nav.nav a:hover::after{
    display:none !important;
  }
  body.menu-open{
    overflow:hidden;
  }
}

/* =========================================================
   Contact page final layout fix
   参考デザインに合わせた2カラム構成 + Contact Form 7整形
   ========================================================= */
.contact-section{padding-top:0!important;padding-bottom:0!important;background:#f4f9fd!important;}
.contact-section .contact-main-grid{width:min(1280px,100%)!important;margin:0 auto!important;display:grid!important;grid-template-columns:420px 1fr!important;gap:0!important;align-items:stretch!important;background:#fff!important;border-left:1px solid #e3ebf3;border-right:1px solid #e3ebf3;}
.contact-section .contact-note{background:#f2f8fd!important;padding:52px 38px 42px!important;border-right:1px solid #dfe9f4!important;color:#0b2e6b!important;line-height:2!important;font-weight:800!important;}
.contact-section .contact-form-card{background:#fff!important;border:0!important;box-shadow:none!important;border-radius:0!important;padding:52px 46px 46px!important;}
.contact-section .contact-note .block-title,.contact-section .contact-form-card .block-title{display:flex!important;align-items:center!important;gap:16px!important;margin:0 0 42px!important;color:#082f6b!important;font-size:30px!important;line-height:1.35!important;font-weight:950!important;letter-spacing:.02em!important;}
.contact-section .contact-note .block-title::before,.contact-section .contact-form-card .block-title::before{content:""!important;width:6px!important;height:44px!important;flex:0 0 6px!important;background:#21a844!important;border-radius:999px!important;}
.contact-section .contact-note p{margin:0 0 24px!important;color:#183b6c!important;font-size:17px!important;line-height:2.05!important;font-weight:850!important;letter-spacing:.02em;}
.contact-section .pale-illust{margin-top:58px!important;text-align:center!important;}
.contact-section .pale-illust img{width:100%!important;max-width:360px!important;opacity:.16!important;margin:0 auto!important;}
.contact-section .cf7-contact-wrap,.contact-section .wpcf7,.contact-section .wpcf7 form{width:100%!important;}
.contact-section .wpcf7 form p{margin:0!important;}
.contact-section .form-grid{display:grid!important;grid-template-columns:220px 1fr!important;gap:26px 34px!important;align-items:center!important;width:100%!important;}
.contact-section .form-grid>p{display:contents!important;}
.contact-section .form-grid>br,.contact-section .form-grid p>br{display:none!important;}
.contact-section .form-grid>label,.contact-section .form-grid .cf7-label{color:#082f6b!important;font-size:17px!important;font-weight:950!important;line-height:1.55!important;margin:0!important;}
.contact-section .required{display:inline-block!important;margin-left:10px!important;padding:2px 9px!important;background:#ff6a70!important;color:#fff!important;border-radius:6px!important;font-size:12px!important;line-height:1.35!important;font-weight:900!important;vertical-align:middle!important;}
.contact-section .wpcf7-form-control-wrap{display:block!important;width:100%!important;}
.contact-section .form-grid input[type="text"],.contact-section .form-grid input[type="email"],.contact-section .form-grid input[type="tel"],.contact-section .form-grid select,.contact-section .form-grid textarea{width:100%!important;border:1px solid #d2deea!important;border-radius:8px!important;background:#fff!important;color:#183b6c!important;font-size:16px!important;font-weight:700!important;padding:17px 20px!important;box-shadow:none!important;outline:none!important;transition:border-color .2s ease,box-shadow .2s ease!important;}
.contact-section .form-grid input[type="text"],.contact-section .form-grid input[type="email"],.contact-section .form-grid input[type="tel"],.contact-section .form-grid select{height:58px!important;}
.contact-section .form-grid textarea{min-height:190px!important;resize:vertical!important;}
.contact-section .form-grid input::placeholder,.contact-section .form-grid textarea::placeholder{color:#8c96a6!important;font-weight:700!important;}
.contact-section .form-grid input:focus,.contact-section .form-grid select:focus,.contact-section .form-grid textarea:focus{border-color:#21a844!important;box-shadow:0 0 0 3px rgba(33,168,68,.12)!important;}
.contact-section .wpcf7-radio{display:flex!important;flex-wrap:wrap!important;gap:26px!important;align-items:center!important;padding-top:6px!important;}
.contact-section .wpcf7-radio .wpcf7-list-item{margin:0!important;}
.contact-section .wpcf7-radio label{display:flex!important;flex-direction:column!important;align-items:center!important;gap:8px!important;color:#082f6b!important;font-size:15px!important;font-weight:950!important;line-height:1.25!important;cursor:pointer!important;}
.contact-section .wpcf7-radio input[type="radio"]{width:16px!important;height:16px!important;margin:0!important;padding:0!important;border-radius:50%!important;}
.contact-section .privacy-row,.contact-section .submit-row{grid-column:1 / -1!important;}
.contact-section .privacy-row{display:flex!important;justify-content:center!important;align-items:center!important;margin:8px 0 0!important;color:#082f6b!important;font-size:16px!important;font-weight:900!important;white-space:normal!important;}
.contact-section .privacy-row .wpcf7-list-item{margin:0!important;}
.contact-section .privacy-row label{display:flex!important;align-items:center!important;justify-content:center!important;gap:10px!important;}
.contact-section .privacy-row input[type="checkbox"]{width:18px!important;height:18px!important;margin:0!important;padding:0!important;flex:0 0 auto!important;}
.contact-section .submit-row{display:flex!important;justify-content:center!important;margin-top:2px!important;}
.contact-section .submit-row input[type="submit"],.contact-section .submit-row .green-btn{min-width:240px!important;height:58px!important;padding:0 36px!important;border:0!important;border-radius:999px!important;background:linear-gradient(90deg,#21a844,#178d37)!important;color:#fff!important;font-size:17px!important;font-weight:950!important;cursor:pointer!important;box-shadow:0 10px 22px rgba(33,168,68,.22)!important;}
.contact-section .wpcf7-spinner{margin-left:12px!important;}
.contact-section .wpcf7-not-valid-tip{margin-top:6px!important;font-size:13px!important;font-weight:800!important;}
.contact-section .wpcf7-response-output{grid-column:1 / -1!important;margin:22px 0 0!important;padding:12px 16px!important;border-radius:8px!important;font-weight:800!important;}
@media (max-width:1100px){.contact-section .contact-main-grid{grid-template-columns:1fr!important;}.contact-section .contact-note{border-right:0!important;border-bottom:1px solid #dfe9f4!important;}}
@media (max-width:760px){.contact-section .contact-note,.contact-section .contact-form-card{padding:34px 22px!important;}.contact-section .contact-note .block-title,.contact-section .contact-form-card .block-title{font-size:24px!important;margin-bottom:28px!important;}.contact-section .form-grid{grid-template-columns:1fr!important;gap:10px!important;}.contact-section .form-grid>label,.contact-section .form-grid .cf7-label{margin-top:12px!important;}.contact-section .wpcf7-radio{gap:16px!important;align-items:flex-start!important;}.contact-section .wpcf7-radio label{align-items:flex-start!important;flex-direction:row!important;}}

/* Contact Form 7：個人情報保護方針を送信ボタンの真上に中央揃え */
.contact-section .privacy-row {
  grid-column: 1 / -1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin: 26px 0 14px !important;
  text-align: center !important;
  color: #082f6b !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

.contact-section .privacy-row .wpcf7-list-item {
  margin: 0 !important;
}

.contact-section .privacy-row label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
}

.contact-section .privacy-row input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.contact-section .submit-row {
  grid-column: 1 / -1 !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 0 !important;
}
