/* 반응형 */
/* 태블릿 */
/* 배너광고 변경 */
.readerbord_banner{
    display: block;
    width: 606.6666666666667px;
    height: 75px;
}

/* header */
header{
    width: 100%;
    height: 1.7cm;
    display: flex;
    justify-content: center;
    align-items: center;

    #headerAll{
        width: 100%;
        height: 100%;

        display: flex;
        justify-content: space-between;
        align-items: center;

        /* logo */
        #logoBox{
            width: 200px;
            height: 100%;

            img{
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        /* 메뉴 */
        nav{
            display: none;
            #mainMenu{
                display: flex;

                li{
                }
                li>a{
                    font-size: 1rem;
                    padding: 0 10px;
                    font-family: "KOHIBaeumOTF";
                    
                    font-weight: bolder;
                    color: #636363;
                    &:hover{
                        border-bottom: 2px solid #000;
                        color: #000;
                    }
                }
            }
        }

        /* 햄버거 메뉴 */
        #hambugerMenu{
            display: block;
            z-index: 101;
            transition: 0.2s all;
        }

        #hambugerMenu_Box{
            display: block;
        }
    }
}

/* ======================= */

/* visualSection */
#visualSection{
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #visual_text{
        position: absolute;
        top: 20%;
        left: 5%;
        width: 500px;

        p{
            font-size: 4rem;
            font-family: "sansFont";
            font-weight: bolder;
        }
    }
}

/* main */
main{
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding-top: 10px;

    /* 배너 광고판 */
    .bannerBox{
        width: 300px;
        height: 610px; /* 10px은 top 여유 공간 */
        position: sticky;
        display: flex;
        align-items: end;
        top: 0;
        display: none;
        
        .banner{
            background: #fff;
            width: 100%;
            height: 600px;
        }
    }

    /* mainContentBox */
    #mainContentBox{
        width: 100%;
    }
}

/* 메인 타이틀 */
.titleText{
    font-family: "titleFont";
    font-size: 2rem;
    font-weight: 600;
}



/* 기본 간단 정보 */
#simple_info_section{
    width: 100%;
    height: 400px;
    position: relative;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;

    #info_textBox{
        width: 90%;
        height: 100%;

        h1{
            font-size: 1.5rem;
            font-family: "sansFont";
        }

        #simple_subText{
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            span{
                font-size: 1.2rem;
                line-height: 50px;
                font-family: "contentFont";
            }
        }
    }
}


/* 공통 */
.info_box{
    width: 90%;
    height: 90%;
    background: #f7f7f7;
    box-shadow: inset 0 0 10px #393939;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 2px;

    .row{
        display: flex;
        flex-direction: column;
        p{
            font-size: 1.3rem;
            font-family: "contentFont";

            &::before{
                content: '▶';
                font-size: 1rem;
                margin-right: 5px;
            }
        }
    }
}

/* 기본정보입력 소개 */
#must_information{
    width: 100%;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

    border-top: 1px solid #bdbdbd;

    &>span{
        margin-top: 20px;
        font-size: 1.1rem;
        text-align: center;
    }

    #sub02_information{
        width: 100%;
        height: 80%;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }
}

/* 재료비 소개 */
#material_section{
    width: 100%;
    height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

    border-top: 1px solid #bdbdbd;

    &>span{
        margin-top: 20px;
        font-size: 1.1rem;
        text-align: center;
    }

    #sub03_information{
        width: 100%;
        height: 80%;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;

        #sub03_line1{
            width: 100%;
            height: 80%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            
            .sub03_card{
                width: 40%;
                height: auto;
                background: #fff;
                padding: 10px;
                border-radius: 5px;
                box-shadow: 0 0 5px #505050;
                margin: 10px 0;

                p{
                    font-size: 1.4rem;
                    font-family: "contentFont";
                    margin-bottom: 10px;

                    &::before{
                        content: '◈';
                        margin-right: 5px;
                        font-size: 1.3rem;
                    }
                }
                span{
                    font-size: 1.05rem;
                    font-family: "contentFont";
                }
            }
        }

        #sub03_line2{
            width: 100%;
            height: 40%;
            display: flex;
            justify-content: center;

            #sub03_textBox{
                margin-top: 30px;
            }
        }
    }
}


/* 인건비 소개 */
#personnel_section{
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

    border-top: 1px solid #bdbdbd;

    &>span{
        margin-top: 20px;
        font-size: 1.1rem;
        text-align: center;
    }

    #sub04_information{
        width: 100%;
        height: 80%;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;

        #sub04_line1{
            width: 90%;
            height: 80%;
            display: flex;
            justify-content: space-around;
            
            .sub04_card{
                width: 45%;
                height: 100%;
                background: #fff;
                padding: 10px;
                border-radius: 5px;
                box-shadow: 0 0 5px #505050;

                p{
                    font-size: 1.4rem;
                    font-family: "contentFont";
                    margin-bottom: 10px;

                    &::before{
                        content: '◈';
                        margin-right: 5px;
                        font-size: 1.3rem;
                    }
                }
                span{
                    font-size: 1.05rem;
                    font-family: "contentFont";
                }
            }
        }

        #sub04_line2{
            width: 100%;
            height: 65%;
            display: flex;
            justify-content: center;

            #sub04_textBox{
                margin-top: 30px;
            }
        }
    }
}

/* 경비 소개 */
#expenses_section{
    width: 100%;
    height: 1900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

    border-top: 1px solid #bdbdbd;

    &>span{
        margin-top: 20px;
        font-size: 1.1rem;
        text-align: center;
    }

    #sub05_information{
        width: 100%;
        height: 90%;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;


        #sub05_line1{
            width: 95%;
            height: 95%;
            border-radius: 3px;
            /* padding: 20px 100px; */
            display: flex;
            flex-wrap: wrap;
            justify-content: start;
            align-items: center;
            background: #f7f7f7;
            box-shadow: inset 0 0 10px #393939;
            border-collapse: collapse;
            padding: 0 20px;
            
            tbody{
                width: 100%;
            }

            tr{
                &>td:first-child{
                    width: 20%;
                    text-align: center;
                    padding: 6px 15px;
                    font-weight: bolder;   
                    border-right: 1px solid #b9b9b9;
                }
                &>td:last-child{
                    padding: 6px 0;
                    padding-left: 5px;
                }
            }
        }
    }

}


/* 그외 정보 */
#other_info_section{
    width: 100%;
    height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

    border-top: 1px solid #bdbdbd;

    #other_text{
        width: 100%;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;

        p{
            margin: 10px 0;
            font-family: "contentFont";
            font-size: 1.1rem;

            &::before{
                content: '▶';
                margin-right: 10px;
            }
            &::after{
                content: '◀';
                margin-left: 10px;
            }
        }
        span{
            margin-top: 20px;
            font-size: 1.3rem;
            font-family: "contentFont";
        }
        .boldFont{
            font-size: 1.2rem;
        }
    }
}
/* ----------------- */
/* ================= */

/* footer */
footer{
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;

    #footerAll{
        width: 79%;
        display: flex;
        align-items: center;
        justify-content: center;
        

        #f_content{
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            #f_logo{
                width: 300px;
                height: 150px;
    
                img{
                    object-fit: contain;
                    width: 100%;
                    height: 100%;
                }
            }

            span{
                font-size: 1.1rem;
            }
            p{
                margin-top: 20px;
                font-size: 1.1rem;
                color: #000000;
            }
        }
    }
}