@charset "UTF-8";

.post-title-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 70px;
    width: 100%;
    padding: 0 0 15px;
    border-bottom: 1px solid #333;
}

.post-title-box .post-number {
    font-family: "Nunito Sans";
    font-size: 54px;
    line-height: 74px;
    font-weight: 700;
    color: #c9c9c9;
    width: 80px;
    text-align: center;
}

.post-title-box .post-tit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 54px - 80px - 120px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-title-box .post-tit-box>div {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-title-box .post-tit-box .post-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #333;
}

.post-title-box .post-tit-box .post-summary {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #999;
}

.post-title-box .btn-back-list-arrow {
    width: 54px;
    height: 54px;
    border: 1px solid #b6b6b6;
    border-radius: 100%;
    background: url(/image/client/sub/img-pipeline-arrow.png) 50% 50% / 6px 12px no-repeat;
    transform: rotate(180deg);
    cursor: pointer;
}

.post-title-box .btn-back-list-arrow a{
    display:block;
    width:100%;
    height:100%;
}

.post-con-box {
    padding: 40px 0 0;
    margin: 0 0 90px;
}

.post-img {
    max-width: 340px;
    max-height: 275px;
    margin: 0 0 40px;
}

.post-img img {
    max-width: 100%;
    height: 100%;
}

.post-content>ul {
    padding: 0 0 0 20px;
    border-left: 4px solid #555;
    margin: 0 0 50px;
}

.post-content>ul>li {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    color: #555;
}

.post-content>.post-color-box {
    width: 100%;
    padding: 40px 44px;
    background: #f5f6f8;
    border-radius: 8px;
}

.post-content>.post-color-box>p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: #333;
    margin: 0 0 17px;
}

.post-content>.post-color-box>ul>li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #555;
}

.post-content>div {
    background: transparent;
    font-size: 16px;
    ;
    line-height: 30px;
    font-weight: 400;
    color: #555;
    margin: 0 0 40px;
}

.post-content>div:last-of-type {
    margin: 0;
}

.post-content>div>p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
}

.btn-back-list {
    width: 260px;
    margin: 0 auto;
    border: 1px solid #b3b3b3;
    border-radius: 4px;
    background: #fff;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #555;
    cursor: pointer;
}

.btn-back-list a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
}


@media screen and (max-width:768px){
    .post-title-box{
        gap:30px;
    }

    .post-title-box .post-tit-box{
        width:calc(100% - 134px - 60px)
    }

    .post-content>ul>li{
        font-size:16px;
    }
}

@media screen and (max-width:640px){
    .post-title-box .post-tit-box>div{
        overflow:auto;
        text-overflow:initial;
        white-space:pre-wrap;
    }
}

@media screen and (max-width:480px){
    .post-img{
		margin: 0 auto 20px;
	}

    .post-content>ul>li{
        font-size:12px;
    }

    .post-content>.post-color-box>ul>li{
        font-size:14px;
        line-height:20px;
    }

    .post-content>div{
        font-size:14px;
        line-height:28px;
    }
}