@charset "UTF-8";
.tenant_table {
    margin: 0 auto 80px;
    width: 770px;
}
.tenant_table .inner {
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #acd6e2;
    border-radius: 5px;
}
.initial {
    width: 770px;
    font-size: 1.5rem;
    margin: 3.33em auto .833em;
}
.tenant_table ul {
    display: block;
    width: 100%;
    list-style: none;
    border-radius: 5px;
    background: #fff;
}
.tenant_table ul li:first-of-type {
    background: #ecf4f8;
    font-family: "ZenKakuGothicAntique-Medium";
}
.tenant_table ul li:first-of-type div {
    justify-content: center;
}
.tenant_table ul li .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.tenant_table ul li .title {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #bcbcbc;
    padding: .875em 1.875em;
}
.tenant_table ul li:first-of-type .title {
    border: none;
}
.tenant_table ul li .content {
    display: grid;
    grid-template-columns: 1fr 2fr;
}
.tenant_table ul li .content > div {
    display: flex;
    align-items: center;
    border-left: 1px solid #bcbcbc;
    border-bottom: 1px solid #bcbcbc;
    height: 100%;
    padding: .875em 1.875em;
    box-sizing: border-box;
}
.tenant_table ul li:first-of-type .content > div {
    border-bottom: none;
}

@media screen and (max-width: 900px) {
    .initial {
        width: 90vw
    }
    .tenant_table {
        width: 90vw;
    }
    .tenant_table ul li .wrap {
        grid-template-columns: 1fr
    }
    .tenant_table ul li:first-of-type div {
        display: none;
    }
    .tenant_table ul li .content > div.tou {
        border-left: none;
    }
    .tenant_table ul li:nth-child(odd) {
        background: #ecf4f8;
    }
}
