
/* 주택 설명 */
/* 상단 리스트 */
.contentBoxBottom > .informationBoxList > .informationBox01 {
    margin-bottom: 130px;
}
.contentBoxBottom > .informationBoxList > .informationBox01  > div:nth-child(2) > p {
    letter-spacing: -0.7;
}

/* 논 이미지 */
.contentBoxBottom > .informationBoxList > .informationBox02 {
    width: 100%;
    padding-top: 15px;
}
.agricultureBox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 auto;
    height: 300px;
    width: 900px;
}
.contentBoxBottom > .informationBoxList > .informationBox02 > .agricultureBox >.leftBox{
    position: absolute;
    left: -30px;
    top: -15px;
    display: flex;
    align-items: flex-start;
}
.contentBoxBottom > .informationBoxList > .informationBox02 > .agricultureBox > .rightBox {
    position: absolute;
    right: -30px;
    bottom: 0;
    display: flex;
    align-items: flex-end;
}
.agricultureBox > div > div.text {
    min-width: 170px;
    width: auto;
}
.agricultureBox > div > div.text > p:first-child {
    font-size: 18px;
    color: rgb(25, 138, 105);
}
.agricultureBox > div > div.text > p:last-child {
    font-size: 24px;
    color: rgb(51, 51, 51);
    font-weight: 600;
}
.agricultureBox > div > div.text:first-child > p:first-child {
    text-align: right;
}
.agricultureBox > div > div.text:last-child > p:first-child  {
    text-align: left;
}


/* 지원대상 체크리스트 */
table{ 
    border-collapse : collapse; /*이중선 제거*/
    width: 100%;
}  
th,
td {
    width: 100px;
    height: 50px;
    text-align: center;
    border: 1px solid rgb(221, 221, 221);
    padding: 10px 20px;
    font-size: 18px;
    color: rgb(51, 51, 51);
    /* 위 */
    /* vertical-align: top; */
    /* 아래 */
    /* vertical-align: bottom; */
    /* 가운데 */
    vertical-align: middle;
}

.contentBoxBottom > .informationBoxList > .informationBox03 > table th{
    border-top: 3px solid rgb(25, 138, 105);
}

.contentBoxBottom > .informationBoxList > .informationBox03 > table .tdBgColor {
    background-color: rgb(245, 245, 245);
    font-weight: 600;
}

.contentBoxBottom > .informationBoxList > .informationBox03 > table .tdCenter {
    text-align: center;
}

.contentBoxBottom > .informationBoxList > .informationBox03 > table .tdLeft {
    text-align: left;
}

.contentBoxBottom > .informationBoxList > .informationBox03 > table .tdRight {
    text-align: right;
}