.content {
    padding: 2rem;
}
.content h1{
    font-size: 25px;
    font-weight: 800;
}
.content h3{
    font-size: 25px;
    font-weight: 800;
    color: #445591;
    margin: 30px 0;
}
.content .menu .toggle-menu {
    padding:20px;
    border: 2px solid #a0a7c4;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 800;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    margin-top: 15px;
}
.content .menu .toggle-menu::after{
    content: '';
    background-image: url('../img/pc-down-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 1rem;
    height: 1.5rem;
    right: 1rem;
    top: 65%;
    transform: translateY(-50%);
    margin-left: 1rem;
}
.content .menu.on .toggle-menu {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
}
.content .menu.on .toggle-menu::after {
    background-image: url('../img/pc-up-arrow.png');
    top:65%;
}
.content .menu.on .sub-menu {
    display: block;
    border: 2px solid #a0a7c4;
    border-radius: 1rem;
    border-radius: 1rem;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-top: none;
    
}

.content .menu.on .sub-menu a:hover {
    background-color: #eeeeee;
    border-radius: 0;
}
.content .menu.on .sub-menu a:last-child:hover {
    background-color: #eeeeee;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.content .menu .sub-menu {
    display: none;
}

.content .menu a {
    border-radius: 1rem;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px ;
}

.content .menu a:first-child {
    margin-bottom: 0;
}
.content .menu a:last-child {
    margin-bottom: 0;
}

.content table {
    width: 100%;
    margin-bottom: 4rem;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    border-collapse: collapse;
    border-spacing: 0;
}

.content table tr {
    height: 4rem;
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
}

.content table tr:nth-child(odd) {
    background-color: #eee;
}

.content table tr th {
    width: calc(100% / 5);
    font-size: 1.6rem;
    font-weight: 800;
    padding: 0 4rem 0 0;
}

.content table tr td {
    width: calc(100% / 7);
    font-size: 1.6rem;
    font-weight: 600;
}
@media screen and (max-width: 900px) {
    .content h1{
        font-size: 18px;
    }
    .content .menu a {
        font-size: 16px;
        padding: 15px;
    }
    .content .menu .toggle-menu {
        padding: 15px;
    }    
    .content h3 {
        font-size: 19px;
        margin: 20px 0;
    }
    .content .menu .toggle-menu::after{
        top: 60%;
    }

    .content .menu.on .toggle-menu::after {
        top:60%;
    }
    .content table tr th {
        width: calc(100% / 5);
        font-size: 1.6rem;
        font-weight: 800;
        padding: 0px 1rem 0 0;
    }
    
}
