/* assets/top.css */
:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --line:#e5e7eb;
  --card:#f9fafb;
  --btn:#111827;
  --btnText:#ffffff;
  --radius:18px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: "Hiragino Sans","Yu Gothic","Meiryo",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.8;
}

.wrap{
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 16px 40px;
}

/* ヒーロー */
.hero{
  display:grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items:center;
  padding: 10px 0 6px;
}
.hero__title{
  margin:0 0 10px;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height:1.25;
  letter-spacing: .02em;
}
.hero__lead{
  margin:0;
  color:var(--muted);
  font-size: 16px;
}

/* 仕切り */
.rule{
  border:0;
  border-top:1px solid var(--line);
  margin: 18px 0;
}

/* パネル */
.panel{
  padding: 6px 0;
}
.panel__intro{
  margin: 0 0 12px;
  font-size: 16px;
}
.panel__intro--small{
  margin-bottom: 8px;
  color: var(--muted);
}

/* カード */
.cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 10px;
}
.card__title{
  margin:0 0 6px;
  font-size: 18px;
}
.card__list{
  margin:0;
  padding-left: 1.2em;
  color: var(--text);
}
.card__list li{
  margin: 6px 0;
}

/* 画像ブレイク */
.imageBreak{
  padding: 10px 0 2px;
}

/* プレースホルダー枠（BOSS/ブランド） */
.ph{
  width:100%;
  aspect-ratio: 4 / 3;
  border: 2px solid #111827;
  border-radius: 12px;
  background:
    linear-gradient(0deg, rgba(17,24,39,.04), rgba(17,24,39,.04)),
    repeating-linear-gradient(45deg, rgba(17,24,39,.06) 0 8px, rgba(17,24,39,.02) 8px 16px);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.ph__label{
  font-weight: 800;
  letter-spacing: .12em;
  font-size: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(17,24,39,.25);
}
.ph--boss{
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}
.ph--brand{
  aspect-ratio: 16 / 9;
}

/* 質問リスト */
.questions{
  margin: 10px 0 10px;
  padding-left: 1.2em;
}
.questions li{
  margin: 6px 0;
}
.panel__note{
  margin: 0 0 10px;
  color: var(--muted);
}

/* 強調 */
.emphasis{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
}
.emphasis__line{
  margin: 0;
  font-size: 16px;
}
.emphasis__line strong{
  font-size: 18px;
}

/* CTA */
.cta{
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.cta__text{
  margin:0 0 10px;
  font-size: 17px;
}
.cta__buttons{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn{
  display:inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--btn);
  color: var(--btnText);
  text-decoration: none;
  border: 1px solid var(--btn);
  font-weight: 700;
}
.btn:hover{ opacity:.9; }
.btn--ghost{
  background: transparent;
  color: var(--btn);
}
.cta__sub{
  margin:10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* フッター */
.footer{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align:center;
}

/* レスポンシブ */
@media (max-width: 640px){
  .hero{
    grid-template-columns: 1fr;
  }
  .hero__media{
    max-width: 220px;
  }
  .cards{
    grid-template-columns: 1fr;
  }
}

.BOSS-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}

.brand-img{
  width:100%;
  height:100%;
  object-fit:contain; /* 切れずに全体を見せる */
}

/* =========================
   ヘッダー（上部ナビ）
========================= */

.site-header{
  border-bottom:1px solid #e5e7eb;
  padding:20px 0 12px;
  background:#ffffff;
}

.site-header__inner{
  max-width:900px;
  margin:0 auto;
  padding:0 16px;
}

.site-title{
  font-size:22px;
  font-weight:700;
  letter-spacing:0.05em;
}

.site-sub{
  font-size:14px;
  color:#6b7280;
  margin-top:4px;
}

.site-nav{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

.site-nav a{
  text-decoration:none;
  color:#1f2937;
  font-size:14px;
  transition:0.2s;
}

.site-nav a:hover{
  text-decoration:underline;
  opacity:0.8;
}

.site-nav a[aria-current="page"]{
  font-weight:700;
}

/* スマホ対応 */

@media (max-width:640px){

  .site-nav{
    gap:12px;
    font-size:13px;
  }

  .site-title{
    font-size:18px;
  }

  .site-sub{
    font-size:12px;
  }

}