@charset "utf-8";

/* ==================================================
	공통사항
================================================== */
.member_vis{
	margin: 60px auto;
	width: 100%;	
    /* max-width: 1000px; */
	height: 200px;
	background: url('../images/common/member_visual.jpg') no-repeat center;
    background-size: cover;
}
.sub_txt{
	margin-top: 16px;
	text-align: center;
	line-height: 1.5;
}

/* 모바일CSS */
@media screen and (max-width:480px) {
    .member_vis{
        margin: 60px auto 40px;
        height: 140px;
    }
}

/* 멤버 컨텐츠  */
.cont_inner_member{
	margin: 0 auto;
	padding: 3rem 0;
	width: 100%;	max-width: 1000px;	word-break: auto-phrase;
}
.login{
	width: 100%;	max-width: 450px;
	margin: 0 auto;
}

.login .input_type {
    width: 100%;
    height: 46px;
    padding: 0px 11px 1px 15px;
    border: 1px solid var(--color-gray2);
    font-weight: var(--font-rg);
    font-size: var(--rem-17);
    line-height: 1.5;
    color: rgb(51, 51, 51);
    box-sizing: border-box;
}

/* 멤버 컨텐츠  */
.login .input_type + .input_type {
	margin-top: 1rem;
}
.login .input_type {
    width: 100%;
    height: 46px;
    padding: 0px 11px 1px 15px;
    border: 1px solid var(--color-gray2);
    font-weight: var(--font-rg);
    font-size: var(--rem-17);
    line-height: 1.5;
    color: rgb(51, 51, 51);
    box-sizing: border-box;
}

.checkbox{
	padding-top: 2rem;
}
.checkbox input[type=checkbox] {
    appearance: none;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: var(--rem-20);
    height: var(--rem-20);
    padding: 0;
    margin: 0;
    background: url('../images/form/input_checkbox.png') no-repeat;
    background-size: var(--rem-20);
    cursor: pointer;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.checkbox input[type=checkbox]:checked {
    background-position: 0 bottom;
}

.checkbox label{
    color: var(--color-gray3);
}

.btn_wrap{
    margin-top: var(--rem-20);
}

.btn_wrap button {
    padding: 13px;
    display: block;
    width: 100%;
    background-color: #0F368A;
    font-size: var(--rem-20);
    font-weight: var(--font-sb);
    color: #ffffff;
}

.member_footer {
	margin-top: 40px;
    border-top: 1px solid #E2E2E2;
}

.member_footer .member_btns {
    --member_btns_gap: 30px;
    margin-top: var(--rem-30);
    display: flex;
    justify-content: center;
    gap: 0 var(--member_btns_gap);
}
.member_footer .member_btns li {
    position: relative;
}
.member_footer .member_btns li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(-1*(var(--member_btns_gap) / 2));
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 14px;
    background-color: #d9d9d9;
}


/* ==================================================
	참가신청 현황
================================================== */
.status{
    /* max-width: 700px;     */
    width: 100%;
    margin: 0 auto;    padding: 3rem;
    line-height:1.4;    
    border: 1px solid #E2E2E2;  border-top: solid 1px #000;
}

.status .text{
    font-weight: var(--font-sb);    font-size: var(--rem-24);
    padding-bottom: 15px;   text-align: center;
}

.status .text a{
    display: inline-block;
    padding: 8px 18px;
    border: solid 2px var(--brand-color-main);  border-radius: 50px;
    color: var(--brand-color-main);
}
.status .text a:hover{
    background: var(--brand-color-main);    color: var(--color-white);
    /* box-shadow: 2px 0 8px rgba(0, 0, 0, 0.25);*/
}

.status ul{
    width: 100%;
    display: -ms-grid;    display: grid;
    -ms-grid-columns: (1fr) [2];    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #E2E2E2;    border-bottom: 1px solid #E2E2E2;
}

.status li{
    padding: 2rem 6px;
    border-bottom: 1px dashed #E2E2E2;
}

.status li:nth-last-child(2),
.status li:nth-last-child(1){
    border-bottom: 0;
}

.status .text_n{
    font-weight: var(--font-sb);    font-size: var(--rem-20);    text-align: center;
    padding-top: var(--rem-30);
}

/* 참가신청 완료 */
.comp{
    margin-bottom: 3rem;
    padding: 15px 18px 0 18px;
    background-color: var(--brand-color-main);
    border-radius: 50px;
    color: var(--color-white);
}
.comp_btn{  
    margin: 4rem auto 0 auto;
    width: 150px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: var(--color-gray2); 
    border: solid #000 1px;   
}
.comp_btn a{
    display: block;
    width: 100%;
}


/* 모바일CSS */
@media screen and (max-width:480px) {
    
    .status{
        padding: 1rem 3rem;
    }

    .status ul{
        -ms-grid-columns: (1fr) [1];    grid-template-columns: repeat(1, 1fr);
    }

    .status li:nth-last-child(2){
        border-bottom: 1px dashed #E2E2E2;
    }

    .status .text_n{
        padding: var(--rem-20) 0;
    }
}

/* ==================================================
	마이페이지 - 참가신청 현황 레프트 메뉴 
================================================== */

.cont_inner_member2{
	padding: 3rem 0;
	width: 100%;	
    word-break: auto-phrase;
}

.myp_box{
    display: flex;
    justify-content: space-between;
}
.myp_left{
    margin-right: 4rem;
    width: 18%;
}
.myp_cont{
   width: 75%;
}
.mleft_cont li{    
   background-color: var(--color-gray1);
   border-bottom: solid 1px var(--color-gray2);
}
.mleft_cont li:nth-child(1){
    border-top: solid 3px #193A70;
}
.mleft_cont li a{
    margin: 0.3rem 0;
    padding: 1.5rem 1rem;
    display: block;
    width: 100%;
}

/* ==================================================
	개인정보처리방침
================================================== */
.util_box {
    margin-top:var(--rem-20);	padding: var(--rem-40) 10px 0;
	border-top: 1px solid #000;
/*	font-size: 1.7rem;*/
	line-height: 1.5;
}

.util_box ul,
.util_box ol {
	padding-left: var(--rem-13);
}

.terms_txt p {
	margin-bottom: 16px;
}

.util_box .list-tit {
	font-size: var(--rem-22);
	margin: 4rem 0 1rem;
}

.util_box .list-tit:first-child {
	margin: 0 0 10px;
}

h5.t_tit {
	margin: 15px 0 6px;
}

.list-etc li {
	margin-bottom: 10px;
}

.list-etc2>li {
	margin-bottom: 25px;
}

.list-etc.num li {
	position: relative;
	padding-left: 25px;
}

.list-etc.num li i {
	position: absolute;
	left: 0;
	top: 3px;
}

.list-etc.num li li {
	padding-left: 0;
}

.width_line_list li {
	padding-left: 12px !important;
}

p.t_txt + p.t_txt{
    margin-top: 10px;
}

/* 모바일CSS */
@media all and (max-width:640px) {
	.util_box {
		padding: 20px;
		font-size: 1.7rem;
	}
}

/* ==================================================
	마이페이지
================================================== */
.my_contBox{
    display: flex;
}
/* 레프트 메뉴 */
.my_Lmenu{
    margin-right: 5rem;
    width: 240px;
}
.my_Lmenu li{
    margin-bottom: 0.5rem;    
    border:solid 1px var(--color-gray2);
}
.my_Lmenu li:first-child{
    border-radius: 1.5rem 1.5rem 0 0;
}
.my_Lmenu li:last-child{
    border-radius: 0 0 1.5rem 1.5rem;
}
.my_Lmenu li a{
    display: block;
    padding: 2rem 0 2rem 2rem;
    width: 100%;
}
.my_Lmenu li:hover{
    background-color: var(--color-gray1);
}
.my_Lmenu li.on{
    display: flex;
    font-weight: var(--font-bd);
    color: var(--brand-color-main);
}
.my_Lmenu li.on a::after{
    content:"＞" ;
    padding-left: 11rem;
}
/* 모바일CSS */
@media all and (max-width:1450px) {
	.my_Lmenu{
        margin-right: 3rem;
    }
}
@media all and (max-width:1350px) {
	.my_Lmenu li.on a::after {
        padding-left: 8rem;
    }
}
@media all and (max-width:1024px) {
	.my_contBox {
        display: block;
    }
    .my_Lmenu{
        margin-right: 0;
        margin-bottom: 5rem;
        display: grid;
        grid-template-columns: repeat(3, 4fr);
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    .my_Lmenu li{
        margin-bottom: 0;
        width: 100%;
        word-break: keep-all;
        text-align: center;
    }
    .my_Lmenu li a{
        padding: 1.5rem 1rem;
        /* min-width: 100px; */
    }
    .my_Lmenu li.on a::after {
        padding-left: 1rem;
    }
    .my_Lmenu li:first-child, .my_Lmenu li:last-child{
        border-radius: 0;
    }
    /* .my_Lmenu li:not(:last-child){
        margin-right: 1rem;
    } */
}
@media all and (max-width:450px) {
	.my_Lmenu li.on a::after {
        content:none;
    }
}

.my_cont{
    width: 100%;
    max-width: 1110px;
}
.my_contTit{    
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    font-size: var(--rem-38);
    font-weight: var(--font-bd);
    border-bottom: solid 1px var(--color-black);
}


