@charset "utf-8";

/*===== 初期化 ==============================

    1: 基本設定
    2: リンクのリセット
	3: フォームのリセット

=============================================*/


/*===== 1: 基本設定 ===========================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}


body {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 1em;
    font-weight: normal;
    margin: 0;
}

article, aside, footer, header,
nav, section, main {
    display: block;
}

ul, ol {
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*===== 2: リンクのリセット ===========================*/
a {
    text-decoration: none;
}


/*===== 3: フォームのリセット ===========================*/
input,
button,
select,
textarea {
    font: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

textarea {
    resize: vertical;
    line-height: inherit;
}

select::-ms-expand {
    display: none;
}

button,
input[type="button"],
input[type="submit"],
select,
label {
    cursor: pointer;
}

input[type="checkbox"],
input[type="radio"] {
    appearance: auto;
    margin: 0;
}

fieldset, legend {
    padding: 0;
    border: 0;
}

