/* reset.css – trimmed for your HTML */
@charset "UTF-8";

/* ベースリセット（実際に使用している要素のみ） */
html, body,
div, span,
header, footer, section, article, nav,
ul, li,
a, p, h1, h2, h3, h4, h5, h6,
figure, figcaption,
img,
details, summary,
dl, dt, dd,
table, tr, th, td,
input, select, label,
iframe {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

/* 行間リセット */
body {
  line-height: 1;
}

/* リストマーカー削除 */
ul, li {
  list-style: none;
}

/* リンクの下線削除 */
a {
  text-decoration: none;
}

/* 画像をブロック要素扱いかつレスポンシブに */
img {
  display: block;
  max-width: 100%;
  height: auto;
	margin: auto;
}

/* テーブル余白リセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平線スタイル（必要なら） */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* フォーム要素 */
input, select {
  vertical-align: middle;
}

/* 詳細展開（accordion）用 */
details {
  display: block;
}
summary {
  display: list-item;
}
