section{
    word-break: keep-all;
}

/*
** sec01 — 대화 (sickness 패턴과 동일)
*/

.sec01{
    padding: 150px 0 130px;
    background-color: #F9F9F9;
}

.talk__wrap{
    display: block;
    width: 640px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.talk__wrap .talk__inner{
    width: 100%;
    height: auto;
    display: flex;
}

.talk__wrap .talk__inner:nth-child(1),
.talk__wrap .talk__inner:nth-child(3){
    justify-content: flex-end;
}

.talk__wrap .talk{
    width: 350px;
    height: auto;
    padding: 20px 25px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 3px 3px 3px rgba(219, 219, 219, 0.3);
    font-size: 20px;
    font-weight: 600;
}

.talk__wrap .talk::before{
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
}

.talk__wrap .talk.right{
    border-top-right-radius: 0px;
}

.talk__wrap .talk.left{
    border-top-left-radius: 0px;
}

.talk__wrap .talk.right::before{
    right: -10px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid skyblue;
    border-left: 5px solid skyblue;
    border-right: 5px solid transparent;
}

.talk__wrap .talk.left::before{
    left: -10px;
    border-bottom: 5px solid transparent;
    border-top: 5px solid skyblue;
    border-left: 5px solid transparent;
    border-right: 5px solid skyblue;
}

.talk__wrap .talk.blue{
    background-color: #9BE7FF;
}

.talk__wrap .talk.blue::before{
    border-bottom: 5px solid transparent;
    border-top: 5px solid #9BE7FF;
    border-left: 5px solid #9BE7FF;
    border-right: 5px solid transparent;
}

.talk__wrap .talk.green{
    background-color: #B0FF94;
}

.talk__wrap .talk.green::before{
    border-bottom: 5px solid transparent;
    border-top: 5px solid #B0FF94;
    border-left: 5px solid transparent;
    border-right: 5px solid #B0FF94;
}

.talk__wrap .talk.red{
    background-color: #FFA79B;
}

.talk__wrap .talk.red::before{
    border-bottom: 5px solid transparent;
    border-top: 5px solid #FFA79B;
    border-left: 5px solid #FFA79B;
    border-right: 5px solid transparent;
}

/*
** sec02 — 독의 종류
*/

.sec02{
    padding: 220px 0 240px;
    background-color: #fff;
}

.dok__intro{
    text-align: center;
}

.dok__intro .big__title span{
    color: #da251d;
}

.dok__introSub{
    margin-top: 60px;
    font-weight: 500;
    line-height: 1.6;
}

.dok__listTitle{
    margin-top: 200px;
    text-align: center;
}

.dok__listTitle span{
    color: #da251d;
}

.dok__typeList{
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 3%;
}

.dok__typeList li{
    width: 31.3%;
    padding: 45px 40px 50px;
    border: 1px solid #e2e2e2;
    transition: ease .3s;
}

.dok__typeList li:hover{
    border-color: #da251d;
    box-shadow: 0 15px 35px rgba(218, 37, 29, 0.08);
    transform: translateY(-6px);
}

.dok__typeNum{
    font-size: 20px;
    font-weight: 700;
    color: #da251d;
}

.dok__typeList h4{
    margin-top: 25px;
    font-size: 27px;
    font-weight: 700;
    color: #000;
}

.dok__typeList h4 span{
    display: block;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #999;
}

.dok__typeList p{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #444;
}

/*
** sec03 — 독이 쌓이면 (다크)
*/

.sec03{
    padding: 230px 0 250px;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.dok__bgChar{
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    font-size: 700px;
    font-weight: 900;
    color: #090909;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.sec03 .inner{
    position: relative;
}

.dok__darkTitle{
    color: #fff;
}

.dok__stageList{
    margin-top: 110px;
    display: flex;
    flex-direction: column;
}

.dok__stageList li{
    padding: 45px 0;
    border-bottom: 1px solid #222;
    display: flex;
    align-items: baseline;
    gap: 50px;
}

.dok__stageList li:first-child{
    border-top: 1px solid #222;
}

.dok__stageLabel{
    flex-shrink: 0;
    width: 120px;
    font-size: 18px;
    font-weight: 600;
    color: #da251d;
}

.dok__stageList h4{
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.dok__stageList p{
    margin-left: auto;
    font-size: 18px;
    font-weight: 400;
    color: #888;
    text-align: right;
}

.dok__darkBottom{
    margin-top: 130px;
    font-size: 44px;
    font-weight: 700;
    line-height: 62px;
    color: #fff;
    text-align: center;
}

.dok__darkBottom span{
    color: #da251d;
}

/*
** sec04 — 독을 풀면
*/

.sec04{
    padding: 220px 0 240px;
    background-color: #fff;
}

.sec04 .big__title{
    text-align: center;
}

.sec04 .big__title span{
    color: #da251d;
}

.dok__afterList{
    margin-top: 100px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.dok__afterList li{
    padding: 40px 10px;
    border-bottom: 1px solid #e6e6e6;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 40px;
}

.dok__afterList li:first-child{
    border-top: 1px solid #e6e6e6;
}

.dok__afterList h4{
    font-size: 30px;
    font-weight: 700;
    color: #000;
    position: relative;
    padding-left: 38px;
}

.dok__afterList h4::before{
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #da251d;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.dok__afterList p{
    font-size: 18px;
    font-weight: 400;
    color: #777;
    text-align: right;
}

/*
** sec05 — 사례
*/

.sec05{
    padding: 220px 0 230px;
    background-color: #f6f6f6;
}

.sec05 .inner{
    text-align: center;
}

.dok__tag{
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid #da251d;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #da251d;
    margin-bottom: 40px;
}

.sec05 .big__title span{
    color: #da251d;
}

.dok__caseList{
    margin-top: 90px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 3%;
    text-align: left;
}

.dok__caseList > li{
    width: 31.3%;
    background-color: #fff;
    border: 1px solid #e2e2e2;
    transition: ease .3s;
}

.dok__caseList > li:hover{
    border-color: #da251d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    transform: translateY(-6px);
}

.dok__caseList > li a{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dok__caseImgWrap{
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.dok__caseImgWrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease .4s;
}

.dok__caseList > li:hover .dok__caseImgWrap img{
    transform: scale(1.05);
}

.dok__caseBody{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px 30px 28px;
}

.dok__caseHead{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dok__caseHead label{
    padding: 5px 12px;
    border: 2px solid #da251d;
    font-size: 14px;
    font-weight: 700;
    color: #da251d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    border-radius: 50px;
    cursor: pointer;
}

.dok__caseDay{
    font-size: 26px;
    font-weight: 800;
    color: #000;
}

.dok__caseList h5{
    margin-top: 22px;
    font-size: 21px;
    font-weight: 700;
    color: #000;
    line-height: 1.35;
}

.dok__caseList p{
    margin-top: 14px;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #666;
}

.dok__caseLink{
    margin-top: auto;
    padding-top: 22px;
    font-size: 12px;
    font-weight: 400;
    color: #00a932;
}

.dok__caseNote{
    margin-top: 45px;
    font-size: 14px;
    color: #999;
}

.dok__caseBtn{
    margin-top: 50px;
}

.dok__tvTitle{
    margin-top: 180px;
}

.dok__tvTitle span{
    color: #da251d;
}

.dok__tvList{
    margin-top: 60px;
    display: flex;
    gap: 3%;
    text-align: left;
}

.dok__tvList li{
    width: 48.5%;
}

.dok__tvList li a{
    display: block;
}

.dok__tvImgWrap{
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.dok__tvImgWrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease .4s;
}

.dok__tvList li:hover .dok__tvImgWrap img{
    transform: scale(1.04);
    opacity: 0.85;
}

.dok__tvPlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(218, 37, 29, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    padding-left: 5px;
    transition: ease .3s;
}

.dok__tvList li:hover .dok__tvPlay{
    background-color: #da251d;
    transform: translate(-50%, -50%) scale(1.1);
}

.dok__tvList p{
    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

/*
** sec06 — 해우청 (브랜드 청록)
*/

.sec06{
    padding: 220px 0 230px;
    background-color: #0c4340;
}

.sec06 .inner{
    text-align: center;
}

.dok__hwcTag{
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #c9a86a;
    margin-bottom: 45px;
}

.dok__hwcTitle{
    color: #fff;
}

.dok__hwcText{
    margin-top: 55px;
    font-size: 22px;
    font-weight: 400;
    line-height: 40px;
    color: rgba(255, 255, 255, 0.75);
}

.dok__hwcImgWrap{
    margin: 70px auto 0;
    max-width: 480px;
}

.dok__hwcImgWrap img{
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.dok__hwcBtns{
    margin-top: 65px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/*
** media
*/

@media screen and (max-width: 1200px){
    .sec02,
    .sec04{
        padding: 140px 0 150px;
    }

    .sec03,
    .sec05,
    .sec06{
        padding: 150px 0 160px;
    }

    .dok__listTitle{
        margin-top: 140px;
    }

    .dok__bgChar{
        font-size: 500px;
    }

    .dok__typeList li{
        width: 48.5%;
    }

    .dok__caseList > li{
        width: 48.5%;
    }

    .dok__stageList h4{
        font-size: 26px;
    }

    .dok__darkBottom{
        font-size: 34px;
        line-height: 48px;
    }

    .dok__afterList h4{
        font-size: 24px;
    }
}

@media screen and (max-width: 900px){
    .dok__stageList li{
        flex-direction: column;
        gap: 12px;
    }

    .dok__stageLabel{
        width: auto;
    }

    .dok__stageList p{
        margin-left: 0;
        text-align: left;
    }

    .dok__afterList li{
        flex-direction: column;
        gap: 12px;
    }

    .dok__afterList p{
        text-align: left;
        padding-left: 38px;
    }
}

@media screen and (max-width: 768px){
    .sec01{
        padding: 100px 0 90px;
    }

    .talk__wrap{
        width: 100%;
        padding: 0 30px;
    }

    .sec02,
    .sec04{
        padding: 100px 0 110px;
    }

    .sec03,
    .sec05,
    .sec06{
        padding: 110px 0 120px;
    }

    .dok__introSub{
        margin-top: 35px;
        font-size: 22px;
    }

    .dok__listTitle{
        margin-top: 100px;
    }

    .dok__typeList{
        margin-top: 50px;
        gap: 20px;
    }

    .dok__typeList li{
        width: 100%;
        padding: 35px 30px 40px;
    }

    .dok__stageList{
        margin-top: 70px;
    }

    .dok__stageList li{
        padding: 32px 0;
    }

    .dok__darkBottom{
        margin-top: 90px;
        font-size: 27px;
        line-height: 40px;
    }

    .dok__afterList{
        margin-top: 60px;
    }

    .dok__afterList li{
        padding: 30px 0;
    }

    .dok__afterList h4{
        font-size: 21px;
    }

    .dok__afterList h4::before{
        font-size: 16px;
    }

    .dok__afterList p{
        font-size: 16px;
        padding-left: 38px;
    }

    .dok__caseList{
        margin-top: 55px;
        gap: 20px;
    }

    .dok__caseList > li{
        width: 100%;
    }

    .dok__caseImgWrap{
        height: 200px;
    }

    .dok__tvTitle{
        margin-top: 110px;
    }

    .dok__tvList{
        margin-top: 40px;
        flex-direction: column;
        gap: 30px;
    }

    .dok__tvList li{
        width: 100%;
    }

    .dok__tvPlay{
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .dok__tvList p{
        font-size: 16px;
    }

    .dok__hwcImgWrap{
        margin-top: 45px;
        max-width: 320px;
    }

    .dok__bgChar{
        font-size: 340px;
        right: -60px;
    }

    .dok__hwcText{
        margin-top: 35px;
        font-size: 18px;
        line-height: 32px;
    }

    .dok__hwcBtns{
        margin-top: 45px;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 650px){
    .talk__wrap .talk{
        width: 300px;
        font-size: 17px;
        padding: 16px 20px;
    }
}

/*
** FAQ
*/

.sec_faq{
    padding: 220px 0 230px;
    background-color: #fff;
}

.dok__faqTitle{
    text-align: center;
}

.dok__faqTitle span{
    color: #da251d;
}

.dok__faqList{
    margin-top: 90px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.dok__faqList li{
    border-bottom: 1px solid #e6e6e6;
}

.dok__faqList li:first-child{
    border-top: 1px solid #e6e6e6;
}

.dok__faqQ{
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 32px 60px 32px 10px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    letter-spacing: inherit;
    word-break: keep-all;
}

.dok__faqQ::before{
    content: "Q.";
    color: #da251d;
    margin-right: 12px;
}

.dok__faqQ::after{
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: #b5b5b5;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: ease .3s;
}

.dok__faqList li.active .dok__faqQ::after{
    transform: translateY(-50%) rotate(180deg);
    color: #da251d;
}

.dok__faqA{
    display: none;
    padding: 0 10px 36px;
}

.dok__faqA p{
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #444;
    word-break: keep-all;
}

@media screen and (max-width: 768px){
    .sec_faq{
        padding: 100px 0 110px;
    }

    .dok__faqList{
        margin-top: 50px;
    }

    .dok__faqQ{
        padding: 24px 44px 24px 4px;
        font-size: 18px;
    }

    .dok__faqA{
        padding: 0 4px 28px;
    }

    .dok__faqA p{
        font-size: 16px;
        line-height: 28px;
    }
}
