/* =========================================
   Normalize.css（実務向けライト版）
   ========================================= */

/* HTML5要素のデフォルトをブロック化 */
article, aside, footer, header, nav, section, main {
    display: block;
}

/* 画像の扱いを統一 */
img {
    max-width: 100%;
    height: auto;
    border-style: none;
    vertical-align: middle;
}

/* リンクの下線まわりの統一 */
a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

/* button, input 共通リセット */
button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
}

button {
    cursor: pointer;
}

/* フォームのフォーカス */
:focus {
    outline: none;
}

/* 見出しのデフォルト余白リセット */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

/* ul, ol のリセット */
ul, ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* body の基本設定 */
body {
    margin: 0;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

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

/* strong の太字統一 */
strong {
    font-weight: bold;
}