/**
 * CSS Reset
 * ブラウザのデフォルトスタイルをリセット
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* リンクのデフォルトスタイル */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* リストのデフォルトスタイル */
ul, ol {
    list-style: none;
}

/* 画像 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

/* テーブル */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* フォーム */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}
