/* リセット */

*, *::before, *::after {
    box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
figure,
dl,
dd,
dt,
hr,
table,
tr,
td,
th {
    margin: 0;
    padding: 0; 
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    width: auto;
}

textarea {
    width: 100%;
}