
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@font-face {
    font-family: 'yg-jalnan';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_four@1.2/JalnanOTF00.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0px solid silver;
}

img {
    max-width: 100%;
  width: auto;
}

html, body {
    /* width: 100%; */
    height: 100%;

    margin: 0 auto;
  width: 640px;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9rem;
  color: #999;
  line-height: 1rem;
  letter-spacing: 0.1px;

  margin: 0 auto;
  width: 640px;
}


h1, h2, h3, h4, h5, input, textarea, button, a {
    font-family: 'Noto Sans KR', sans-serif;
}

h1 {
  /* font-size: 4rem;
  line-height: 4rem; */
  text-transform: uppercase;
}

h2 {
  /* font-size: 2.4rem; */
  /* margin-bottom: 3rem; */
  text-transform: uppercase;
}

h3 {
  /* font-size: 1.4rem;
  line-height: 2rem; */
  /* margin-bottom: 1rem; */
}

h4, h5 {
  /* font-family: 'Playfair Display', serif; */
}

/* h4 {
  font-size: 1.1rem;
  line-height: 1.4rem;
}

h5 {
  font-size: 0.7rem;
  line-height: 2rem;
} */

a:link {
     /* color: #666;  */
    text-decoration: none;}
a:visited {
    /* color: #666; */
}

a:hover {
    /* color: #666; */
}

a:active {
    /* color: #666; */
}

ul,ol {
    list-style: none;
}

button {
  /* font-size: 0.7rem;
  text-transform: uppercase;
  padding: 10px 30px;
  border: 1px solid #ccc;
  background: white;
  transition: 0.3s; */
  cursor: pointer;
}

button:hover {
  /* background: crimson;
  color: white;
  cursor: pointer; */
}

input {
    background: #fff;
}

/* checkbox */

input[type="checkbox"] {
    display:none;
}

input[type="checkbox"] + label {
    display: flex;
    align-items: center;

    font-size: 23px;
    font-weight: 400;
    color: #666565;
}

input[type="checkbox"] + label span {
    display:inline-block;
    width:25px;
    height:25px;
    margin:-0px 5px 0 0;
    vertical-align:middle;
    background:url('/images/sub/sub_check_05.png') no-repeat;
    cursor:pointer;
}

input[type="checkbox"]:checked + label span {
    background:url('/images/sub/sub_check_06.png') no-repeat;
}

input[type="checkbox"]:checked + label span.check02 {
    background:url('/images/sub/sub_check_07.png') no-repeat;
}

input[type="checkbox"]:checked + label span.check03 {
    background:url('/images/sub/sub_check_08.png') no-repeat;
}



/* radio */

input[type="radio"] {
    display:none;
}

input[type="radio"] + label {
    display: flex;
    align-items: center;

    /* font-size: 23px; */
    font-size: 22px;
    font-weight: 400;
    color: #666;
}

input[type="radio"] + label span {
    display:inline-block;
    width:25px;
    height:25px;
    margin:-0px 5px 0 0;
    vertical-align:middle;
    background:url('/images/sub/sub_check_01.png') no-repeat;
    cursor:pointer;
}

input[type="radio"]:checked + label span {
    background:url('/images/sub/sub_check_02.png') no-repeat;
}

/* ---- */

/* -------- start -------- */

.main_body {
    width: 100%;
    height: 100%;
    position: relative;
}
.main_top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 16px 40px 0px;
}

.bell_btn {
  position: relative;
}

.bell_num {
  position: absolute;
  top: -2px;
  right: -6px;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 18px;
  height: 18px;
  background: #f47725;
  border-radius: 50%;

  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.bell_num_s {
    top: -8px;
    right: -6px;

    font-size: 11px;
    font-weight: 400;
}

.main_id {
    position: relative;
}

.main_pw {
    position: relative;
}

.main_id::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 19px;
    transform: translate(-0,-50%);

    width: 25px;
    height: 29px;
    background: url('/images/main/input_icon01.png') no-repeat;
    background-position: center;
    background-size: auto;
}

.main_pw::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 19px;
    transform: translate(-0,-50%);

    width: 25px;
    height: 30px;
    background: url('/images/main/input_icon02.png') no-repeat;
    background-position: center;
    background-size: auto;
}

.main_id::after, 
.main_pw::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 63px;
    transform: translate(-0,-50%);

    width: 1px;
    height: 100%;
    background: #eeccb7;
}

.main_id input,
.main_pw input {
    padding: 0 30px 0 75px;
    width: 100%;
    height: 80px;
    background: #fbe4d6;
    border-radius: 20px;

    font-size: 23px;
    font-weight: 500;
    color: #6c6967;
}

.main_id input::placeholder,
.main_pw input::placeholder {
    font-size: 23px;
    font-weight: 500;
    color: #6c6967;
}

.main_check {
    display: flex;
    align-items: center;
}

.main_check input[type="checkbox"] {
    display:none;
}

.main_check input[type="checkbox"] + label {
    display: flex;
    align-items: center;

    padding: 0 12px;

    font-size: 20px;
    font-weight: 400;
    color: #6c6967;
}

.main_check input[type="checkbox"] + label span {
    display:inline-block;
    width:25px;
    height:25px;
    margin:-0px 5px 0 0;
    vertical-align:middle;
    background:url('/images/main/main_check01.png') no-repeat;
    background-size: contain;
    cursor:pointer;
}

.main_check input[type="checkbox"]:checked + label span {
    background:url('/images/main/main_check02.png') no-repeat;
    background-size: contain;
}

.main_terms a {
    display: inline-block;

    padding: 0 28px;

    font-size: 25px;
    font-weight: 500;
    line-height: 1.7rem;
    color: #2e2e2e;

    position: relative;
}

.main_terms a:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(-0,-50%);

    width: 1px;
    height: 30px;
    background: #4b4948;
}

.main_f_text {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -0%);

    /* width: 640px;
    height: 50px;
    background: #fff; */

    font-size: 17px;
    font-weight: 400;
    line-height: 1.7rem;
    color: #2b2b2b;
    text-align: center;
}

.main_bg {
    width: 100%;
    text-align: right;
}

.main_bg img {
    width: 200px;
}

/* footer */

footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    z-index: 5;
    transform: translate(-50%,-0);

    display: flex;
    justify-content: center;
    align-items: center;

    width: 640px;
    height: 75px;
    background: #fff;
    border-top: 1px solid #bfbfbf;
}

.sub_f_text {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translate(-50%,-0%);
    width: 640px;
    height: 39px;
    background: #fff;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.7rem;
    color: #2b2b2b;
    text-align: center;
}

footer .ft_btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .ft_btn a {
    display: inline-block;
}
/* menu */
.menu_top {
    display: flex;
    justify-content: space-between;

    padding: 18px 45px;
    border-bottom: 1px solid #d9d9d9;
}

.menu_top ul li a {
    display: block;
    position: relative;
}

.menu_popup {
    display: none;
    
    position: fixed;
    top: 0px;
    left: 50%;
    z-index: 3;
    transform: translate(-50%,-0);

    /* padding-bottom: 75px; */
    width: 640px;
    height: calc( 100% - 75px );
    background: #fff;

    overflow: auto;
}

.signal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 99;

    padding: 20px 10px;
    width: 80%;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #aaa;
    text-align: center;
}

.signal h3 {
    margin-bottom: 10px;
    
    font-size: 25px;
    font-weight: 600;
    line-height: 2rem;
    color: #2b2b2b;
}

.signal p {
    margin-bottom: 10px;

    font-size: 22px;
    font-weight: 400;
    line-height: 1.8rem;
    color: #2b2b2b;
}

.signal button {
    padding: 5px 10px;
    background: #f47725;
    border-radius: 10px;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.5rem;
    color: #fff;
}

.menu_user {
    display: flex;
    align-items: center;

    position: relative;
}

.menu_btm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow_R {
    position: relative;
}

.arrow_R::before {
    content: '';
    position: absolute;
    top: 53%;
    right: -20px;
    transform: translate(-0,-50%);

    width: 15px;
    height: 17px;
    background: url('/images/sub/menu_con01.png') no-repeat;
    background-position: center;
    background-size: auto;
}

.menu_content ul li {
    /* padding: 30px 45px; */
    padding: 37px 45px;
    /* height: 80px; */
    height: 95px;
    font-size: 25px;
    font-weight: 600;
    color: #2b2b2b !important;

    border-bottom: 1px solid #d9d9d9;
}

.menu_content ul li.que {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.menu_content ul li.que img {
    margin-right: 40px;
}

/* .menu_content ul li.que::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 78px;
    transform: translate(-0,-50%);

    width: 16px;
    height: 16px;
    background: url('/images/sub/menu_con02.png') no-repeat;
    background-position: center;
    background-size: auto;
} */

.menu_content ul li:first-child {
    border-top: 1px solid #d9d9d9;
}

.menu_content ul li a {
    height: 100%;
    width: 100%;
    font-size: 25px;
    font-weight: 600;
    color: #2b2b2b !important;
}

.menu_content ul li.anw {
    padding: 0;
    height: auto;
    font-size: 22px;
    font-weight: 600;
    color: #2b2b2b !important;
}

.menu_content ul li.anw div {
    padding: 30px 45px;
    height: 80px;
    font-size: 22px;
    font-weight: 600;
    color: #2b2b2b !important;

    /* border-bottom: 1px solid #d9d9d9; */
}

.menu_content ul li.anw div:not(:last-child) {
    border-bottom: 1px solid #d9d9d9;
}

.menu_content ul li.anw a {
    font-size: 23px;
    font-weight: 400;
    color: #2b2b2b !important;
}


.anw {
display: none;
}

/*  */

.sub_top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub_top a {
    position: absolute;
    top: 50%;
    left: 45px;
    transform: translate(-0,-50%);
}

.sub_top h3 {
    font-size: 29px;
    font-weight: 600;
    line-height: 2.5rem;
    color: #fff;
}

/*  */
.g_topline {
    /* padding-top: 30px; */
    position: relative;
}

.g_topline::before {
    content: '';
    position: absolute;
    top: -30px;
    /* left: 50%; */
    left: 0%;
    /* transform: translate(-50%,-0%); */

    /* max-width: 640px;
    width: 100%; */
    width: 550px;
    height: 1px;
    background: #d9d9d9;
}

.terms_box {
    padding: 10px 15px;
    width: 100%;
    height: 100px;
    overflow: auto;

    border: 1px solid #727272;
    border-radius: 20px;

    font-size: 23px;
    font-weight: 400;
    line-height: 2rem;
    color: #666565;

    word-break: break-all;
}

/* sub_07 */

.main_link_top {
    padding: 30px 30px;
    background: #fbe4d6;
    border-radius: 20px;
}

.ml_myp {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 165px;
    height: 60px;
    background: #fff;
    border: 1px solid #f47725;
    border-radius: 20px;

    font-size: 24px;
    font-weight: 600;
    color: #f47725;
}

/* .main_link li a {
    margin-left: auto;
    margin-right: auto;
} */

.main_link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main_link li {
    margin-bottom: 20px;
    padding: 28px 28px;
    width: 265px;
    border: 2px solid #d9d9d9;
    border-radius: 20px;
}

/* .main_link li a {
    color: #fff;
} */

.linkbox_R {
    position: relative;
}

.linkbox_R::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 29px;
    transform: translate(-0,-50%);
    width: 17px;
    height: 26px;
    background: url('/images/sub/right_white_arrow.png') no-repeat;
    background-position: center;
    background-size: auto;
}

/* sub_08 */
.deed {
    width: 100%;
    height: 600px;
    background: #f1f1f1;
    border: 1px solid #727272;
    border-radius: 20px;

    position: relative;
}

.deed_btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%,-0%);
}

.deed_btn button.on {
    background: #f47725;
}

.deed_btn button {
    margin: 0 7px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #727272;
}

/* sub_09 */
.left_dot {
    position: relative;
    padding-left: 24px;
}

.left_dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(-0,-50%);

    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f47725;
}

/* sub_10 */
.service_box {
    padding: 30px 0;
    width: 100%;
    text-align: center;
    border-radius: 10px;
}

.service_time {
    position: relative;
    display: inline-block;
}

.service_time::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 98px;
    transform: translate(-0,-50%);

    width: 1px;
    height: 20px;
    background: #646464;
}

.counsel {
    display: flex;
    justify-content: center;
    align-items: center;
    
    margin: 0 auto;
    padding: 23px 0;
    width: 450px;

    border: 1px solid #727272;
    border-radius: 20px;
}

.counsel div {
    text-align: left;
    margin: 0 20px;
}

.agree_top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.agree_btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agree_con {
    height: 310px;
    overflow: auto;
}

.agree_li {
    border-top: 1px solid #aaa;
}

.agree_li h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px 18px 0;
    font-size: 19px;
    font-weight: 400;
    color: #2b2b2b;
    cursor: pointer;
}

.agree_li h4 img {
    transition: 0.3s;
}

.agree_li.on h4 img {
    transform: rotate( 180deg );
}

.agree_li p {
    display: none;
    font-size: 17px;
    font-weight: 400;
    color: #2b2b2b;
    line-height: 2rem;
}

.t_num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #fcd6bd;
    border-radius: 50%;
}

.t_num_wid {
    width: calc( 100% - 60px );
}

.bdr_box {
    border: 1px solid #707070;
    border-radius: 20px;
}

.g_shadow {
    box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.65);
}

.vou_arrow_left {
    position: absolute;
    top: 50%;
    left: -35px;
    transform: translate(-0,-50%);
    background: rgba(0,0,0,0);
}

.vou_arrow_right {
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translate(-0,-50%);
    background: rgba(0,0,0,0);
}


.sign {
    background: #fff;
    border: 2px solid #434343;
    border-radius: 20px;
}

/*  */

.table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.table_cur tr td {
    cursor: pointer;
}

.table tr th {
    height: 80px;
    background: #ededee;

    /* font-size: 18px; */
    font-size: 23px;
    font-weight: 400;
    line-height: 1.5rem;
    color: #666565;
}

.table tr:not(:last-child) th,
.table tr:not(:last-child) td {
    border-bottom: 1px solid #bababa;
}

.table tr td {
    height: 80px;

    /* font-size: 20px; */
    font-size: 23px;
    font-weight: 500;
    line-height: 1.5rem;
    color: #2b2b2b;
    text-align: center;
}

.table_left tr th {
    padding-left: 20px;
    text-align: left;
}

.table_left tr td {
    padding-left: 25px;
    text-align: left;
}

.table_bdT01 {
    border-top: 1px solid #bababa;
}

.table_bdB01 {
    border-bottom: 1px solid #bababa;
}

.table_bdT02 {
    border-top: 2px solid #7d7d7d;
}

.table_bdB02 {
    border-bottom: 2px solid #7d7d7d;
}

.table_right_bd tr th:not(:last-child) ,
.table_right_bd tr td:not(:last-child)  {
    border-right: 1px solid #bababa;
}

.table_hei60 tr th {
    height: 60px;
}

.table_hei60 tr td {
    height: 60px;
}

.verT{
    padding-top: 25px;
    vertical-align: top;
}

.gray_box {
    margin: 0 auto;
    padding: 20px 20px;
    width: 530px;
    height: 245px;
    border: 1px solid #e5e5e5;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5rem;
    color: #666565;
}
    
/* list_btn_wrap */

.list_btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    position: relative;
}

.list_btn_wrap a {
    margin: 0 6px;
}

.list_btn_wrap a img {
  max-width: inherit;
}

.list_btn_wrap ul {
    margin: 0 36px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
}

.list_btn_wrap ul li {
    margin: 0px 6px;
    box-sizing: border-box;
}

.list_btn_wrap ul li a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 29px;
    height: 29px;
    box-sizing: border-box;

    font-size: 20px;
    font-weight: 400;
    color: #2b2b2b;
}

.list_btn_wrap ul li.on a {
  /* font-weight: 600;
  color: #111; */
  
  
  background: #ededee;
  border-radius: 50%;
}

.list_btn_mT01 {
    margin-top: 40px;
}


.list_btn_wrap .write_btn {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(-0,-50%);

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
    width: 200px;
    height: 70px;
    background: #0f3f45;

    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.list_btn_wrap .write_btn img {
    margin-right: 6px;
}


.terms_pop {
    display: none;
    /* position: absolute; */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    /* padding: 20px 44px 70px; */
    padding: 20px 44px 20px;
    width: 640px;
    height: 70%;
    background: #fff;

    overflow: auto;
}

.terms_pop_con {
    padding: 0 20px 20px;
    /* height: 325px; */
    height: 100%;
    border: 1px solid #d9d9d9;

    position: relative;

    overflow: hidden;
}

.terms_pop_con02 {
    padding: 0 20px 20px;
    height: 485px;
    border: 1px solid #d9d9d9;

    position: relative;
}

.t_pop_top {
    position: relative;
    background: #fff;

    padding: 22px 0;
    width: 100%;
    text-align: center;
}

.t_pop_top h3 {
    font-size: 23px;
    font-weight: 500;
    color: #2b2b2b;
}

.t_pop_top button {
    position: absolute;
    top: 50%;
    right: 20px;

    transform: translate(-0,-50%);

    display: flex;
    width: 32px;
    height: 32px;
    background: none;
}

.t_pop_btm {
    /* height: 240px; */
    height: 90%;
    overflow: auto;

    padding-bottom: 70px;


}

.t_pop_btm02 {
    height: 515px;
}


.p_info_btn {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-left: 10px;
    width: 90px;
    height: 25px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 400;
    color: #797979;
}

.p_info_pop {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translate(-50%,-0);
    z-index: 1;

    display: none;
    /* width: 100%; */
    width: calc( 100% - 90px );
    height: 325px;
    background: #fff;
    border: 1px solid #d9d9d9;
}

.p_info_con {
    padding: 0 20px;
    height: 245px;
    overflow: auto;

    font-size: 19px;
    font-weight: 500;
    line-height: 2rem;
    color: #2b2b2b;
}

.sub14_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding-right: 57px;
    border-bottom: 2px solid #222;
}

.sub14_top h2 {
    padding-bottom: 13px;
}

.sub14_top img {
    margin-bottom: -2px;
}

.road_map {
    padding: 30px 0;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    box-shadow: 5px 5px 6px 4px rgba(0,0,0,0.1);
}

.receipt_state {
    border-top: 2px solid #7d7d7d;
    border-bottom: 2px solid #7d7d7d;
}

.receipt_state a {
    padding: 25px 25px;
}

.receipt_state a:not(:last-child) {
    border-bottom: 1px solid #7d7d7d;
}

.receipt_date {
    display: inline-block;
    padding: 13px;
    border: 1px solid #f47725;
    border-radius: 10px;
    font-size: 23px;
    font-weight: 500;
    color: #f47725;
}

.receipt_right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    height: 120px;
    background: #e46f23;
    border-radius: 15px;

    font-size: 23px;
    font-weight: 500;
    line-height: 1.8rem;
    color: #fff;
    text-align: center;

    word-break: keep-all;
}

.receipt_right02 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    width: 115px;
    background: #e46f23;
    border-radius: 15px;

    font-size: 23px;
    font-weight: 500;
    line-height: 1.8rem;
    color: #fff;
    text-align: center;

    word-break: keep-all;
}


.c_center01,
.c_center02,
.c_center03,
.c_center04,
.c_center05,
.c_center06 {
    position: relative;
}

.c_center01::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(-0,-50%);

    width: 31px;
    height: 33px;
    /* background: url('/images/sub/c_center01.png') no-repeat; */
    background: url('/images/sub/sk_menu_icon_004.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.c_center02::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(-0,-50%);

    width: 31px;
    height: 28px;
    /* background: url('/images/sub/c_center02.png') no-repeat; */
    background: url('/images/sub/sk_menu_icon_005.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.c_center03::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(-0,-50%);

    width: 22px;
    height: 25px;
    /* background: url('/images/sub/c_center03.png') no-repeat; */
    background: url('/images/sub/sk_menu_icon_006.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.c_center04::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(-0,-50%);

    width: 27px;
    height: 27px;
    /* background: url('/images/sub/c_center04.png') no-repeat; */
    background: url('/images/sub/c_center04_a.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.c_center05::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(-0,-50%);

    width: 24px;
    height: 28px;
    /* background: url('/images/sub/c_center05.png') no-repeat; */
    background: url('/images/sub/c_center05_a.png') no-repeat;
    background-size: contain;
    background-position: center;
}

.c_center06::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(-0,-50%);

    width: 26px;
    height: 26px;
    /* background: url('/images/sub/c_center06.png') no-repeat; */
    background: url('/images/sub/c_center06_a.png') no-repeat;
    background-size: contain;
    background-position: center;
}

/* 자주쓰는 클래스 */
.input {
    padding: 0 20px;
    width: 100%;
    height: 80px;

    border: 1px solid #727272;
    border-radius: 20px;

    font-size: 29px;
    font-weight: 400;
    line-height: 2rem;
    color: #666565;
}

.input_sw {
    width: calc( 100% - 130px );
}

.input_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 60px;
    border-radius: 20px;

    font-size: 24px;
    font-weight: 600;
}

.button_L {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 80px;
    border-radius: 20px;

    font-size: 30px;
    font-weight: 600;
}

.btn_orange {
    color: #fff;
    background: #f47725;
}

.btn_shadow {
    color: #222;
    background: #fff;
    box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.15);
}

.btn_ora_bor {
    color: #f47725;
    background: #fff;
    border: 2px solid #f47725;
}

.btn_white {
    color: #f47725;
    background: #fff;
}

.btn_gray {
    color: #fff;
    background: #727272;
}

.btn_red {
    color: #fff;
    background: #ea002c;
}

.btn_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.default_f {
    font-size: 25px;
    font-weight: 500;
    line-height: 2.5rem;
    color: #2b2b2b;
}

.default_f_s {
    font-size: 23px;
    font-weight: 400;
    line-height: 2rem;
    color: #2b2b2b;
}

.default_f_l {
    font-size: 29px;
    font-weight: 600;
    line-height: 2rem;
    color: #2b2b2b;
}

.bdr_btm {
    border-bottom: 1px solid #2b2b2b;
    line-height: 2rem;
}

.block {display: block;}
.flex {display: flex;}

.flex_ac {
    display: flex;
    align-items: center;
}

.flex_js {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.flex_js_end {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.relative{position: relative;}

.bB0{border-bottom: 0;}
.bR0{border-right: 0;}

.bdr5 {border-radius: 5px;}
.bdr10 {border-radius: 10px;}
.bdr15 {border-radius: 15px;}
.bdr20 {border-radius: 20px;}
.bdr30 {border-radius: 30px;}
.bdr50 {border-radius: 50px;}
.bdr50p {border-radius: 50%;}

.colFFF{color: #ffffff;}
.col2b{color: #2b2b2b !important;}
.col3363{color: #3363bd;}
.colf13{color: #f13b59;}
.colea00{color: #ea002c !important;}
.colf477{color: #f47725;}

.col3e{color: #3e3e3e;}
.col222{color: #222;}
.col333{color: #333333;}
.col444{color: #444444;}
.col555{color: #555555;}
.col666{color: #666666;}
.col999{color: #999999;}

.bgcol72 {background: #727272;}
.bgcol3363 {background: #3363bd;}
.bgcolf477 {background: #f47725;}
.bgcolFFF {background: #ffffff;}
.bgcolf9f9 {background: #f9f9f9;}
.bgcolc1d0 {background: #c1d0eb;}
.bgcold6e0 {background: #d6e0f2;}
.bgcolfde4 {background: #fde4d3;}
.bgcolffe9 {background: #ffe900;}
.bgcolea00 {background: #ea002c;}

.wid80 {width: 80px;}
.wid85 {width: 85px;}
.wid95 {width: 95px;}
.wid100 {width: 100px;}
.wid113 {width: 113px;}
.wid120 {width: 120px;}
.wid130 {width: 130px;}
.wid140 {width: 140px;}
.wid165 {width: 165px;}
.wid200 {width: 200px;}
.wid250 {width: 250px;}
.wid265 {width: 265px;}
.wid300 {width: 300px;}
.wid330 {width: 330px;}
.wid350 {width: 350px;}
.wid360 {width: 360px;}
.wid400 {width: 400px;}
.wid420 {width: 420px;}
.wid450 {width: 450px;}
.wid460 {width: 460px;}
.wid500 {width: 500px;}
.wid515 {width: 515px;}
.wid530 {width: 530px;}
.wid600 {width: 600px;}

.wid100p {width: 100%;}

.heig30 {height: 30px;}
.heig40 {height: 40px;}
.heig50 {height: 50px;}
.heig60 {height: 60px;}
.heig65 {height: 65px;}
.heig70 {height: 70px;}
.heig80 {height: 80px;}
.heig110 {height: 110px;}
.heig185 {height: 185px;}
.heig240 {height: 240px;}
.heig350 {height: 350px;}
.heig570 {height: 570px;}

.heig100p {height: 100%;}

.mar0 {margin: 0;}

.mAuto {margin: 0 auto;}

.mL5{margin-left: 5px;}
.mL10{margin-left: 10px;}
.mL15{margin-left: 15px;}
.mL25{margin-left: 25px;}
.mL30{margin-left: 30px;}

.mR5{margin-right: 5px;}
.mR10{margin-right: 10px;}
.mR15{margin-right: 15px;}
.mR20{margin-right: 20px;}
.mR25{margin-right: 25px;}
.mR30{margin-right: 30px;}
.mR35{margin-right: 35px;}
.mR40{margin-right: 40px;}
.mR50{margin-right: 50px;}

.mT5{margin-top: 5px;}
.mT7{margin-top: 7px;}
.mT10{margin-top: 10px;}
.mT15{margin-top: 15px;}
.mT20{margin-top: 20px;}
.mT25{margin-top: 25px;}
.mT30{margin-top: 30px;}
.mT40{margin-top: 40px;}
.mT45{margin-top: 45px;}
.mT50{margin-top: 50px;}
.mT55{margin-top: 55px;}
.mT60{margin-top: 60px;}
.mT70{margin-top: 70px;}
.mT80{margin-top: 80px;}
.mT90{margin-top: 90px;}
.mT100{margin-top: 100px;}
.mT140{margin-top: 140px;}
.mT170{margin-top: 170px;}

.mB10 {margin-bottom: 10px;}
.mB15 {margin-bottom: 15px;}
.mB20 {margin-bottom: 20px;}
.mB25 {margin-bottom: 25px;}
.mB30 {margin-bottom: 30px;}
.mB50 {margin-bottom: 50px;}
.mB55 {margin-bottom: 55px;}
.mB65 {margin-bottom: 65px;}
.mB80 {margin-bottom: 80px;}
.mB90 {margin-bottom: 90px;}
.mB160 {margin-bottom: 160px;}


.pLR15 {padding-left: 15px; padding-right: 15px;}
.pLR45 {padding-left: 45px; padding-right: 45px;}
.pLR80 {padding-left: 80px; padding-right: 80px;}

.pT4 {padding-top: 4px;}
.pT5 {padding-top: 5px;}
.pT20 {padding-top: 20px;}
.pT25 {padding-top: 25px;}
.pT30 {padding-top: 30px;}
.pT40 {padding-top: 40px;}
.pT45 {padding-top: 45px;}
.pT50 {padding-top: 50px;}
.pT55 {padding-top: 55px;}
.pT60 {padding-top: 60px;}
.pT80 {padding-top: 80px;}
.pT90 {padding-top: 90px;}
.pT250 {padding-top: 250px;}
.pT300 {padding-top: 300px;}
.pT330 {padding-top: 330px;}
.pT400 {padding-top: 400px;}
.pT470 {padding-top: 470px;}

.pB4 {padding-bottom: 4px;}
.pB5 {padding-bottom: 5px;}
.pB20 {padding-bottom: 20px;}
.pB25 {padding-bottom: 25px;}
.pB30 {padding-bottom: 30px;}
.pB40 {padding-bottom: 40px;}
.pB50 {padding-bottom: 50px;}
.pB55 {padding-bottom: 55px;}
.pB60 {padding-bottom: 60px;}
.pB80 {padding-bottom: 80px;}
.pB90 {padding-bottom: 90px;}
.pB160 {padding-bottom: 160px;}
.pB250 {padding-bottom: 250px;}
.pB400 {padding-bottom: 400px;}

.pB100p {padding-bottom: 100%;}

.pL10 {padding-left: 10px;}
.pL15 {padding-left: 15px;}
.pL30 {padding-left: 30px;}

.pR10 {padding-right: 10px;}
.pR70 {padding-right: 70px;}

.tac{text-align: center;}
.taL{text-align: left;}
.taR{text-align: right;}


.fs14{font-size: 14px;}
.fs15{font-size: 15px;}
.fs16{font-size: 16px;}
.fs17{font-size: 17px;}
.fs18{font-size: 18px;}
.fs19{font-size: 19px;}
.fs20{font-size: 20px;}
.fs22{font-size: 22px;}
.fs23{font-size: 23px;}
.fs24{font-size: 24px;}
.fs25{font-size: 25px;}
.fs26{font-size: 26px;}
.fs27{font-size: 27px;}
.fs29{font-size: 29px;}
.fs31{font-size: 31px;}
.fs38{font-size: 38px;}

.fw600{font-weight: 600;}
.fw500{font-weight: 500;}
.fw400{font-weight: 400;}
.fw300{font-weight: 300;}


.line_H1 {line-height: 1rem;}
.line_H1h {line-height: 1.5rem;}
.line_H2 {line-height: 2rem;}
.line_H2h {line-height: 2.5rem;}
.line_H3 {line-height: 3rem;}
.line_H3h {line-height: 3.5rem;}
.line_H4 {line-height: 4rem;}
.line_H4h {line-height: 4.5rem;}

.ponter{cursor: pointer;}
.hidden{display: none;}
input[disabled], input[readonly] {  cursor: not-allowed;  background-color: #eee;  opacity: 1; }
.notifyjs-bootstrap-base span{font-size: 25px;}


.title_box {
    display: inline-block;
    padding: 8px 15px;
    background: #f47725;
    border-radius: 10px;
}

.ellipsis {
    overflow:hidden; 
    text-overflow:ellipsis;
     white-space:nowrap;
}
/*  */
