/* houjin-teikan.css
   このページ（定款）専用の上書き・追加スタイル
*/

/* 見出し（緑帯） */
.explanation{
  background: var(--accent);
  color:#fff;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  border-radius: var(--radius);
  margin: 0 0 12px;
}

/* リード文：中央寄せ */
.teikan-lead{
  margin: 0;
  text-align: center;
  line-height: 1.8;
}

/* 各PDFセクションの見出し：旧ページの雰囲気（#ffffb9）を採用 */
.teikan-head{
  margin: 0 0 12px;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  background: #ffffb9;
  border: 1px solid #000;
  border-radius: 8px;
}

/* ボタンエリア */
.teikan-actions{
  display: grid;
  gap: 10px;
  justify-items: center;
}

/* PDFボタン：トップページの雰囲気に合わせて「押せる」見た目 */
.pdf-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #000;
  background: #fff;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
}

.pdf-btn:hover{
  filter: brightness(0.98);
}

.teikan-note{
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

/* モバイル微調整 */
@media (max-width: 980px){
  .pdf-btn{ min-width: 100%; }
}