@charset "UTF-8";

.page-wrapper{
  max-width:780px;
  margin:0 auto;
  padding:40px 10px;
  font-family:"Segoe UI",sans-serif;
}
.others-title{
  text-align:center;
  font-size:1.8rem;
  font-weight:700;
  margin-bottom:28px;
  border-bottom:2px solid #007bff;
  display:inline-block;
  padding-bottom:6px;
}
.others-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.other-card{
  background:#fff;
  border:1px solid #e0e0e0;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
  padding:22px 24px;
}
.other-title{
  margin:0 0 12px 0;
  font-size:1.2rem;
  font-weight:600;
  color:#007bff;
}
.other-body{
  font-size:14px;
  line-height:1.6;
}

/* —―― Markdown 要素 ――― */
.other-body a{
  color:#007bff;              /* 青色リンク */
  text-decoration:underline;
  transition:.2s;
}
.other-body a:hover{
  color:#0056b3;              /* 濃い青に */
}

/* コードブロック */
.other-body pre{
  background:#f6f8fa;
  padding:10px;
  overflow:auto;
  border-radius:6px;
  font-size:13px;
}
.other-body code{font-family:Menlo,monospace;}
