/* =========================================
   reset.css
   シンプルなLP向けリセット
========================================= */

/* すべての要素のデフォルト余白を削除 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 画像の最大幅を親に合わせる */
img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

/* リンクのデフォルト装飾を削除 */
a {
    color: inherit;
    text-decoration: none;
}

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

/* 見出しのフォントサイズを継承 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

/* ボタンのデフォルトスタイルを消す */
button {
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
}

/* テキスト系のフォームリセット */
input,
textarea,
select {
    appearance: none;
    border-radius: 0;
    font: inherit;
}

/* body のデフォルト設定 */
body {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}