@charset "utf-8";

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

html {
    max-width: 100%;
    height: 100%;
    font-size: 10px;
}

body {
    max-width: 100%;
    height: 100%;
    color: #333333;
}

ol,
ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333333;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-bottom: 2px solid #eeeeee;
}

tr{
    border-bottom: 1px solid #eeeeee;
}

tr:hover {
    background-color: #F9F5E7;
}

th {
    background-color: #EDDBC7;
    color: #333333;
}

th,
td {
    font-size: 1.6rem;
    padding: 1.5rem;
    text-align: center;
}


select {
    padding: 1rem;
}

input {
    width: 100%;
    padding: 1rem;
}

button {
    border: none;
    padding: 1rem;
    font-size: 1.4rem;
}