.pp-hero{
  background:var(--navy);
  color:var(--white);
  position:relative;
  overflow:hidden;
}

/* 主要製品ページのヒーローと同じオレンジグロー */
.pp-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 70% 40%, rgba(232,93,4,.12) 0%, transparent 60%);
  pointer-events:none;
  z-index:0;
}

.pp-hero-inner{
  max-width:var(--max);
  position:relative;
  z-index:1;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 500px;
  min-height:460px;
}

.pp-hero-text{
  padding:60px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.pp-eyebrow{
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.14em;
  color:var(--orange);
  text-transform:uppercase;
  margin-bottom:10px;
}

.pp-hero h1{
  font-family:"Noto Serif JP",serif;
  font-size:2.15rem;
  line-height:1.34;
  margin-bottom:16px;
}

.pp-hero-sub{
  max-width:540px;
  font-size:.95rem;
  color:rgba(255,255,255,.82);
  line-height:1.9;
  margin-bottom:26px;
}

.pp-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:28px;
}

.pp-badge{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:5px 13px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:20px;
  background:rgba(255,255,255,.1);
  color:var(--white);
  font-size:.78rem;
  font-weight:700;
}

.pp-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.pp-hero-img{
  position:relative;
  overflow:hidden;
  min-height:460px;
  background:#d9ddd8;
}

.pp-hero-img picture,
.pp-hero-img img{
  width:100%;
  height:100%;
  display:block;
}

.pp-hero-img picture{
  position:absolute;
  inset:0;
}

.pp-hero-img img{
  object-fit:cover;
}

.pp-anchor-strip{
  background:var(--white);
  border-bottom:1px solid var(--border);
}

.pp-anchor-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 40px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:18px;
}

.pp-anchor-title{
  color:var(--gray);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.pp-anchor-links{
  display:flex;
  flex-wrap:wrap;
  gap:0;
}

.pp-anchor-links a{
  padding:5px 16px;
  border-right:1px solid var(--border);
  color:var(--navy);
  font-size:.86rem;
  font-weight:700;
}

.pp-anchor-links a:last-child{
  border-right:none;
}

.pp-anchor-links a:hover{
  color:var(--orange);
}

.pp-section{
  padding:64px 40px;
}

.pp-section-alt{
  background:var(--white);
}

.pp-section-navy{
  background:var(--navy);
  color:var(--white);
}

.pp-section-inner{
  max-width:var(--max);
  margin:0 auto;
}

.pp-section-header{
  margin-bottom:38px;
}

.pp-section-title{
  font-family:"Noto Serif JP",serif;
  font-size:1.62rem;
  line-height:1.45;
  color:var(--navy);
}

.pp-section-navy .pp-section-title{
  color:var(--white);
}

.pp-section-lead{
  max-width:760px;
  margin-top:8px;
  color:var(--gray);
  font-size:.92rem;
  line-height:1.85;
}

.pp-section-navy .pp-section-lead{
  color:rgba(255,255,255,.75);
}

.pp-quick-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.pp-quick-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px 20px;
}

.pp-section-alt .pp-quick-card{
  background:var(--bg);
}

.pp-quick-value{
  display:block;
  color:#007f8f;
  font-size:1.45rem;
  line-height:1.25;
  font-weight:700;
  margin-bottom:8px;
}

.pp-quick-label{
  display:block;
  color:var(--navy);
  font-size:.86rem;
  line-height:1.65;
  font-weight:700;
}

.pp-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.pp-feature-card{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 24px;
}

.pp-section-alt .pp-feature-card{
  background:var(--white);
}

.pp-feature-num{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--orange);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.86rem;
  font-weight:700;
  margin-bottom:14px;
}

.pp-feature-title{
  font-size:1rem;
  line-height:1.45;
  color:var(--navy);
  font-weight:700;
  margin-bottom:8px;
}

.pp-feature-desc{
  color:var(--gray);
  font-size:.86rem;
  line-height:1.78;
}

.pp-two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:start;
}

.pp-media-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}

.pp-media-card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}

.pp-media-body{
  padding:22px 24px;
}

.pp-media-title{
  color:var(--navy);
  font-size:1rem;
  font-weight:700;
  line-height:1.5;
  margin-bottom:8px;
}

.pp-media-desc{
  color:var(--gray);
  font-size:.86rem;
  line-height:1.78;
}

.pp-video-frame{
  aspect-ratio:16/9;
  width:100%;
  background:#101726;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
}

.pp-video-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

.pp-spec-table{
  width:100%;
  border-collapse:collapse;
  font-size:.91rem;
  background:var(--white);
}

.pp-spec-table tr{
  border-bottom:1px solid var(--border);
}

.pp-spec-table tr:first-child{
  border-top:1px solid var(--border);
}

.pp-spec-table th{
  width:220px;
  padding:15px 22px;
  color:var(--navy);
  background:#f8f8f4;
  text-align:left;
  vertical-align:top;
  white-space:nowrap;
}

.pp-spec-table td{
  padding:15px 22px;
  color:var(--navy);
  line-height:1.75;
}

.pp-note{
  list-style:none;
  margin-top:18px;
  color:var(--gray);
  font-size:.8rem;
  line-height:1.7;
}

.pp-note li{
  position:relative;
  padding-left:1em;
  margin-bottom:4px;
}

.pp-note li::before{
  content:"※";
  position:absolute;
  left:0;
}

.pp-catalog-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:30px;
  display:flex;
  gap:28px;
  align-items:center;
}

.pp-catalog-mark{
  width:72px;
  height:72px;
  border-radius:8px;
  background:#007f8f;
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:.9rem;
  font-weight:700;
}

.pp-catalog-body{
  flex:1;
}

.pp-catalog-title{
  color:var(--navy);
  font-size:1.08rem;
  line-height:1.45;
  font-weight:700;
  margin-bottom:8px;
}

.pp-catalog-desc{
  color:var(--gray);
  font-size:.88rem;
  line-height:1.78;
}

.pp-catalog-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  flex-shrink:0;
}

.pp-related-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.pp-related-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius);
  overflow:hidden;
  display:grid;
  grid-template-columns:210px 1fr;
}

.pp-related-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.pp-related-body{
  padding:22px;
}

.pp-related-title{
  color:var(--white);
  font-size:1rem;
  font-weight:700;
  margin-bottom:8px;
}

.pp-related-desc{
  color:rgba(255,255,255,.72);
  font-size:.84rem;
  line-height:1.75;
  margin-bottom:14px;
}

@media(max-width:1024px){
  .pp-hero-inner{
    grid-template-columns:1fr 390px;
  }

  .pp-quick-grid,
  .pp-feature-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pp-related-card{
    grid-template-columns:1fr;
  }

  .pp-related-card img{
    aspect-ratio:16/9;
  }
}

@media(max-width:768px){
  .pp-hero-inner,
  .pp-two-col,
  .pp-related-grid{
    grid-template-columns:1fr;
  }

  .pp-hero-text{
    padding:42px 16px 34px;
  }

  .pp-hero h1{
    font-size:1.72rem;
  }

  .pp-hero-img{
    min-height:260px;
  }

  .pp-anchor-inner{
    padding:12px 16px;
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }

  .pp-anchor-links{
    flex-direction:column;
    width:100%;
  }

  .pp-anchor-links a{
    border-right:none;
    border-bottom:1px solid var(--border);
    padding:8px 0;
  }

  .pp-section{
    padding:48px 16px;
  }

  .pp-quick-grid,
  .pp-feature-grid{
    grid-template-columns:1fr;
  }

  .pp-section-title{
    font-size:1.38rem;
  }

  .pp-spec-table th,
  .pp-spec-table td{
    display:block;
    width:100%;
    padding:12px 14px;
  }

  .pp-spec-table th{
    border-bottom:1px solid var(--border);
    white-space:normal;
  }

  .pp-catalog-card{
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
  }

  .pp-catalog-actions{
    width:100%;
  }

  .pp-catalog-actions .hp-btn{
    width:100%;
  }
}
