/* 全体 */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  margin: 20px;
  color: #222;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  margin: 24px 0 12px;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
}
h1 { font-size: 24px; border-bottom: 2px solid #eee; padding-bottom: 6px; }
h2 { font-size: 20px; border-bottom: 1px solid #eee; padding-bottom: 4px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 15px; }
h6 { font-size: 14px; }

/* 段落 */
p {
  margin: 12px 0;
  font-size: 15px;
}

/* リスト */
ul, ol {
  padding-left: 20px;
  margin: 12px 0;
}
li {
  margin: 6px 0;
  font-size: 15px;
}

/* 引用 */
blockquote {
  margin: 16px 0;
  padding: 12px 16px;
  background: #fafafa;
  border-left: 4px solid #ddd;
  color: #444;
}

/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
th, td {
  border: 1px solid #e5e5e5;
  padding: 8px 10px;
  text-align: left;
}
th {
  background: #f8f8f8;
  font-weight: 600;
}

/* code & pre */
pre, code {
  font-family: ui-monospace, Menlo, Consolas, "Courier New", monospace;
  background: #f6f7fb;
  border: 1px solid #e5e5ef;
  border-radius: 5px;
  font-size: 13px;
}
pre {
  padding: 12px;
  white-space: pre-wrap;
  word-break: break-word;
  margin: 12px 0;
}
code {
  padding: 2px 4px;
}

/* 表示コンテナ（任意） */
.container,
.check-result {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #fff;
}

/* リンク */
a {
  color: #1565c0;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* 小さなテキスト */
small {
  font-size: 12px;
  color: #666;
}

/* ダークはしてないけど "薄い背景" の無難トーン */
hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

/* --- input / select / textarea / button --- */
input, select, textarea, button {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  margin: 6px 0;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

/* テキスト系 input */
input[type="text"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea {
  width: 100%;
  background: #fff;
  color: #222;
}

/* textarea 高さ調整 */
textarea {
  min-height: 80px;
  resize: vertical;
}

/* select */
select {
  background: #fff;
  color: #222;
}

/* button系 */
button, input[type="submit"], input[type="button"] {
  background-color: #1565c0;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background-color: #0f4a8a;
}

/* disabled */
input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

/* ラベル */
label {
  display: block;
  margin: 6px 0 2px;
  font-weight: 500;
  font-size: 14px;
}

/* checkbox / radio */
input[type="checkbox"],
input[type="radio"] {
  margin-right: 6px;
  vertical-align: middle;
}

<style>
/* コンテナ */
details {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.3em 0.6em;
  margin-bottom: 1em;
  background: #fff;
}

/* summary の基本 */
details summary {
  width:40%;
  background-color: #9399df;
  cursor: pointer;
  padding:10px;
  border-radius:5px;
  font-weight: 600;
  list-style: none;
}

/* デフォルトの ▸ マーカー削除（Safari/Chrome） */
details summary::-webkit-details-marker {
  display: none;
}

/* カスタムの矢印 */
details summary::after {
  content: "▶";
  float: right;
  transition: transform 0.25s ease;
  opacity: 0.6;
}

/* 開いているときの矢印（下向き） */
details[open] summary::after {
  transform: rotate(90deg);
}

/* 本文部分 */
details > *:not(summary) {
  margin: 0.5em 0 0.7em;
  padding-right: 0.5em;
  color: #333;
  font-size: 0.95rem;
}
</style>
