.carp-hd {
    display: flex;
    flex-direction: column;
}
.carp-hd h1 {
    font-size: 3rem;
}
.container{
    width: 100%;
    margin: 10rem auto 0;
}
.tabs{
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
    width: 100%;
}
.tabs label{
    order: 1;
    display: block;
    width: 24%;
    padding: 10px 15px;
    margin-right: 0.2rem;
    border-right: 1px dotted #1448C6;
    border-left: 1px dotted #1448C6;
    color: #1448C6;
    cursor: pointer;
    background-color: #DDC39B;
    font-size: 1.3em;
    font-weight: bold;
    transition: backgroung ease 3s;
}
.tabs .tab{
    order: 99;
    flex-grow: 1;
    width: 100%;
    height: auto;
    display: none;
    padding: 0.5rem;
    margin: 0 auto;
    background-color: #faf4eb;
}
.tabs input[type='radio']{
    display: none;
}
.tabs input[type='radio']:checked+label{
    background: #faf4eb;
    border: transparent;
}
.tabs input[type='radio']:checked+label+.tab{
    display: block;
}
.tabs .tab h1 {
    font-size: 1.5em;
}
.biz-type {
    display: flex;
}
.biz-type .table-head, .biz-type .row-color1, .biz-type .row-color2 {
    display: flex;
    justify-content: start;
    align-items: center;
    border-left: 2px solid var(--color-bg1);
    padding: 0 1rem;
    font-size: 1rem;
    background: var(--color-bg2);
}
.biz-type .table-head:nth-child(1) {
    color: #b9b91b;
}
.biz-type .table-head:nth-child(1), 
.biz-type .row-color1:nth-child(1), 
.biz-type .row-color2:nth-child(1) {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 30%;
    font-weight: 600;
}
.biz-type .table-head:nth-child(2),
.biz-type .table-head:nth-child(3),
.biz-type .table-head:nth-child(4) {
    width: 20%;
    color: #b9b91b;
    font-weight: 600;
}
.biz-type .row-color1:nth-child(2),
.biz-type .row-color1:nth-child(3) {
    width: 20%;
}
.biz-type .row-color2:nth-child(2),
.biz-type .row-color2:nth-child(3) {
    width: 20%;
}
.biz-type .table-head:nth-child(4), 
.biz-type .row-color1:nth-child(4),
.biz-type .row-color2:nth-child(4) {
    width: 30%;
    border-right: 2px solid var(--color-bg1);
    padding-right: 0.5rem;
}
.biz-type .row-color1 {
    background: var(--color-light);
}
.biz-type .row-color2 {
    background: var(--color-primary);
}
.biz-type .row-color1:nth-child(4) a {
    text-decoration: underline;
    font-style: italic;
    color: blue;
}
.biz-type .row-color2:nth-child(4) a {
    text-decoration: underline;
    font-style: italic;
    color: #030122e0;
}

@media(max-width: 750px) {
    .carp-hd h1 {
        font-size: 1.8rem;
    }
    .tabs label{
        font-size: 1rem;
        padding: 5px;
    }
    .tabs .tab h1 {
        font-size: 1.3em;
    }
    .biz-type .table-head, .biz-type .row-color1, .biz-type .row-color2 {
        padding: 0 0.5rem;
        font-size: 0.8rem;
    }
    .biz-type .table-head:nth-child(2),
    .biz-type .table-head:nth-child(3) {
        display: flex;
        justify-content: start;
        align-items: center;
    }
}
@media(max-width: 550px) {
    .tabs label{
        font-size: 0.8rem;
    }
    .biz-type .table-head, .biz-type .row-color1, .biz-type .row-color2 {
        padding: 0 0.3rem;
    }
}