/*#request {
	background: #140a05 url(/images/request_bg.png);
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: top center;
}*/
/*260318 추가*/
@font-face {
    font-family: 'LineSeed';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/LINESeedKR-Rg.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'LineSeed';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_11-01@1.0/LINESeedKR-Bd.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}
.revise_header {
    width: 100%;
    margin: auto;
    padding: 0 50px 20px 50px;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    z-index: 999;
    position: absolute;
    box-sizing: border-box;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    /* transition: all 0.6s ease; */
    opacity: 0.95;
    height: 80px;
}
.revise_header .logo{width:auto; margin-top: 25px; transform: none;}
.revise_header .logo img{position: inherit;}
#main_visual {
    position: relative;
    width: 100%;
    min-height: 500px;
    /* ▼ 배경 이미지 경로 교체 */
    background-image: url(/images/zeroweb_bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    padding: 8vh 10vw;
}
/* ── 애니메이션 ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* 왼쪽 텍스트 */
.main_tit {
    flex: 1 1 auto;
    z-index: 1;
    opacity: 0;
    animation: fadeUp .75s ease forwards;
    animation-delay: .1s;
    font-family: 'LineSeed';
}
.main_tit h1 {
    font-size: clamp(2.6rem, 5.5vw, 4em);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.5px;
    word-break: keep-all;
    color: #fff;
    font-family: 'LineSeed';
}
.main_tit h1 small{font-family: 'LineSeed';
font-size: 1rem; font-weight: 100; letter-spacing:5; opacity: 0.5; display: inline-block; margin-bottom: 20px;}
.main_tit h1 span {
    color: #ef5e31;
    display: block;
	 font-family: 'LineSeed';
}
.main_tit p
{font-size: clamp(0.9rem, 3vw, 1.1rem);
	color: #fff;
	opacity: 0.8;
	 font-family: 'LineSeed';
	line-height: 1.4;
	padding-top: 40px;
	word-break: keep-all;
}

/* 오른쪽 디바이스 이미지 */
.main_img {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
    opacity: 0;
    animation: fadeLeft .85s ease forwards;
    animation-delay: .3s;
    padding-top: 5%;
}
.main_img img {
    width: clamp(500px, 48vw, 870px);
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
#contact_wrap {
    width: 100%;
    padding: 10vh 10vw 15vh 10vw;
    display: flex;
    justify-content: space-between;
    gap: clamp(23px, 8vw, 40%);
}
#conBox {
    flex: 1 1 auto;
}
#request {
    background: #140a05;
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: top center;
}
#request_warp {
    width: 100%;
    max-width: 1500px;
    height: auto;
    margin: 0 auto;
    padding-bottom: 15%;
    text-align: center;
    font-family: 'LineSeed';
    /*padding: 80px 60px;*/
    padding: 10vh 10vw 15vh 10vw;
}
#reqBox {
    /*width: 1200px;
    margin: auto;*/
    text-align: center;
    height: auto;
    /*padding:10% 0 0;*/
    display: block;
    border: 0px solid #fff;
}
.conContents {
    width: 100%;
}
.con_cont br {
    display: inline;
}
/* 카드 그리드 */
.conContents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.conContents a {
    text-decoration: none;
    display: block;
}
/* 카드 공통 */
.conBox01, .conBox02 {
    background: #1a1a1d;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 5vh 2vw;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    cursor: pointer;
    text-align: left;
	font-family: 'LineSeed';
}
.conBox01:hover, .conBox02:hover {
    border-color: #ef5e31;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(232, 92, 26, .1);
}
/* span — 제로웹 클라이언트 전용 */
.conBox01 span, .conBox02 span {
    display: block;
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
    font-family: 'LineSeed';
}
.con_text {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #e85c1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'LineSeed';
}
.con_text::after {
    content: '→';
    display: inline-block;
    transition: transform .2s;
}
.conBox01:hover .con_text::after, .conBox02:hover .con_text::after {
    transform: translateX(5px);
}
.con_cont p{
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: #fff;
    line-height: 1.4;
	font-family: 'LineSeed';
}
.con_cont p {
    margin: 0;
}
.reqContents {
    width: 100%;
}
.reqTit {
    /* width: 1200px;*/
    text-align: left;
    color: #fff;
    padding: 0 0 5%;
    word-break: keep-all;
    font-size: clamp(2rem, 4.5vw, 2.5em);
    font-family: 'LineSeed';
    font-weight: 700;
}
.conTit {
    line-height: 1.4;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.conTit .faq{color:#999; font-size: 1.1rem;font-family: 'LineSeed';
cursor: pointer;
 width: fit-content; 
  gap: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.conTit .faq::after {
  content: '→';
  display: inline-block;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-left: 6px;
}

.conTit .faq:hover {
  color: #ef5e31;
}

.conTit .faq:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.conTit h2 {
    font-family: 'LineSeed';
    color: #ef5e31;
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3rem);
}
.conTit p {
    font-family: 'LineSeed';
    font-size: clamp(1.3rem, 4.5vw, 2rem);
    color: #fff;
	margin-top: 10px;
}
.conTit p span {
    font-weight: 700;
    font-family: 'LineSeed';
	font-size: clamp(1.3rem, 4.5vw, 2rem);
}
.reqTxt span {
    display: block;
    font-size: 24px;
    color: #ef5e31;
    text-align: left;
    padding: 0 0 15px;
    font-family: 'LineSeed';
}
.reqTxt small {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    padding-bottom: 50px;
    word-break: keep-all;
    font-family: 'LineSeed';
    line-height: 1.3;
}
.reqBox01, .reqBox02 {
    float: left;
    width: 100%;
    border: 1px solid #f33;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.5s;
}
.reqBox01 span {
    display: block;
    margin: 10% auto 0;
    width: 46px;
    height: 46px;
    background-image: url(/images/req_icon01.png);
    transition: all 0.5s;
}
.req_text {
    font-size: 30px;
    color: #f33;
    padding: 25px 0px;
    font-weight: 500;
}
.req_cont {
    width: 94%;
    margin: 0 auto 10%;
    color: #d8d8d8;
    font-size: 16px !important;
    line-height: 26px;
    word-break: keep-all;
}
.req_cont p {
    display: block;
}
.reqBox02 span {
    display: block;
    margin: 10% auto 0;
    width: 46px;
    height: 46px;
    background-image: url(/images/req_icon02.png);
    transition: all 0.5s;
}
.reqBox01:hover, .reqBox02:hover {
    background: #f33;
}
.reqBox01:hover .req_text, .reqBox02:hover .req_text {
    color: #fff;
}
.reqBox01:hover span {
    background-image: url(/images/req_icon01_ov.png);
}
.reqBox02:hover span {
    background-image: url(/images/req_icon02_ov.png);
}
.reqContents:after {
    content: "";
    display: block;
    clear: both;
}
textarea {
    -webkit-appearance: none;
}
.requestTop {
    background: #2d2d2d;
    font-size: 1.3rem;
    color: #fff;
    padding: 2.5vh;
}
.requestTop span {
    margin-right: 10px;
}
.requestVideo {
    position: absolute;
    top: 0px;
    left: 0px;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    z-index: -1;
    overflow: hidden;
}
.requestTit h1 {
    width: 100%;
    font-size: 3vh;
    font-weight: 500;
    color: #444;
    text-align: left;
    padding: 0 0 2vh 1vh;
    margin-bottom: 1%;
    border-bottom: 1px solid #cccccc;
}
.reqContents a {
    width: 47%;
    float: left;
}
.reqContents a:first-child {
    margin-right: 4%;
}
.reqContents:after, .ft_call:after, .footer_info_r:after {
    content: "";
    display: block;
    clear: both;
}
.pmj_box2 {
    width: 80%;
    margin: 0 auto;
}
.pmj_box2 ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'LineSeed';
}
.pmj_box2 li.left {
    width: 15%;
    line-height: .8;
    font-family: 'LineSeed';
}
.pmj_box2 li.right {
    width: 85%;
}
.pmj_box2 li.mail {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.pmj_box2 li {
    width: 100%;
    font-size: 15px;
    text-align: left;
    color: #fff;
    line-height: 1;
    padding-top: 2%;
}
.pmj_box2 li input, .pmj_box2 li textarea {
    font-family: "Noto Sans KR";
    font-size: 18px;
    width: 100%;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #d1d1d1;
    padding: 1vh;
    /*margin-right: 5px;*/
}
.pmj_box2 li input[type='checkbox'] {
    width: initial;
}
label.check {
    font-size: 14px;
    color: #5a5a5a;
    margin-right: 3%;
}
.pmj_box2 li input::-ms-input-placeholder, .pmj_box2 li textarea::-ms-input-placeholder {
    color: transparent;
}
.pmj_box2 li input::-webkit-input-placeholder, .pmj_box2 li textarea::-webkit-input-placeholder {
    color: transparent;
}
.pmj_box2 li input::-moz-placeholder, .pmj_box2 li textarea::-moz-placeholder {
    color: transparent;
}
label {
    font-size: 1rem;
    margin-left: 5px;
}
.pmj_box4 {
    padding: 50px 0 10px;
    text-align: center;
}
.pmj_box4 div {
    font-size: 1rem;
    text-align: center;
    color: #eaeaea;
    margin-bottom: 1%;
}
.pmj_box4 div span {
    font-size: 14px;
    color: #ccc;
    margin-left: 5px;
}
.pmj_box4 label {
    margin: 0 6px;
}
.csck_input {
    width: 34.7% !important;
    border-radius: 5px;
    padding: 10px 0px;
    height: 48px;
    border: 0;
    font-size: 16px;
    text-indent: 10px;
}
.csck_input2 {
    width: 26%;
    border-radius: 5px;
    padding: 10px 0px;
    height: 48px;
    border: 1px solid #d1d1d1;
    font-size: 16px;
    text-indent: 10px;
    margin-top: -5px;
    color: #a7a7a7;
    background: #fff;
}
select {
    -webkit-appearance: menulist;
    color: #a7a7a7;
}
.req_file {
    background: none !important;
    border: none !important;
    font-size: 14px !important;
    color: #fff;
}
.tyFile span {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 10px;
    word-break: keep-all;
}
.password span {
    display: block;
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    word-break: keep-all;
}
#agree_label, #unagree_label {
    font-size: 16px;
    line-height: 16px;
    color: #eaeaea;
}
[type="radio"]:checked, [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label, [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after, [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: rgba(255, 0, 0, 0.8);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
div.btn_submit {
    width: 80%;
    line-height: 54px;
    margin: 3% auto 0;
    text-align: center;
    font-size: 16px;
    border: 0px;
    color: #fff;
    background-color: #ef5e31;
    border-radius: 5px;
    cursor: pointer;
    -ms-user-select: none;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
.note {
    width: 100%;
    margin: 60px 0;
}
.note th {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid #717171;
    text-align: center;
    font-family: 'LineSeed';
}
.note td {
    line-height: 60px;
    color: #fff;
    border-bottom: 1px solid #717171;
    text-align: center;
    font-family: 'LineSeed';
}
.Pwd_wrap {
    width: 70%;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    padding: 60px 10px;
}
.Pwd_wrap h1 {
    font-size: 24px;
    color: #f33;
    font-weight: 600;
    margin-bottom: 15px;
}
.Pwd_wrap h6, .Pwd_wrap h6 p {
    display: block;
    font-size: 14px;
    color: #6f6f6f;
    word-break: keep-all;
}
.Pwd_wrap ul {
    width: 70%;
    margin: 15px auto 0;
}
.Pwd_wrap li.left {
    font-size: 16px;
    color: #4e4e4e;
}
.csck_pwd_ok {
    width: 20%;
    background: #f33;
    color: #fff;
    border: 0;
    line-height: 30px;
    margin-right: 2%;
}
.csck_pwd_close {
    width: 20%;
    background: #6f6f6f;
    color: #fff;
    border: 0;
    line-height: 30px;
}
.csck_view_div2 {
    width: 100%;
    margin-bottom: 5%;
}
.csck_view_div2 tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}
.csck_view_div2 th {
    width: 20%;
    padding-left: 4%;
    line-height: 60px;
    color: #fff;
    font-size: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.2);
}
.csck_view_div2 td {
    padding-left: 4%;
    line-height: 60px;
    color: #fff;
    font-size: 16px;
}
.csck_view_div2 tr:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.csck_view_TT {
    font-size: 16px;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid #f33;
    padding-bottom: 2%;
}
.csck_view_div2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2)
}
.csck_line tr:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.csck_list p {
    display: inline-block;
    width: 20%;
    background: #f33;
    border-radius: 5px;
    color: #fff;
    border: 0;
    line-height: 50px;
    margin: 1% 0 5%;
}
/*~1800px*/
@media all and (max-width: 1800px) {
    #contact_wrap {
        flex-direction: column;
    }
    .conTit {
        margin-bottom: 80px;
    }
    #main_visual {
        padding: 15vh 10vw 0 10vw;
    }
    .conBox01, .conBox02 {
        padding: 5vh 4vw;
    }
}
/* 
  ~ 1200px
*/
@media all and (max-width: 1200px) {
    /*#reqBox, .reqTit {width:86%;}*/
    .reqContents {
        max-width: 100%;
        margin: 0 auto;
    }
    .pmj_box2 {
        width: 100%;
    }
    .csck_input2 {
        width: 23.6%;
    }
    .pmj_box4 div {
        margin-bottom: 3%;
    }
    div.btn_submit {
        width: 100%;
        line-height: 45px;
    }
    /*#reqBox{padding:13% 0 0;}*/
    #page11_wrap {
        padding: 10% 0 36% 0;
    }
    #main_visual {
        flex-direction: column;
    }
    .main_tit h1 {
        text-align: center;
    }
    .conTit {
        text-align: center;
    }
    .conContents {
        grid-template-columns: 1fr;
    }
    .con_cont br {
        display: none;
    }
	.main_tit p{text-align:center; padding: 4vh 2vw 0 2vw;}
	 .conTit {
        margin-bottom: 20px;
		 align-items: center;
    }
	
}
@media all and (max-width: 767px) {
	#main_visual{padding:13vh 10vw 0 10vw;}
    .reqTit {
        padding-top: 15%;
    }
    .req_cont {
        width: 86%;
    }
    .reqContents a {
        display: block;
        width: 100%;
    }
    .reqContents a:first-child {
        margin-right: 0;
    }
    .reqBox01 {
        margin-bottom: 30px;
    }
    .pmj_box2_ {
        width: 100%:
    }
    .pmj_box2 ul {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 13px;
    }
    .pmj_box2 li.left, .pmj_box2 li.right {
        width: 100%;
    }
    .csck_input {
        width: 33% !important;
    }
    .csck_input2 {
        width: 25.6%;
    }
    .Pwd_wrap ul {
        flex-direction: row;
        align-items: center;
        margin-bottom: 0;
    }
    .Pwd_wrap li.left {
        width: 15%;
        margin-right: 1%;
        line-height: 18px;
    }
    .Pwd_wrap .csck_pwd_ok, .Pwd_wrap .csck_pwd_close {
        width: 25%;
    }
    .con_cont br {
        display: inline;
    }
   
    .conBox01 span, .conBox02 span, .con_cont {
        font-size: 1rem;
    }
    .conBox01 span, .conBox02 span {
        margin-bottom: 20px;
    }
    .conBox01, .conBox02 {
        padding: 3.5vh 5vw;
    }
    .conContents {
        gap: 20px;
    }
	.revise_header .logo{width: 90px;}
	#contact_wrap{padding:8vh 10vw;
	}
}
@media all and (max-width: 480px) {
    .req_cont p {
        display: inline-block;
    }
    .csck_input2 {
        width: 27%;
    }
    .pmj_box2 li {
        padding-top: 3%;
    }
    .Pwd_wrap {
        width: 90%;
    }
    .Pwd_wrap li.left {
        display: none;
    }
    .Pwd_wrap li input::-ms-input-placeholder, .pmj_box2 li textarea::-ms-input-placeholder {
        display: block;
        color: #b9b9b9;
        font-size: 16px;
    }
    .Pwd_wrap li input::-webkit-input-placeholder, .pmj_box2 li textarea::-webkit-input-placeholder {
        display: block;
        color: #b9b9b9;
        font-size: 16px;
    }
    .Pwd_wrap li input::-moz-placeholder, .pmj_box2 li textarea::-moz-placeholder {
        display: block;
        color: #b9b9b9;
        font-size: 16px;
    }
    .Pwd_wrap .csck_pwd_ok, .Pwd_wrap .csck_pwd_close {
        width: 38%;
    }
    .csck_view_div2 {
        margin-bottom: 8%;
    }
    .csck_view_div2 th {
        width: 30%;
        padding-left: 3%;
    }
    .csck_input {
        width: 32% !important;
    }
    .csck_input2 {
        font-size: 12px;
        text-indent: 1px;
    }
    .reqTxt small {
        font-size: 14px;
    }
    .main_tit h1 {
        font-size: 1.9rem;
    }
    .conTit h2 {
        font-size: 1.5rem;
    }
    .conTit p {
        font-size: 1.2rem;
    }
    .con_text {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .main_img img {
        max-width: 350px;
    }
    #contact_wrap {
        padding: 10vh 8vw 12vh 8vw;
    }
	.conTit .faq{font-size: 1rem;}
	.main_tit h1 small{font-size:0.9rem; }
	.conContents{gap:10px;}
}
@media all and (max-width: 400px) {
    .csck_input2 {
        width: 26%;
    }
}
@media all and (max-width:320px) {
    .reqTit {
        font-size: 32px;
        line-height: 36px;
    }
    .req_text {
        font-size: 27px;
        padding: 17px 0px;
    }
}