.userbody {
	width:100%;
	padding-top:60px;
	padding-bottom:var(--bottom-height);
}

.userCont {
	width:var(--width-sub);
	margin:0 auto;
}

.userCont > h2 {
  display: flex;
  justify-content:center;
  font-size: 45px;
  font-weight: 800;
  margin-bottom:65px;
}

.userCont > h2 span {
  padding-bottom:10px;
  border-bottom:5px solid #000;
}

.terms {
  width: 100%;
  margin-bottom: 50px;
}

.termsTitle {
  display: flex;
  align-items:center;
  margin-bottom: 25px;
}

.termsTitle .Mosaic {
  display: grid;
  grid-template: repeat(2, 1fr)/ repeat(2, 1fr);
  grid-template-areas: "box01 box02" "box01 box03";
  gap: 1px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.termsTitle .Mosaic span:nth-child(1) {
  grid-area: box01;
  background-color: var(--navy);
}

.termsTitle .Mosaic span:nth-child(2) {
  grid-area: box02;
  background-color: var(--navy);
}

.termsTitle .Mosaic span:nth-child(3) {
  grid-area: box03;
  background-color: #4c4c4c;
}

.termsTitle span {
	font-size:20px;
	font-weight:700;
}

.termsTitle a {
    font-size: 15px;
    font-weight: 600;
    color:#fff;
    background-color:var(--navy);
	border:1px solid var(--navy);
    border-radius: 5px;
    padding: 5px 10px;
    margin-left: 30px;
    transition:all 0.5s;
}

.termsTitle a.active {
	color:#000;
	background-color:transparent;
	border: 1px solid #a1a1a1;
}

.termsCont {
  width: 100%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0);
  padding:0 20px;
  transition:all 1s;
}

.termsCont.active {
  height: 400px;
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding:20px;
  margin-bottom:20px;
}

.termsBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    border-left: 1px solid #cdcdcd;
    border-right: 1px solid #cdcdcd;
}

.termsBtn hr {
    width: 100%;
    height: 1px;
    background-color: #cdcdcd;
}

.termsBtn p {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    gap: 10px;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
}

.termsBtn p:nth-child(2) {
	min-width:95px;
}

.termsBtn p:nth-child(3) {
	min-width:150px;
}

.termsBtn p input {
    width: 15px;
    height: 15px;
    margin: 0;
}

.termsBtn p,
.termsBtn p input,
.termsBtn p label {
	cursor:pointer;
}

.bottomBtn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-top: 50px;
    border-top: 1px solid #cdcdcd;
}

.bottomBtn label {
    cursor: pointer;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    padding: 10px 20px;
}

.agreeBtn {
  display: block;
  margin: 0 auto;
  border: none;
  background-color: transparent;
}

.agreeBtn a {
  display: block;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 400;
  background-color: var(--navy);
  color: #fff;
  transition:all 0.5s;
}

.agreeBtn a:hover {
  background-color: var(--navy);
}

/* 개인정보 입력 */

.required {
	font-size:15px;
	font-weight:700;
	color:#f00;
	text-align:right;
    margin-bottom: 10px;
}

.table1 {
	width: 100%;
    border-top: 3px solid var(--navy);
    border-bottom: 1px solid #cdcdcd;
    margin-bottom:50px;
}

.table1 tbody tr {
	border-bottom: 1px solid #cdcdcd;
}

.table1 tbody tr th {
	width:240px;
	font-size:18px;
	font-weight:400;
	text-align:left;
	line-height:25px;
	border-right:1px solid #cdcdcd;
	padding-left:40px;
}

.table1 tbody tr th strong {
	color:var(--navy);
}

.table1 tbody tr td {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    padding: 15px 30px;
}

.table1 tbody tr td.FlexColumn {
	flex-direction:column;
	align-items:flex-start;
	gap:20px;
}

.table1 tbody tr td.M__flexrow {
	flex-direction:row;
    align-items: center;
}

.table1 tbody tr td input {
	height:40px;
	border:1px solid #cdcdcd;
	border-radius:5px;
	padding:0 10px;
	margin-right:5px;
}

.table1 tbody tr td .title01 {
	font-size:15px;
	font-weight:600;
	margin-bottom:5px;
}

.table1 tbody tr td .InputType01 {
	width:380px;
	min-width:380px;
}

.table1 tbody tr td .InputType02 {
	width:200px;
}

.table1 tbody tr td .InputType03 {
	width:200px;
	padding:0;
}

.table1 tbody tr td .ButtonType01 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
   	word-break: keep-all;
    color: #fff;
    background-color: var(--navy);
    border-radius: 5px;
    padding: 0 20px;
    margin-right:20px;
}

.table1 tbody tr td .hint01 {
	margin-right:20px;
	line-height:20px;
    text-align: justify;
}

.table1 tbody tr td .hint02  {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-align:justify;
}

.table1 tbody tr td .hint02 span{
    margin-bottom: 3px;
}

.table1 tbody tr td .hint02 .padding {
	padding-left:10px;
}

.table1 tbody tr td p.hint-etc{
    margin-top: 15px;
}

.table1 tbody tr td p.hint-etc span:first-child{
    font-weight: 600;
}

.table1 tbody tr td .error,
.table1 tbody tr td .idRowInfo {
    color: #00a582;
}

.table1 tbody tr td select {
	height:40px;
    font-size: 15px;
    font-weight: 400;
	border:1px solid #cdcdcd;
	border-radius:5px;
	padding:0 10px;
	margin-right:20px;
}

.table1 tbody tr td .Whelk {
	margin-right:5px;
}

.table1 tbody tr td .adr-search {
	display:flex;
	flex-direction:column;
}

.table1 tbody tr td .flex-box {
	display:flex;
	align-items:center;
	margin-bottom:20px;
}

.table1 tbody tr td .flex-box:last-child {
	margin-bottom:0;
}

.table1 tbody tr td label {
	font-size:15px;
	font-weight:600;
	margin-right:10px;
}

.table1 tbody tr td.td01 {
	flex-direction:column;
    align-items: flex-start;
}

.table1 tbody tr td .RadioBox {
	display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #cdcdcd;
    margin-top: 10px;
    border-radius: 5px;
}

.table1 tbody tr td .RadioBtn {
    display: flex;
    align-items: center;
    margin-right: 0;
}

.table1 tbody tr td .RadioBtn:first-child {
	margin-right:10px;
}

.table1 tbody tr td .RadioBtn input {
	width: 15px;
    height: 15px;
    margin: 0;
    margin-right: 10px;
}

.table1 tbody tr td .RadioBtn span {
	
}

.table-file {
    display: flex;
    align-items: center;
    min-width: 200px;
    height: 40px;
}

.table-file span {
    min-width: 60px;
    margin-right: 10px;
}

.table-file .filename {
    color: #838383;
}

.table-file label {
    display: flex;
    justify-content: center;
    align-items: center;
	width:100px;
	min-width:75px;
	height:100%;
    color: #fff;
    background-color: var(--navy);
    cursor: pointer;
    padding: 5px 10px;
    margin-right: 20px;
}

.table-file input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.UseProgram {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right:30px;
}

.signexp .exptext {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    color: var(--navy);
    margin-bottom: 20px;
}

.m-signature-pad--footer .button.clear {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.submitbutton {
   	display: flex;
   	justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.submitbutton button {
	display: flex;
   	justify-content: center;
    align-items: center;
	height:50px;
	font-size: 25px;
    font-weight: 500;
    padding:0 30px;
    color: #fff;
    background-color: var(--navy);
    border-radius: 5px;
}

.submitbutton a {
	display: flex;
   	justify-content: center;
    align-items: center;
	height:50px;
    font-size: 25px;
    font-weight: 500;
    padding:0 30px;
    margin-left:50px;
    color: #fff;
    background-color: var(--navy);
    border-radius: 5px;
}

.complete {
	width:100%;
	position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.complete > img {
	width:250px;
}

.complete .completeText {
	position: relative;
    border: 7px solid var(--navy);
    border-radius: 20px;
    padding: 100px;
    background: #fff;
}

.complete .completeText h3 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 35px;
}

.complete .completeText h3 span {
    font-size: 20px;
    color: var(--red);
}

.complete .completeText a {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--navy);
    color: #fff;
    border-radius: 1000px;
    margin: 0 auto;
    transition:all 0.5s;
}

.complete .completeText a:hover {
	background-color: #000;
}

/* 반응형 */
@media screen and (max-width: 1250px) {
	
	.userCont {
		width:var(--width-res);
	    margin: 0 auto;
	}
	
	.table1 tbody tr th {
	    width: 180px;
        padding-left: 10px;
        font-weight: 600;
	}

}

@media screen and (max-width: 1025px) {
	
	.table1 tbody tr td {
		flex-direction:column;
		align-items:flex-start;
		gap:10px;
	}
	
	.table1 tbody tr td .M__row {
	    display: flex;
    	justify-content: space-evenly;
    	align-items: center;
	}
	
	.table1 tbody tr td .Whelk {
		margin:0 5px;
	}
	
	.table1 tbody tr td .InputType01 {
		width:100%;
		min-width:100%;
	}
	
	.table1 tbody tr td .InputType02 {
		width:100%;
	}
	
	.table1 tbody tr td .ButtonType01 {
		margin-right:0;
	}
	
	.table1 tbody tr td .adr-search {
		width:100%;
	}
	
	.table1 tbody tr td .adr-search .flex-box {
	    width: 100%;
	}
	
	.table1 tbody tr td .adr-search .flex-box:last-child {
	    flex-direction: column;
        align-items: flex-start;
        gap: 10px;
	}
	
	.table1 tbody tr td .adr-search label {
		margin-top:10px;
		margin-right: 0;
        font-size: 17px;
	}
	
	.table1 tbody tr td .adr-search input {
		margin-right:0;
	}
		
	.table1 tbody tr td.TableEmailTd {
	    flex-direction: row;
    	align-items: center;
	}
	
	.table1 tbody tr td .SearchBtn {
	    margin-left: 20px;
	}
	
	.table1 tbody tr td .T__margin0 {
		margin:0;
	}
	
	.UseProgramBox {
		flex-direction: column;
		align-items: flex-start;
    	height: auto;
    	gap:20px;
	}
	
	.UseProgram {
		height:40px;
		margin:0;
	}
}

@media screen and (max-width: 769px) {
    .termsTitle{
        display: flex;
        align-items: center;
    }

    .termsTitle span{
        font-size: 25px;
    }
	
	.table1 tbody tr {
		display: flex;
    	flex-direction: column;
   	    border-bottom: 2px solid #cdcdcd;
	}
	
	.table1 tbody tr th {
	    width: 100%;
	    text-align: start;
        font-weight: 700;
	    padding: 10px 0;
        font-size: 19px;
	    border-right: none;
	    border-bottom: 1px solid #cdcdcd;
	}
	
	.table1 tbody tr th br {
		display:none;
	}
	
	.table1 tbody tr td {
		padding:10px;
        font-size: 17px;
	}
	
	.table1 tbody tr td > img {
		width:100%;
	}
	
	.table1 tbody tr td input {
		width:100%;
		margin-right:0;
        font-size: 18px;
	}
	
	.table1 tbody tr td select {
		width:100%;
        font-size: 18px;
		margin-right:0;
	}
	
	.table1 tbody tr td .ButtonType01 {
		width:100%;
	}
	
	.table1 tbody tr td .adr-search .flex-box {
	    flex-direction: column;
    	gap: 10px;
	}
	
	.table1 tbody tr td .RadioBox {
	    width: 100%;
    	justify-content: center;
	}
	
	.table1 tbody tr td .hint02 {
		gap:10px;
        font-size: 16px;
        letter-spacing: -0.5px;
        line-height: 22px;
        word-break: break-all;
	}
	
	.table1 tbody tr td .hint02 br {
		display:none;
	}
	
	.table1 tbody tr td .hint02 span {
		width:100%;
		word-break: break-all;
	}
	
	.signexp .m-signature-pad {
		width:100%;
	}
	
	.complete .completeText {
		width:100%;
	    border: 5px solid #069579;
    	border-radius: 30px;
    	padding: 40px;
	}
	
	.complete .completeText h3 {
		font-size:28px;
		font-weight:600;
	}

    .table1 tbody tr td .RadioBtn input {
        width: 20px;
        height: 20px;
    }

    .table1 tbody tr td .RadioBtn{
        font-size: 17px;
    }
    
    .table1 tbody tr td.TableEmailTd {
   	    flex-wrap: wrap;
    }
    
    .table1 tbody tr td.TableEmailTd .InputType02 {
   	    width: 40%;
    }
    
    .table1 tbody tr td.TableEmailTd .Whelk {
   	    width: 20%;
    	margin: 0px -10px;
    }
    
    .table1 tbody tr td .SearchBtn {
    	margin:0;
    }
    
    .table-file span {
    	margin:0;
    }
    
    .table1 tbody tr td input[type="checkbox"] {
    	width:50px;
    	height:50px;
    }
    
    .table1 tbody tr td .UseProgram input[type="checkbox"] {
    	width:30px;
    	height:30px;
    }
}

/* ---------- */

/**이용약관**/

.provision{
  width: 100%;
}

.text-box{
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.text-box h2{
  font-size: 22px;
}

.provision-box{
  width: 100%;
  margin: 30px 0;
  padding-bottom: 10px;
  margin-left: 30px;
  width: 98%;
}


.provision-box h3{
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  color: #00a582;
}

.provision-box ul{
  margin-top: 15px;
  margin-left: 20px;
}

.provision-box ul li{
  font-size: 15px;
  line-height: 24px;
  display: flex;
  margin: 8px 0;
}

.provision-box ul li strong{
  display: block;
  margin-right: 5px;
}

.provision-box ul .provision-li{
  margin-top: 5px;
}

.provision-box ul .provision-list{
  background: #efefef;
  border-radius: 20px;
  padding: 10px 20px;
  margin-left: 20px;
  width: 97%;
  margin-top: -5px;
  margin-bottom: 20px;
  border: 1px dashed #595959;
}

.provision-box ul .provision-list li{
  font-size: 14px;
  line-height: 18px;
}

.provision-box ul .provision-list li::before{
  content:"-";
  margin-right: 10px;
}

.provision-box ul .provision-list .list-1{
  margin-left: 30px;
  margin-bottom: 20px;
}

.provision-box ul .provision-list .list-1::before{
  display: none;
}

.provision-box ul .provision-list .list-2::before{
  content:"※";
  margin-right: 3px;
}

/* 반응형 */
@media screen and (max-width: 1350px) {}

@media screen and (max-width: 1025px) {}

@media screen and (max-width: 769px) {
  .provision-box{
      width: 100%;
      margin-left: 0;
  }
  
  .text-box h2{
      font-size: 20px;
  }

  .provision-box h3{
      font-size: 17px;
  }

  .provision-box ul{
      margin-left: 0;
  }

  .provision-box ul li{
      font-size: 16px;
      word-break: break-all;
 	  text-align: justify;
  }

  .provision-box ul .provision-list{
      margin-left: 0;
      width: 100%;
  }
}

/* ---------- */

/**개인정보 처리방침**/
.subnavi__first{display:none;}

.personalinfo{
    width: 100%;
}

.personalinfo-top{
    width: 100%;
    margin-bottom: 40px;
}

.title-box{
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    padding: 40px 20px;
    margin-bottom: 30px;
}

.title-box h2{
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 24px;
}

.title-box p{
    font-size: 14px;
    text-align: start;
    line-height: 28px;
}

.title-box p::before{
    content:"-";
    margin-right: 5px;
}

.link-box{
    width: 100%;
    margin: 20px 0;
}

.link-box ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.link-box ul li{
    line-height: 24px;
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 50px;
    margin: 5px 20px 5px 0;
    transition: 0.3s all;
}

.link-box ul li:hover{
    background: #595959;
    transition: 0.3s all;
}

.link-box ul li a{
    display: flex;
    align-items: center;
    width: 380px;
    height: 50px;
    padding: 10px 5px;
    transition: 0.3s all;
}

.link-box ul li .download a .white{
    display: none;
}

.link-box ul li a:hover {
    color: #fff;
    transition: 0.3s all;
}

.link-box ul li a:hover .color{
    display: none;
}

.link-box ul li a:hover .white{
    display: block;
}

.link-box ul li a .download{
    width: 35px;
    height: 35px;
    display: flex;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin-right: 10px;
    align-items: center;
}


.link-box ul li a img{
    height: 15px;
    margin-right: 10px;
    margin-left: 8px;
}

.personalinfo .etc{
    margin-top: 30px;
}

.Site-1{
    width: 100%;
    margin-top: 30px;
}

.site-box{
    width: 100%;
    margin-top: 30px;
}

.site-box h3{
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-box h3::before{
    width: 5px;
    height: 5px;
    background: #1662c2;
    content:"";
    display: block;
    border-radius: 50px;
    margin-right: 5px;
}

.site-box h3::after{
    width: 5px;
    height: 5px;
    background: #1662c2;
    content:"";
    border-radius: 50px;
    margin-left: 5px;
}

.site-box .site{
    background: #f7f7f7;
    border: 1px dashed #ccc;
    border-radius: 10px;
    padding: 20px 5px;
    justify-content: center;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.site-box .site li{
    margin: 5px 30px 5px 5px;
}

.site-box .site li::before{
    content:"ㆍ";
}

caption{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}

/**테이블**/
.table-box{
    width: 100%;
    overflow-x: auto;
}

.table-basic{
    width: 100%;
    border-top: 3px solid #1662c2;
    margin-bottom: 50px;
    width: 98%;
    margin-left: 20px;
    min-width: 715px;
}

.m1-head{
	margin-bottom: 0;
}

.m1-head thead .noedge-l{
    width: 30%;
}

.m3-head{
	margin-bottom: 0;
}

.m3-head thead .noedge-l{
    width: 20%;
}

.m3-head thead .noedge-r{
    width: 15%;
}

.m3-head thead .noedge-m{
    width: 20%;
}

.m3-head tbody td span{
    display: block;
    width: 100%;
    line-height: 24px;
}

.m4-head{
	margin-bottom: 0;
}

.m5-head thead th{
    width: 30%;
}

.table-basic thead th{
    background: #e1e1e1;
    padding: 15px 5px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #dadada;
}

.table-basic tbody td{
    padding: 15px 5px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #ccc;
    line-height: 20px;
}

.table-basic tbody td:first-child{
    background: #f5f5f5;
}
/****/

.personalinfo-box{
    margin-bottom: 50px;
}

.personalinfo-box h4{
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #f07300;
}

.personalinfo-box h5{
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    align-items: start;
    margin-bottom: 10px;
}


.personalinfo-box .infographic{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

.personalinfo-box .list2-title{
    margin-top: 20px;
}

.personalinfo-box .personalinfo-list{
    margin-bottom: 20px;
    margin-left: 20px;
}

.personalinfo-box .personalinfo-list li span{
    font-weight: 600;
    color: #00a582;
    font-size: 16px;
    display: block;
}

.personalinfo-box .personalinfo-list li{
    line-height: 22px;
    font-size: 15px;
    font-weight: 400;
}

.personalinfo-box .personalinfo-list li .mini-list{
    margin-top: 10px;
    line-height: 20px;
    background: #f7f7f7;
    border-radius: 10px;
    padding: 10px 10px 10px 20px;
    width: 98%;
    margin-left: 20px;
    margin-bottom: 15px;
}

.personalinfo-box .personalinfo-list .mini-list2 li span{
    color: #424242;
    line-height: 22px;
}


.personalinfo-box .personalinfo-list li .mini-list li span{
    font-size: 15px;
}

.personalinfo-box .personalinfo-list li .mini-list li{
    line-height: 20px;
    font-size: 14px;
}

.personalinfo-box .personalinfo-list li .mini-list .content-none::before{
    display: none;
}

.personalinfo-box .personalinfo-list li .mini-list li::before{
    content:"-";
    margin-right: 5px;
}

.personalinfo-box .personalinfo-list li .mini-list .content-bottom{
    margin-bottom: 10px;
}

.personalinfo-box .personalinfo-list .link-1{
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.personalinfo-box .personalinfo-list .link-1 a{
    border: 1px solid #ccc;
    border-radius: 50px;
    transition: 0.3s all;
    height: 50px;
    padding: 10px;
    box-shadow: 0px 2px 5px #dadada;
}

.personalinfo-box .personalinfo-list .link-1 a:hover{
    background: #595959;
    color: #fff;
}

.personalinfo-box .personalinfo-list .list-0::before{
    content: "-";
    margin-right: 5px;
}

.personalinfo-box .personalinfo-list .list-2{
    margin-left: 20px;
    line-height: 22px;
    text-align: justify;
}

.personalinfo-box .personalinfo-list .list-2::before{
    display:none;
}

.personalinfo-box .personalinfo-list2 li{
    line-height: 22px;
    margin-left: 20px;
}

.personalinfo-box .dang{
    line-height: 20px;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

.personalinfo-box .dang::before{
    content:"※";
    margin-right: 5px;
}

.personalinfo-box .personalinfo-minibox{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.personalinfo-box .personalinfo-minibox .list3-box{
    width: 20%;
    height: 380px;
    border: 1px solid #ccc;
    border-radius: 20px 0 20px 0;
}

.personalinfo-box .personalinfo-minibox .list3-box:nth-of-type(2){
    margin-right: 2%;
}

.personalinfo-box .personalinfo-minibox .list3-box h6{
    text-align: center;
    background: #595959;
    padding: 10px 0;
    color: #fff;
    border-radius: 20px 0px 0 0;
}

.personalinfo-box .personalinfo-minibox .list3-box .list4-box{
    display: flex;
    height: 100%;
    flex-direction: column;
    margin-top: -20px;
    justify-content: center;
    align-items: center;
}

.personalinfo-box .personalinfo-minibox .list3-box .list4-box p{
    margin: 20px 0;
    display: flex;
    font-weight: 500;
    align-items: center;
}

.personalinfo-box .personalinfo-minibox .list3-box .list4-box p span i{
    transform: rotate(90deg);
    color: #eb0028;
}

.personalinfo-box .personalinfo-minibox .list3-box .personalinfo-list4{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.personalinfo-box .personalinfo-minibox .list3-box .personalinfo-list4 li{
    color: #595959;
}

.personalinfo-box .personalinfo-minibox .list3-box .personalinfo-list4 .list3-pic{
    font-weight: 500;
    color: #1662c2;
    margin-bottom: 5px;
}

.personalinfo-box .personalinfo-minibox .list3-box .list5-box{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin-top: -20px;
    padding: 0 10px;
}

.personalinfo-box .personalinfo-minibox .list3-box .list5-box .personalinfo-list3{
    margin: 5px 0;
}

.personalinfo-box .personalinfo-minibox .list3-box .personalinfo-list3 li{
    padding-left: 10px;
    display: flex;
    line-height: 20px;
    color: #595959;
    margin-bottom: 5px;
}

.personalinfo-box .personalinfo-minibox .list3-box .personalinfo-list3 li::before{
    content:"-";
    margin-right: 5px;
    display: block;
}

.personalinfo-box .personalinfo-minibox .list3-box .personalinfo-list3 .list3-first{
    font-weight: 500;
    display: flex;
    align-items: start;
    margin-bottom: 2px;
    line-height: 30px;
    padding-left: 0;
}

.personalinfo-box .personalinfo-minibox .list3-box .personalinfo-list3 .list3-first::before{
    content: "";
    background: #eb0028;
    width: 4px;
    height: 4px;
    margin-right: 5px;
    border-radius: 20px;
    display: block;
    margin-top: 13px;
}

.personalinfo-box .personalinfo-minibox img{
    height: 20px;
    transform: rotate(270deg);
}

/* 회원 탈퇴 */
.MemberOut {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.MemberOut .MemberOutText {
	display:flex;
	flex-direction:column;
	align-items:center;
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
}

.MemberOut button,
.MemberOut a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 25px;
    font-weight: 500;
    border-radius: 5px;
	color:#fff;
	background-color:#f1372e;
	padding: 0 30px;
	transition:all 0.5s;
}

.MemberOut button:hover {
	background-color:#575858;
}

/* 반응형 */
@media screen and (max-width: 1350px) {}

@media screen and (max-width: 1060px) {
    .personalinfo-box .infographic {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .personalinfo-box .infographic img{
        margin: 0 auto;
    }

    .personalinfo-box .personalinfo-minibox {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        flex-direction: column;
    }

    .personalinfo-box .personalinfo-minibox .list3-box{
        height: auto;
        width: 100%;
    }

    .personalinfo-box .personalinfo-minibox .list3-box .list4-box {
        display: flex;
        height: 100%;
        flex-direction: row;
        margin-top: 0;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .personalinfo-box .personalinfo-minibox .list3-box .list4-box p {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
        width: 100%;
    }

    .personalinfo-box .personalinfo-minibox .list3-box .list4-box p span i{
        transform: rotate(0deg);
    }

    .personalinfo-box .personalinfo-minibox .list3-box .list5-box{
        padding: 30px 10px 30px 10px;
    }

    .personalinfo-box .personalinfo-minibox .list3-box .list5-box .personalinfo-list3{
        margin-left: 30%;
    }

    .personalinfo-box .personalinfo-minibox img{
        transform: rotate(360deg);
        height: 15px;
        margin: 20px;
    }
}

@media screen and (max-width: 769px) {
    .title-box h2{
        font-size: 18px;
    }

    .title-box p{
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 24px;
        word-break: break-all;
   		text-align: justify;
    }

    .link-box ul li{
        width: 100%;
    }

    .link-box ul li a{
        width: 100%;
    }

    .personalinfo-box h4{
        font-size: 20px;
    }

    .personalinfo-box h5{
        font-size: 16px;
    }

    .personalinfo-box .personalinfo-list li span{
        font-size: 15px;
    }

    .personalinfo-box .personalinfo-list{
        margin-left: 0;
    }

    .personalinfo-box .personalinfo-list li .mini-list{
        width: 100%;
        margin-left: 0;
    }

    .personalinfo-box .dang{
        margin-left: 0;
        font-size: 14px;
    }

    .personalinfo-box .personalinfo-minibox .list3-box .list5-box .personalinfo-list3{
        margin-left: 10%;
    }

    .personalinfo-box .infographic img{
        width: 84%;
        min-width: 450px;
    }
    
    .title-box{
	    padding: 20px 10px;
	}
	
	.MemberOut .MemberOutText {
    	font-size:15px;
   	    line-height: 20px;
    }
   
}

@media screen and (max-width: 450px) {
    .personalinfo-box .personalinfo-minibox .list3-box .list5-box .personalinfo-list3{
        margin-left: 2%;
    }
}

/* 우대이자 적금 신청 페이지 */
.appform {
    border-left: 1px solid #cdcdcd;
    border-right: 1px solid #cdcdcd;
}

.appform tbody tr th {
    background-color: #f5f5f5;
}


















