@charset "utf-8";

main{width: 100%; overflow: hidden; word-break: keep-all; box-sizing: border-box;}

/* tech ******************************************************************/
/* main-visual */
.tech-main-visual{
    width: 100%;
    height: 600px;
}
.tech-main-visual .main-wrap{
    width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.tech-main-visual .text-wrap .title{
    font-size: 70px;
    font-weight: 700;
}
.tech-main-visual.tech-main-visual .text-wrap .title span{
    color: #1967d2;
    display: block;
    margin-top: 12px;
}
.tech-main-visual .text-wrap .subtitle{
    font-size: 24px;
    margin-top: 48px;
    line-height: 140%;
}
.tech-main-visual .text-wrap .subtitle span{
    font-weight: 700;
}
.tech-main-visual .img-wrap img{
    transform: scale(88%);
}
/* tech-wrap */
.tech-wrap{
    width: 100%;
    background: linear-gradient(to bottom, #e1f0ff, #fff);
}
.tech-wrap .inner{
    padding: 120px 0;
    width: 1320px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 40px;
}
.tech-wrap .tech-item{
    width: calc((100% - 80px) / 3);
    background-color: #f8f9fa;
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 20px;
    transition: .3s;
}
.tech-wrap .tech-item:hover{
    background-color: #1e64dd;
}
.tech-wrap .tech-item a{
    display: block;
    height: 100%;
}
.tech-wrap .tech-item .img-box{
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    aspect-ratio: 1;
    overflow: hidden;
}
.tech-wrap .tech-item .img-box img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.tech-wrap .tech-item  .text-wrap{
    margin-top: 30px;
}
.tech-wrap .tech-item:hover .text-wrap{
    color: #fff;
}
.tech-wrap .tech-item  .text-wrap .date{
    font-size: 15px;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
}
.tech-wrap .tech-item:hover .text-wrap .date{
    color: #fff;
}
.tech-wrap .tech-item  .text-wrap .event-name{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 120%;
}
.tech-wrap .tech-item  .text-wrap .event-cont{
    line-height: 140%;
    padding-bottom: 10px;
}
@media(max-width:1400px){
    .tech-main-visual{
        height: auto;
    }
    .tech-main-visual .main-wrap{
        width: 100%;
        padding: 100px 3% 64px;
    }
    .tech-main-visual .text-wrap .title{
        font-size: 54px;
    }
    .tech-main-visual .text-wrap .subtitle{
        font-size: 20px;
    }
    .tech-main-visual .img-wrap{
        width: 40%;
    }
    .tech-main-visual .img-wrap img{
        width: 100%;
    }
    .tech-wrap .inner{
        padding: 100px 3%;
        width: 100%;
        gap: 20px;
    }
    .tech-wrap .tech-item{
        width: calc((100% - 40px) / 3);
    }
}
@media(max-width:1000px){

    .tech-main-visual .text-wrap .title{
        font-size: 50px;
    }
    .tech-main-visual .text-wrap .subtitle{
        font-size: 18px;
        margin-top: 20px;
    }
    .tech-main-visual .img-wrap{
        width: 50%;
    }
    .tech-wrap .inner{
        gap: 12px;
    }
    .tech-wrap .tech-item{
        width: calc((100% - 24px) / 3);
    }
}
@media(max-width:800px){
    .tech-main-visual .text-wrap .title{
        font-size: 36px;
    }
    .tech-main-visual .text-wrap .subtitle{
        position: relative;
        z-index: 2;
    }
    .tech-main-visual .img-wrap{
        width: 60%;
        position: relative;
        z-index: 1;
    }
    .tech-wrap .tech-item{
        width: calc((100% - 12px) / 2);
    }
    .tech-wrap .tech-item  .text-wrap .date{
        font-size: 14px;
    }
    .tech-wrap .tech-item  .text-wrap .event-name{
        font-size: 21px;
    }
    .tech-wrap .tech-item  .text-wrap .event-cont{
        font-size: 15px;
    }
}
@media(max-width:480px){
    .tech-main-visual{
        height: auto;
    }
    .tech-main-visual .main-wrap{
        display: block;
    }
    .tech-main-visual .main-wrap .img-wrap{
        width: 100%;
    }
    .tech-main-visual .text-wrap .title{
        font-size: 36px;
        text-align: center;
    }
    .tech-main-visual .text-wrap .subtitle{
        position: relative;
        z-index: 2;
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }
    .tech-main-visual .img-wrap{
        width: 60%;
        position: relative;
        z-index: 1;
    }
    .tech-wrap .tech-item{
        padding: 12px;
    }
    .tech-wrap .tech-item  .text-wrap{
        margin-top: 20px;
    }
    .tech-wrap .tech-item  .text-wrap .date{
        margin-bottom: 10px;
    }
    .tech-wrap .tech-item  .text-wrap .event-name{
        font-size: 18px;
    }
    .tech-wrap .tech-item  .text-wrap .event-cont{
        height: 40px;
        overflow-y: scroll;
        margin-bottom: 20px;
    }
    .event-cont::-webkit-scrollbar {
        width: 4px;
    }
    .event-cont::-webkit-scrollbar-track {
        background-color: #ddd;
    }
    .event-cont::-webkit-scrollbar-thumb { 
        background-color: #1967d2;
    }
    .event-cont::-webkit-scrollbar-button {
        display: none;
    }
}
/* offering ******************************************************************/
.offering-main-visual{
    width: 100%;
    height: 600px;
    background-color: #e1f0ff;
}
.offering-main-visual .main-wrap{
    width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.offering-main-visual .text-wrap .title{
    font-size: 70px;
    font-weight: 700;
}
.offering-main-visual.tech-main-visual .text-wrap .title span{
    color: #1967d2;
    display: block;
    margin-top: 12px;
}
.offering-main-visual .text-wrap .subtitle{
    font-size: 24px;
    margin-top: 48px;
    line-height: 140%;
}
.offering-main-visual .text-wrap .subtitle span{
    font-weight: 700;
}
.tech-main-visual .img-wrap img{
    transform: scale(90%);
}
/* offering-wrap */
.offering-wrap{
    width: 100%;
}
.offering-wrap > .inner{
    width: 1320px;
    margin: auto;
    padding: 80px 0 120px;
}
/* tab */
.offering-wrap .tabs{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #eee;
    width: fit-content;
    padding: 12px ;
    border-radius: 60px;
    margin: auto;
}
.offering-wrap .tabs button{
    font-size: 24px;
    font-weight: 400;
    border: none;
    background-color: #fff;
    border-radius: 60px;
    transition: 700;
    padding: 10px 30px;
    cursor: pointer;
}
.offering-wrap .tabs button.active,
.offering-wrap .tabs button:hover{
    color: #fff;
    font-weight: 700;
    background: #3e81f1;
}
/* item */
.offering-wrap .board{
    width: 100%;
}
.offering-wrap .board .inner{
    padding-top: 80px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 40px;
}
.offering-wrap .board .item{
    width: calc((100% - 80px) / 3);
    background-color: #f8f9fa;
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 20px;
    transition: .3s;
}
.offering-wrap .board .item:hover{
    background-color: #1e64dd;
}
.tech-wrap .tech-item a{
    display: block;
    height: 100%;
}
.offering-wrap .board .item .img-box{
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    aspect-ratio: 1;
    overflow: hidden;
}
.offering-wrap .board .item .img-box img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.offering-wrap .board .item  .text-wrap{
    margin-top: 30px;
    position: relative;
}
.offering-wrap .board .item:hover .text-wrap{
    color: #fff;
}
.offering-wrap .board .item  .text-wrap .date{
    font-size: 15px;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
}
.offering-wrap .board .item:hover .text-wrap .date{
    color: #fff;
}
.offering-wrap .board .item  .text-wrap .event-name{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.offering-wrap .board .item  .text-wrap .event-cont{
    line-height: 140%;
    padding-bottom: 10px;
}
.offering-wrap .board .item  .text-wrap .sort{
    position: absolute;
    top: 0;
    right: 20px;
    background-color: #fff;
    color: #3e81f1;
    padding: 4px 20px 6px;
    border-radius: 20px;
    border: 1px solid #eee;
}
@media(max-width:1400px){
    .offering-main-visual{
        height: auto;
    }
    .offering-main-visual .main-wrap{
        width: 100%;
        padding: 100px 3% 64px;
    }
    .offering-main-visual .text-wrap .title{
        font-size: 54px;
    }
    .offering-main-visual .text-wrap .subtitle{
        font-size: 20px;
    }
    .offering-main-visual .img-wrap{
        width: 40%;
    }
    .offering-main-visual .img-wrap img{
        width: 100%;
    }
    .offering-wrap > .inner{
        width: 100%;
        padding: 80px 3% 100px;
    }
    .offering-wrap .board .inner{
        gap: 20px;
    }
    .offering-wrap .board .inner .item{
        width: calc((100% - 40px) / 3);
    }
    .offering-wrap .board .item .text-wrap .sort{
        right: 0;
        top: -10px;
    }
}
@media(max-width:1000px){

    .offering-main-visual .text-wrap .title{
        font-size: 50px;
    }
    .offering-main-visual .text-wrap .subtitle{
        font-size: 18px;
        margin-top: 20px;
    }
    .offering-main-visual .img-wrap{
        width: 50%;
    }
    .offering-wrap > .inner{
        padding: 40px 3% 100px;
    }
    .offering-wrap .tabs button{
        font-size: 18px;
    }
    .offering-wrap .board .inner{
        gap: 12px;
        padding-top: 40px;
    }
    .offering-wrap .board .inner .item{
        width: calc((100% - 24px) / 3);
    }
    .offering-wrap .board .item .text-wrap .sort{
        font-size: 14px;
    }
}
@media(max-width:800px){
    .offering-main-visual .text-wrap .title{
        font-size: 36px;
    }
    .offering-main-visual .text-wrap .subtitle{
        position: relative;
        z-index: 2;
    }
    .offering-main-visual .img-wrap{
        width: 60%;
        position: relative;
        z-index: 1;
    }
    .offering-wrap .board .inner .item{
        width: calc((100% - 12px) / 2);
    }
    .offering-wrap .board .inner .item  .text-wrap .date{
        font-size: 14px;
    }
    .offering-wrap .board .inner .item  .text-wrap .event-name{
        font-size: 21px;
    }
    .offering-wrap .board .inner .item  .text-wrap .event-cont{
        font-size: 15px;
    }
    
}
@media(max-width:480px){
    .offering-main-visual{
        height: auto;
    }
    .offering-main-visual .main-wrap{
        display: block;
    }
    .offering-main-visual .main-wrap .img-wrap{
        width: 100%;
    }
    .offering-main-visual .text-wrap .title{
        font-size: 36px;
        text-align: center;
    }
    .offering-main-visual .text-wrap .subtitle{
        position: relative;
        z-index: 2;
        font-size: 16px;
        text-align: center;
        margin-bottom: 20px;
    }
    .offering-main-visual .img-wrap{
        width: 60%;
        position: relative;
        z-index: 1;
    }
    .offering-wrap .tabs{
        padding: 8px;
    }
    .offering-wrap .tabs button{
        font-size: 16px;
        padding: 4px 20px;
    }
    .offering-wrap .board .item{
        padding: 12px;
    }
    .offering-wrap .board .item .text-wrap{
        margin-top: 20px;
    }
    .offering-wrap .board .item .text-wrap .date{
        margin-bottom: 10px;
    }
    .offering-wrap .board .item .text-wrap .event-name{
        font-size: 18px;
    }
    .offering-wrap .board .item .text-wrap .event-cont{
        height: 40px;
        overflow-y: scroll;
        margin-bottom: 20px;
    }
}
/* inquiry************************************************************** */
input:focus {
    outline: none;
    border: 2px solid #4285f4;
}
.inquiry-main-visual{
    width: 100%;
    height: 600px;
}
.inquiry-main-visual .main-wrap{
    width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.inquiry-main-visual .text-wrap .title{
    font-size: 70px;
    font-weight: 700;
}
.inquiry-main-visual .text-wrap .title span{
    color: #1967d2;
    display: block;
    margin-top: 12px;
}
.inquiry-main-visual .text-wrap .subtitle{
    font-size: 24px;
    margin-top: 48px;
    line-height: 120%;
}
.inquiry-main-visual .text-wrap .subtitle span{
    font-weight: 700;
}
.inquiry-main-visual .img-wrap img{
    transform: scale(90%);
}
/* join-cont  */
.join-cont{
    width: 100%;
    background-color:#e1f0ff ;
}
.join-cont .join-wrap{
    width: 1320px;
    margin: auto;
    padding: 120px 0;
}
.join-cont .join-text{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 80px;
    line-height: 120%;
}
.join-input-wrap{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.input-box{
    width: calc((100% - 40px) / 2);
}
.input-box .join-title{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    align-items: center;
}
.input-box .join-title .title{
    font-size: 18px;
    font-weight: 700;
}
.input-box .join-title .important{
    width: 40px;
    height: 20px;
    background-color: #3b7eef;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 19px;
}
.input-box .join_form{
    box-sizing: border-box;
    border: 1px solid #ddd;
    height: 56px;
    border-radius: 8px;
    display: inline-block;
    width: 100%;
    padding-left: 20px;
    background-color: #fff;
}
.phone_input_box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.input-box .join_form_02{
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 56px;
    width: 20%;
    padding: 0 8px;
    text-align: center;
    background-color: #fff;
}
.input-box .join_form_03{
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 56px;
    width: 34%;
    text-align: center;
    background-color: #fff;
}
.input-box.content{
    width: 100%;
}
.input-box.content .join_form{
    height: 120px;
    padding: 20px;
    resize: vertical;
}
.input-box.privacy{
    margin-top: 40px;
}
.input-box.privacy .join_agree_check > span{
    margin-left: 4px;
}
.input-box.privacy .join_agree_check .blue{
    color: #1967d2;
    font-weight: 700;
}
.input-box.privacy input[type="checkbox"]{
    width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    accent-color: #4285f4;
    cursor: pointer;
    position: relative;
    top: 6px;
    appearance: auto;
    border: 1px solid #ccc;
}

.join-wrap .join_btn{
    width: 400px;
    height: 80px;
    border-radius: 4px;
    background: linear-gradient(to right, #4285f4, #1e64dc);
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
    z-index: 1;
    overflow: hidden;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 76px;
    margin-top: 80px;
    cursor: pointer;
}
.join-wrap .join_btn::after{
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background: rgba(256, 256, 256, 1) ;
    transition: all .5s ease;
}
.join-wrap .join_btn:hover:after{
    left: 0;
    width: 100%;
}
.join-wrap .join_btn:active{
    top: 2px;
}
.join-wrap .join_btn:hover{
    color: #1e64dc;
}
.join-wrap .join_btn:disabled,
.join-wrap .join_btn.disabled{
    background: #bbb;
    cursor: not-allowed;
    opacity: 0.7;
}
.join-wrap .join_btn:disabled:hover,
.join-wrap .join_btn.disabled:hover{
    color: #fff;
}
.join-wrap .join_btn:disabled::after,
.join-wrap .join_btn.disabled::after{
    display: none;
}
.input-box.privacy.highlight .join_agree_check{
    animation: privacy-shake 0.4s ease;
    background-color: #fff3cd;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid #f59e0b;
    transition: background-color 0.3s, border-color 0.3s;
}
@keyframes privacy-shake{
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
}
/* inquiry success ********************************************************/
.inquiry-success-page{
    width: 100%;
    min-height: 600px;
    background: linear-gradient(180deg, #e1f0ff 0%, #f8fbff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}
.success-card{
    width: 600px;
    max-width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(30, 100, 220, 0.1);
    padding: 64px 48px;
    text-align: center;
}
.success-icon{
    margin-bottom: 32px;
}
.success-icon svg{
    display: inline;
}
.success-title{
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}
.success-desc{
    font-size: 16px;
    color: #555;
    line-height: 170%;
    margin-bottom: 40px;
}
.success-desc strong{
    color: #1e64dc;
    font-weight: 700;
}
.success-info{
    background: #f5f9ff;
    border-radius: 12px;
    padding: 24px 32px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 48px;
}
.success-info-item{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.success-info-label{
    font-size: 13px;
    color: #888;
    font-weight: 600;
}
.success-info-value{
    font-size: 15px;
    color: #222;
    font-weight: 500;
}
.success-actions{
    display: flex;
    gap: 16px;
    justify-content: center;
}
.success-btn-primary{
    height: 52px;
    padding: 0 36px;
    background: linear-gradient(to right, #4285f4, #1e64dc);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
}
.success-btn-primary:hover{
    box-shadow: 0 4px 16px rgba(30, 100, 220, 0.3);
    transform: translateY(-1px);
}
.success-btn-secondary{
    height: 52px;
    padding: 0 36px;
    background: #fff;
    color: #1e64dc;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #1e64dc;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.success-btn-secondary:hover{
    background: #1e64dc;
    color: #fff;
}
.inquiry-fail-page{
    background: linear-gradient(180deg, #fef2f2 0%, #fffafa 100%);
}
.fail-card{
    box-shadow: 0 8px 40px rgba(239, 68, 68, 0.08);
}
@media(max-width:600px){
    .inquiry-success-page{
        padding: 100px 16px 60px;
    }
    .success-card{
        padding: 48px 24px;
        border-radius: 16px;
    }
    .success-title{
        font-size: 22px;
    }
    .success-desc{
        font-size: 15px;
    }
    .success-info{
        flex-direction: column;
        gap: 16px;
        padding: 20px 24px;
    }
    .success-actions{
        flex-direction: column;
        gap: 12px;
    }
    .success-btn-primary,
    .success-btn-secondary{
        width: 100%;
        justify-content: center;
    }
}

@media(max-width:1400px){
    .inquiry-main-visual{
        height: auto;
    }
    .inquiry-main-visual .main-wrap{
        width: 100%;
        padding: 100px 3% 64px;
    }
    .inquiry-main-visual .main-wrap .img-wrap{
        width: 40%;
    }
    .inquiry-main-visual .main-wrap .img-wrap img{
        width: 100%;
    }
    .inquiry-main-visual .text-wrap .title{
        font-size: 54px;
    }
    .inquiry-main-visual .text-wrap .subtitle{
        font-size: 20px;
    }
    .join-cont .join-wrap{
        width: 100%;
        padding: 100px 3%;
    }
    .join-wrap .join_btn{
        font-size: 27px;
        height: 64px;
        line-height: 62px;
        width: 360px;
    }
}
@media(max-width:1000px){
    .inquiry-main-visual .main-wrap .img-wrap{
        width: 50%;
    }
    .inquiry-main-visual .text-wrap .title{
        font-size: 50px;
    }
    .inquiry-main-visual .text-wrap .subtitle{
        font-size: 18px;
        margin-top: 20px;
    }
    .join-cont .join-text{
        font-size: 20px;
        margin-bottom: 64px;
    }
    .join-input-wrap{
        gap: 20px;
    }
    .input-box{
        width: calc((100% - 20px) / 2);
    }
    .input-box.privacy{
        width: 100%;
    }
    .join-wrap .join_btn{
        font-size: 24px;
        height: auto;
        line-height: normal;
        width: 320px;
        padding: 10px 0 12px;
        margin-top: 64px;
    }
}
@media(max-width:800px){

    .inquiry-main-visual .main-wrap .img-wrap{
        width: 60%;
    }
    .inquiry-main-visual .text-wrap .title{
        font-size: 36px;
    }
    .join-cont .join-text{
        font-size: 18px;
        margin-bottom: 48px;
    }
    .input-box{
        width: 100%;
    }
    .input-box.privacy{
        width: 100%;
    }
    .join-wrap .join_btn{
        font-size: 24px;
        height: auto;
        line-height: normal;
        width: 320px;
        padding: 10px 0 12px;
        margin-top: 64px;
    }
}
@media(max-width:480px){

    .inquiry-main-visual{
        height: auto;
    }
    .inquiry-main-visual .main-wrap{
        display: block;
    }
    .inquiry-main-visual .main-wrap .img-wrap{
        width: 100%;
        margin-top: 20px;
    }
    .inquiry-main-visual .text-wrap .title{
        font-size: 36px;
        text-align: center;
    }
    .inquiry-main-visual .text-wrap .subtitle{
        font-size: 16px;
        text-align: center;
    }
    .input-box.privacy .join_agree_check{
       display: flex;
       align-items: start;
    }
    .input-box.privacy .join_agree_check > span{
        margin-left: 8px;
        line-height: 120%;
        padding-top: 2px;
    }
    .input-box.privacy input[type="checkbox"]{
        top: 0;
        flex-shrink: 0;
    }
    .join-wrap .join_btn{
        font-size: 20px;
    }
}

/* offering-detail *****************************************************************/
.detail-main-visual{
    width: 100%;
    height: 400px;
    background-color: #f8f9fa;
}
.detail-main-visual .main-wrap{
    width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
}
.detail-main-visual .main-wrap .sort{
    font-size: 18px;
    font-weight: 700;
    background-color: #e1f0ff;
    padding: 10px 40px;
    border-radius: 20px;
    color: #1e64dc;
    display: inline-block;
    margin-bottom: 16px;
}
.detail-main-visual .main-wrap .title{
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 24px;
}
.detail-main-visual .main-wrap .sub-info{
    font-size: 15px;
    color: #555;
    display: flex;
    gap: 28px;
}
.detail-main-visual .main-wrap .sub-info .date{
    position: relative;
}
.detail-main-visual .main-wrap .sub-info .date::after{
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background-color: #888;
    right: -15px;
    top: 2px;
}
.detail-info{
    width: 100%;
}
.detail-info .inner{
    width: 1320px;
    margin: auto;
    padding: 100px 0;
}
.detail-info .before{
    color: #1967d2;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    display: inline-block;
    padding: 8px 20px 10px;
    border: 1px solid #1e64dc;
    border-radius: 18px;
    margin-top: 80px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: .3s;
}

@media(max-width:1400px){
    .detail-main-visual .main-wrap{
        width: 100%;
        padding: 100px 3% 64px;
    }
    .detail-main-visual .main-wrap .title{
        font-size: 36px;
    }
    .detail-info .inner{
    width: 100%;
    padding: 100px 3%;
}
}
@media(max-width:1000px){
    .detail-main-visual{
        height: auto;
    }
    .detail-main-visual .main-wrap{
        padding: 120px 3% 80px;
    }
    .detail-main-visual .main-wrap .title{
        font-size: 32px;
    }
}
@media(max-width:800px){
    .detail-main-visual .main-wrap .sort{
        font-size: 16px;
        padding: 8px 24px;
    }
    .detail-main-visual .main-wrap .title{
        font-size: 28px;
    }
}
@media(max-width:480px){
    .detail-main-visual .main-wrap{
        padding: 100px 3% 64px;
    }
    .detail-main-visual .main-wrap .title{
        font-size: 24px;
    }
}