@charset "utf-8";
/* secPopLinkbox */
.secPopLinkbox{
    display: block;
}
#triggerPop{
    position: relative;
    width: 180px;
    height: 58px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    background: #F15A24;
    color: #fff;
    pointer-events: all;
    cursor: pointer;
}
#triggerPop input{
    position: absolute;
    width: 20px;
    height: 20px;
    visibility: hidden;
    bottom: 0;
    top: 0;
}
#triggerPop .triggertxt{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 2;
}
#triggerPop .txtIn{
    display: inline-block;
    position: relative;
    padding-left: 27px;
}
#triggerPop .txtIn::after,
#triggerPop .txtIn::before{
    content: "";
    position: absolute;
}
#triggerPop .txtIn::after{
    width: 12px;
    height: 6px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    border-color: #fff;
    transform: rotate(-45deg);
    top: calc(50% - 4px);
    left: 4px;
}
#triggerPop input:checked + .triggertxt .txtIn::after{
    border-color: #F15A24;
}
#triggerPop .txtIn::before{
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: #fff;
    left: 0;
    top: calc(50% - 10px);
}
@media only screen and (max-width:767px){
    #triggerPop .triggertxt{
        font-size: 16px;
    }
}



/* formPopup */
#formPopup{
    display: none;
    position: relative;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    background-color: rgba(0,0,0,0.8);
    padding: 100px 0;
}
.secFormPopinner{
    max-width: 1200px;
    width: calc(100% - 100px);
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
}
.secFormPopinner .noteBox{
    display: flex;
    flex-wrap: wrap;
}
.secFormPopinner .secFormNote{
    width: calc((100% - 40px) / 2);
    margin-right: 40px;
    font-size: 14px;
    line-height: 2.4;
    letter-spacing: 0.5px;
}
.secFormPopinner .must{
    display: inline-block;
    vertical-align: 1px;
    width: 48px;
    height: 25px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.5px;
    padding-top: 6.5px;
    margin-right: 5px;
    color: #FFF;
    background: #D8101A;
}
@media only screen and (min-width:768px){
    .secFormPopinner .secFormNote:nth-child(2),
    .secFormPopinner .secFormNote:nth-child(3){
        margin-right: 0;
    }
    .secFormPopinner .secFormNote:nth-child(n + 2){
        margin-top: 20px;
    }
    .secFormPopinner .secFormNote:first-child,
    .secFormPopinner .secFormNote:last-child{
        width: 100%;
        margin-right: 0;
    }
}
#CloseBtn{
    width: 400px;
    display: flex;
    align-items: center;
    height: 80px;
    border-radius: 100px;
    margin: 0 auto;
    background-color:#F15A24;
    color: #fff;
    pointer-events: all;
    margin-top: 40px;
    cursor: pointer;
    transition: 0.5s;
}
#CloseBtn:hover{
    opacity: 0.8;
}
#CloseBtn .closetxt{
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 1px;
    font-weight: bold;
}
@media only screen and (max-width:767px){
    #formPopup{
        padding: 30px 0;
    }
    .secFormPopinner{
        max-width:100%;
        width: calc(100% - 40px);
        padding:30px 20px;
    }
    .secFormPopinner .noteBox{
        display:block;
    }
    .secFormPopinner .secFormNote{
        width:100%;
        margin-right:0px;
        font-size: 12px;
        line-height: 1.8;
    }
    .secFormPopinner .secFormNote + .secFormNote{
        margin-top: 20px;
    }
    .secFormPopinner .must{
        width: 40px;
        height: 25px;
    }
    #CloseBtn{
        max-width:300px;
        width:calc(100% - 20px);
        height: 60px;
        margin-top: 30px;
    }
    #CloseBtn .closetxt{
        font-size: 16px;
    }
}