/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
}

/* Image */

img {
    max-width: 100%;
}

/* Form */

button,
input,
select,
textarea {
    font-family: inherit;
}

/* Button */

button {
    cursor: pointer;
}

/* Link */

a {
    text-decoration: none;
}

/* Table */

table {
    border-collapse: collapse;
}