@charset "utf-8";
/* CSS Document */
/* =========================
   Reset CSS（実務用ミニマル）
========================= */

/* box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 基本リセット */
html,
body {
  margin: 0;
  padding: 0;
}

/* フォント・レンダリング */
body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

/* 見出し・段落 */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* リスト */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* 画像 */
img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* フォーム系 */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  outline: none;
}

/* button */
button {
  cursor: pointer;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 強制改行対策 */
br {
  line-height: normal;
}