/* =========================
GUIDE HERO
========================= */
.guide-hero{
  background:var(--navy);
  color:#fff;
  padding:120px 0 80px;
}

.guide-hero .section-en{
  color:var(--orange);
  opacity:1;
  font-size:16px;
  margin-bottom:12px;
}

.guide-hero h1{
  font-family:"Noto Sans JP",sans-serif;
  font-size:clamp(22px,3.5vw,38px);
  font-weight:700;
  line-height:1.4;
  margin-bottom:24px;
}

.guide-hero-note{
  font-size:14px;
  opacity:0.7;
  line-height:1.8;
  max-width:600px;
}

/* =========================
GUIDE MAIN
========================= */
.guide-main{
  padding:80px 0 120px;
}

.guide-intro{
  padding:32px 40px;
  border-left:3px solid var(--orange);
  background:rgba(228,138,54,0.05);
  border-radius:0 12px 12px 0;
  margin-bottom:64px;
  font-size:15px;
  line-height:1.9;
  color:var(--text);
}

/* =========================
GUIDE SECTIONS
========================= */
.guide-sections{
  display:grid;
  gap:56px;
}

.guide-section h2{
  display:flex;
  align-items:baseline;
  gap:16px;
  font-size:clamp(18px,2.5vw,24px);
  font-weight:700;
  color:var(--navy);
  margin-bottom:24px;
  padding-bottom:12px;
  border-bottom:2px solid var(--navy);
}

.guide-section-num{
  font-family:"Bebas Neue",sans-serif;
  font-size:clamp(28px,4vw,40px);
  color:var(--orange);
  line-height:1;
}

.guide-list{
  list-style:none;
  padding:0;
  display:grid;
  gap:14px;
}

.guide-list li{
  position:relative;
  padding-left:1.4em;
  font-size:15px;
  line-height:1.85;
  color:var(--text);
}

.guide-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0.65em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--orange);
}

/* =========================
GUIDE CTA
========================= */
.guide-cta{
  margin-top:80px;
  padding:60px 40px;
  background:var(--navy);
  border-radius:24px;
  text-align:center;
  color:#fff;
}

.guide-cta p{
  font-size:14px;
  opacity:0.7;
  margin-bottom:20px;
  letter-spacing:1px;
}

.guide-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--navy);
  font-weight:700;
  font-size:16px;
  padding:16px 48px;
  border-radius:999px;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width:768px){
  .guide-hero{
    padding:80px 0 60px;
  }

  .guide-intro{
    padding:24px 20px;
    margin-bottom:48px;
  }

  .guide-cta{
    padding:40px 24px;
  }
}
