@charset "UTF-8";
/* 타이틀 */
.titleArea:nth-of-type(1) { 
  margin-bottom: 85px; 
  position: relative; 
  /*border-top: 1px solid #cbcbcb;*/
  border-bottom: 1px solid #cbcbcb;
  
  #faqTitle {
    padding: 13px 0;
    box-sizing: border-box;
    .titleLi {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex: 1;
      height: 46px;
      font-weight: 300;
      border-right: 1px solid #cbcbcb;
    }
    .titleLi:last-child  {
      border: 0;
    }
    .titleLi::after {
      position: absolute;
      top: 0;
      right: 0;
      width: 1px;
      height: 46px;
      color: #c6c6c6;
    }
    .titleLi.active a {
      position: relative;
      display: inline-block;
      flex: 1;
      white-space: nowrap;
    }
    .titleLi.active a::after {
      position: absolute;
      left: 0;
      bottom: -26px;
      width: 100%;
      height: 8px;
      background-color: #16867d;
      content: '';
    }
  }
 
}
.titleArea:nth-of-type(2) { 
  
  #faqTitle{
    height: 86px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #cbcbcb;
    .titleLi2:nth-of-type(1) {
      width:170px;
    }
    .titleLi2:nth-of-type(2) {
      width:1270px;
    }
  }
}
#faqTitle{
  display: flex;
  align-items: center;
  width: 100%;

    .titleLi, .titleLi2 {
      text-align: center;
      font-size: 20px;
      font-weight: 300;
    }
}
.titleArea.agreement { margin-top: 57px; }

.titleArea h2 { font-size: 28px; font-weight: 600; letter-spacing: -.3px; }

.titleArea p.desc { font-size: 16px; text-align: left; font-weight: 400; line-height: 24px; margin-top: 20px; }

/* 이용약관 */

/* 개인정보취급방침 */
.clauseArea .privacy { 
  padding-top: 35px;
  padding-bottom: 65px;
  font-size: 20px;
  font-weight: 200;
  line-height: 34px;
}
.privacy + .privacy {
  padding-bottom: 0;
}
.clauseArea .privacy.top { padding: 0px 0 29px 0; margin-top: -5px; }

.clauseArea .privacy.none { border-bottom: none; margin-bottom: 0px; padding-bottom: 0; }

.clauseArea .privacy strong { font-weight: 600; }

.clauseArea .privacy strong a { font-weight: 600; vertical-align: baseline; }

.clauseArea ul.policy { margin-top: 5px; margin-bottom: -12px; }

.clauseArea ul.policy li { font-size: 16px; color: #666; letter-spacing: -0.3px; font-weight: 400; line-height: 24px; padding-left: 9px; position: relative; margin-left: 18px; }

.clauseArea ul.policy li:before { position: absolute; left: 1px; top: 11px; display: inline-block; content: ""; width: 4px; height: 1px; vertical-align: middle; background: #666; }

.clauseArea ul.policy li.noHyphen:before { display: none; }

.faq_list { margin-bottom: 150px; }

.faq_list .faq_item {    
  position: relative; 
  /* padding: 9.5px 0;  */
  border-bottom: 1px solid #e1e1e1; 
  -webkit-transition: .3s ease-out; 
  transition: .3s ease-out; 
  .kind{ 
    position: absolute; 
    top: 50%; 
    left: 0px; 
    transform: translateY(-50%);
    width:170px;    
    margin: 0 auto;    
    text-align: center; 
  }
}

.faq_list {
  .faq_item {
    span {
      line-height: 30px;
    }
    .faq_tit { 
      position: relative; 
      padding: 10px 50px 10px 85px;
      margin-left:170px; 
      display: flex;
      align-items: center;
      height: 87px;
      line-height: 30px;
      word-break: keep-all; 
      word-wrap: break-word; 
      box-sizing: border-box;
      font-weight: 200; 
      cursor: pointer; 
      background: url("/images_renew/icon_faq_arrow_open.png") no-repeat 98% 26px; 
      -webkit-transition: .3s ease-out; 
      transition: .3s ease-out; 
        
        .q_icon { 
          position: relative; 
          -webkit-transition: .3s ease-out; 
          transition: .3s ease-out; 
        }
        .q_icon::before {
            content: ""; 
            position: absolute;
            top: 50%;
            left: -70px;
            transform: translateY(-50%);
            width: 54px; 
            height: 53px; 
            background: url(/images_renew/icon_faq_question_gray.png) no-repeat center center / contain;
        }
      }
      .faq_txt { 
        height: 0; 
        padding: 0 60px; 
        overflow: hidden; 
        color: #000;
        background-color: #f8fbfb; 
        line-height: 30px; 
        font-size: 20px; 
        font-weight: 200; 
        word-break: keep-all; 
        word-wrap: break-word; 
        -webkit-transition: .3s ease-out; 
        transition: .3s ease-out; 
      }
      

  }
  .faq_item.active { 
    .kind {
      
    }
    .faq_tit { 
      background-image: url("/images_renew/icon_faq_arrow_close.png"); 
      cursor: auto; 
      .q_icon::before {
        background: url(/images_renew/icon_faq_question.png) no-repeat center center / contain;
      }
    }
    .faq_txt {
      position: relative;
      height: auto;
      padding: 25px 60px 25px 259px;
      border-top: 1px solid #cbcbcb;
      overflow: hidden; 
    }
    .faq_txt::before {
        content: ""; 
        position: absolute;
        top: 50%;
        left: 183px;
        transform: translateY(-50%);
        width: 54px; 
        height: 53px;
        background: url(/images_renew/icon_faq_answer.png) no-repeat center center / contain;
    }
  }
}


.faq_item.active .kind {z-index:999;top: 21%;}
.faq_list .faq_item .faq_txt span { border-bottom: 1px solid #333; vertical-align: top; }

/* .faq_list .faq_item.active .faq_tit .q_icon { 
  background-color: #3b8c94; 
} */

.menu_list { 
  margin: 0 0 50px 0; 
  width: 100%;
  display: -webkit-box; 
  display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }

.menu_list .menu_1dp { -webkit-box-flex: 0; -ms-flex: 0 200px; flex: 0 200px; }

.menu_list .menu_1dp .dp1_tit { 
  position: relative;
  font-size: 20px; 
  font-weight: 500; 
  color: #000; 
  background-color: #fff; 
  border: 1px solid #cfcfcf;
  height: 76px; 
  line-height: 76px; 
  text-align: center; 
}
.menu_list .menu_1dp .dp1_tit::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 8px solid #16867d;
  content: '';
}
.menu_list .menu_1dp .dp2_tit { 
  height: 60px; 
  line-height: 60px; 
  font-size: 18px;
  font-weight: 300; 
  text-align: center;
  border-bottom: 1px solid #cfcfcf; 
  a {
    font-weight: 300;
  }
}
.menu_list .menu_1dp .dp2_tit a:hover {
  color: #16867d;
} 
.menu_list .menu_1dp .sub_list { 
  padding:  8px 5px 13px 15px;
  /*background-color: #f8f8f8; */
  border-bottom: 1px solid #cfcfcf;
}
.sub_itme:nth-of-type(2) {
  margin-top: 10px;
}

.menu_list .menu_1dp .sub_itme { 
  font-weight: 400; 
  color: #000; 
  line-height: 34px;
  a {
    font-size: 18px;
  }
  .no_ext { 
    position: relative; 
    padding-left: 10px; 
    display: inline-block; 
  }
  .no_ext:before { 
    content: ''; 
    position: absolute; 
    left: 0; 
    top: 50%; 
    transform: translateY(-50%);
    width: 3px; 
    height: 3px; 
    border-radius: 10px; 
    background-color: #000; 
  }
  a.no_ext:hover { 
    text-decoration: underline; 
  }
}



.menu_list .menu_1dp .sub_itme .brand_list { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-top: 10px; }

.menu_list .menu_1dp .sub_itme .brand_list.cars { height: 300px; }

.menu_list .menu_1dp .sub_itme .brand_list.trucks .brand_item { width: auto; }

.menu_list .menu_1dp .sub_itme .brand_list .brand_item { width: 91px; font-size: 15px; padding: 5px 0; }

.menu_list .menu_1dp .sub_itme .brand_list .brand_item:hover { color: #000; text-decoration: underline; }

.err_page { text-align: center; margin: 100px 0; font-weight: 600; }

.err_page h1 { margin: 30px 0 45px; }

.err_page h5 { margin: 25px 0 80px; line-height: 1.4; font-weight: 500; }

.err_page .err_btns a { width: 200px; display: inline-block; height: 60px; line-height: 58px; margin: 0 5px; border: 1px solid #16867d; font-size: 20px; }

.err_page .err_btns a.main_btn { background: #16867d; color: #fff; }

.err_page .err_btns a:hover { color: #fff; background-color: #16867d; }

.privacy-agreement {
  padding-bottom: 110px;
}
/* 이용약관, 개인정보취급방침, 정보보안지침 */
.agreement-of-utilization, .privacy-agreement, .information-security-guidelines {
    .body_wrap {
        .clauseArea {
            > p.title {
                position: relative;
                padding-left: 24px;
                padding-bottom: 26px;
                width: 100%;
                font-size: 32px;
                font-weight: 600;
                border-bottom: 1px solid #cfcfcf;
            }
            > p.title::before {
                position: absolute;
                top: 3px;
                left: 0;
                display: inline-block;
                width: 12px;
                height: 30px;
                background-color: #16867d;
                content: '';
            }
            
            ul.agreement li, .on_the_box {
                font-size: 20px;
                line-height: 34px;
                font-weight: 200;
            }
            ul.agreement.box_line {
                padding: 40px;
                border: 1px solid #cfcfcf;
            }
        }
    }
    p.item {
      font-size: 20px;
      font-weight: 200;
      line-height: 34px;
    }
}
.agreement-of-utilization {
  ul.agreement {
    margin-top: 34px;
    margin-bottom: 70px;
  }
}

/* 
.setting-service{
  
    padding:0 2rem;
    font-size: 1.4rem;
    .terms-title{
      font-size: 2rem;
      font-style: normal;
      font-weight: 700;
      line-height: normal;
      padding-bottom: 1.5rem;
      margin-top: 2.4rem;
      margin-bottom: 1.5rem;
      border-bottom: 0.1rem solid $color-main-500;
      img{
        vertical-align: sub;
        margin-right: 0.8rem;
      }
    }
    
    .terms-content{
      padding-bottom: 5rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      a {
        word-break:break-all;
      }
      ul {
        li {
          list-style-type: disc;
        }
      }
      p {
        line-height: normal;
        word-break:break-all;
        &.sentence-title {
          margin-top: 0.8rem;
          line-height: normal;
        }
        strong {
          font-weight: 700;
          &.pt-8 {
            display: inline-block;
          }
        }
      }
      .indent {
        padding-left: 0.8rem;
        word-break:break-all;
        &:has(.number) {
          padding-top: 0.8rem;
          padding-left: 1.6rem;
        }
      }
      .indent-after {
        padding-top: 0.8rem;
      }
      .number {
        &::before {
          margin-left: -1.6rem;
          padding-right: 0.5rem;
          display: inline-block;
          content: '';
        }
        + .number {
          padding-top: 0.8rem;
        }
        &.item01::before {
          content: '1.';
        }
        &.item02::before {
          content: '2.';
        }
        &.item03::before {
          content: '3.';
        }
        &.item04::before {
          content: '4.';
        }
        &.item05::before {
          content: '5.';
        }
        &.item06::before {
          content: '6.';
        }
        &.item07::before {
          content: '7.';
        }
        &.item08::before {
          content: '8.';
        }
      }
    }
  
  
  } */
  
  .en .menu_list .menu_1dp .dp2_tit {height: auto;line-height: normal;padding: 10px;}
  .en .sub_itme:nth-of-type(2) {margin-top :0px;}
  .en .menu_list .menu_1dp .sub_itme .no_ext {line-height:normal;}
  .en .menu_list .menu_1dp .sub_itme:not(:last-child) {margin-bottom:10px;}
  .en .menu_list .menu_1dp .dp1_tit{line-height: 67px;}
  
  
  