@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSansKR';
    src: url('../fonts/NotoSansKR-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
/* @font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
} */

* {
	padding:0;
	margin:0;
	box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
ul,li,dl,dt,dd,ol{
	list-style:none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-family: inherit;
}
body {
    font-family: 'NotoSansKR', sans-serif;
    /* font-family: "Inter", sans-serif; */
    font-weight: 500;
    font-size: 16px;
    color: #252525;
    letter-spacing: -0.05em;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
input,textarea{outline:0;border:0;box-shadow: none !important;}
button {outline:0;border:0;cursor:pointer;background-color: #FBFBFB;
    border: 1px solid #C7C7C7;
    border-radius: 5px;}
input,input[type="submit"]{
   appearance: none;
   border-radius: 0;
   -webkit-appearance: none;
   -webkit-border-radius: 0;
}
input[type="radio"],
input[type="checkbox"]{
	appearance: auto;
	-webkit-appearance: auto;
}
a:focus,
input:focus,
textarea:focus,
select:focus,
button:focus{ outline: none; box-shadow: none;}
button,label{ cursor:pointer}
b{font-weight:700;}/*보통600*/
table {
    border-collapse: collapse;
}

select {
appearance: none;         /* 크롬, 사파리 등 */
-moz-appearance: none;    /* 파이어폭스 */
-webkit-appearance: none; /* 오래된 웹킷 브라우저 */
background-size: 14px;
background-image: url(../main_img/angle_down.svg);
background-repeat: no-repeat;
background-position: right center;
background-position: right 10px center;
}
#wrapper, #container_wr {
    width: 100%;
}
#hd, #wrapper, #ft {
    min-width: unset;
}
/* #ft {
    display: none !important;
} */
#container {
  all: unset;
  display: block;
}
#con_provision .header_wrap,
#con_provision #footer_wrap {
    display: none;
}

:root {
    --main-color:#FFDB47;
    --main-brown:#47292B;
    --main-blue:#0273FF;
    --bg-gray:#F3F3F3;
    --border-gray:#E0E0E0;
    --border-color:#D9D9D9;
    --txt-gray:#6B6B6B;
    --border: 1px solid #e0e0e0;
    --box-shadow: 0 0 8px rgba(37,37,37,0.3);
    --regular: 400;
    --semibold: 600;
    --bold: 700;
}
.main_color {
    color: var(--main-color);
}
.sub_color {
    color:var(--sub-color);
}
.mb, .mb_br {display: none;}

.inner_wrap {
    max-width: 1200px;
    margin: 0 auto;
}

/***********************************/
.header_wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  background: #fff;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(71, 41, 43, 0.1);
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.header .logo {}
.header .gnb {
    display: flex;
    align-items: center;
    gap: 5px;
}
.header .gnb li {}
.header .gnb li a {
    padding: 0 5px;
    position: relative; 
    transition: color 0.3s ease-out;
}
.header .gnb li .hd_down_btn {
    padding: 10px;
    border-radius: 5px;
    color: var(--main-brown);
    background-color: var(--main-color);
}


.header .gnb li:not(:last-child) a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0; 
    height: 2px;
    background-color: var(--main-brown);
    transform: translateX(-50%); 
    transition: width 0.3s ease-out;
}
/* .header .gnb li:not(:last-child) a:hover {
    color: var(--main-brown); 
} */

.header .gnb li:not(:last-child) a:hover::after {
    width: 100%; 
}



#container_wr {
    padding-top: 72px;
}

.home-wrapper > section {
    padding: 100px 0;
}
.home-wrapper .banner {
    padding: 0;
}
.sub-wrapper {
    padding: 80px 0;
}
/******/
.title-main {
    text-align: center;
    margin-bottom: 40px;
}
.title-main h2 {
    font-size: clamp(1.5rem, calc(1.4rem + 1.5vw), 2.5rem);
    font-weight: var(--bold);
}
.title-main h5 {
    font-size: clamp(1.25rem, calc(1.4rem + 1.5vw), 1rem);
    font-weight: var(--regular);
    padding-top: 10px;
}

/**탭 부분**/
.tab-list {
    display: flex;
    justify-content: center;
    border-radius: 10px;
    background-color: #fff;
    width: max-content;
    margin: 0 auto;
    /* overflow: hidden; */
    padding: 5px 10px;
}
.tab-list li {
    text-align: center;
    border-radius: 10px;
    line-height: 1;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}
.tab-list li.active {
    box-shadow: var(--box-shadow);
}

.tab-contents .tab-con-view {
    display: none;
}
.tab-contents .tab-con-view.active {
    display: block;
}


/**결제**/
.license-buy .tab-list li:first-child {
    position: relative;
}
.license-buy .tab-list li .add_sale {
    position: absolute;
    top: -50%;
    right: 0;
    background-color: #fff;
    border: 1px solid var(--main-blue);
    color: var(--main-blue);
    border-radius: 3px;
    font-size: 13px;
    animation: blink 1.2s step-end infinite;
    padding: 5px;
    z-index: 1;
    margin-top: -15px;
}
.license-buy .tab-list li .add_sale::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border: 1px solid var(--main-blue);
    width: 12px;
    height: 12px;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fff;
    border-left: 0;
    border-top: 0;
    z-index: -1;
}
.license_con input[type="checkbox"] {
    display: none;/*지울예정*/
}
@keyframes blink {
    0% {
        opacity: 1;
    }
   50% {
        opacity: 0;
    }
}
.license_con_wrap {
    display: flex;
    gap: 24px;
}
.license_con {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--box-shadow);
}
.license_con .name_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.license_con .name_wrap p {
    font-size: 26px;
    font-weight: var(--bold);
}
.license_con .name_wrap span {
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 5px;
    /* background-color: #EDEDED; */
    background-color: var(--main-blue);
    color: #fff;
}
.license_con .price-wrap {}
.license_con .price-wrap .original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #848484;
}
.license_con .price-wrap .sale-price {}
.license_con .price-wrap .sale-price span {
    font-size: 28px;
    color: var(--main-blue);
    font-weight: var(--semibold);
}
.license_con .price-wrap .sale-price .price {
    color: inherit;
    padding-left: 12px;
}
.license_con .payment_mode_wrap {
    border: var(--border);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 16px;
}
.payment_mode_wrap label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* 기본 라디오 숨기기 */
.payment_mode_wrap input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: var(--border);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
/* 선택 전 상태 */
.payment_mode_wrap input[type="radio"]:not(:checked) {
  background-color: #fff;
}
/* 선택 시 스타일 */
.payment_mode_wrap input[type="radio"]:checked {
  border-color: var(--main-blue);
}
/* 선택 전 상태 */
.payment_mode_wrap input[type="radio"]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  background-color: var(--border-gray);
  border-radius: 50%;
  transition: all 0.2s;
}
/*선택된 상태 */
.payment_mode_wrap input[type="radio"]:checked::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  background-color: var(--main-blue);
}

.payment_mode_wrap input[type="radio"]:checked + span,
.payment_mode_wrap input[type="radio"]:checked ~ span {
  color: var(--main-blue);
  font-weight: var(--semibold);
}
.license_con .buy_btn {
    display: block;
    width: 100%;
    margin: 16px 0 20px;
    padding: 12px 0;
    color: var(--main-blue);
    border: 1px solid var(--main-blue);
    font-size: 14px;
    font-weight: var(--bold);
}
.function-list {
    background-color: #f5f5f5;
    padding: 16px 10px;
    border-radius: 5px;
}
.function-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.function-list li:last-child {
    margin-bottom: 0;
}


/**따라다니는 고객센터**/
.cs-center {
    padding: 80px 0;
}
.cs-center .board-btm {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.cs-center .notice_wrap {
    flex: 1;
    overflow: hidden;
}
.cs-center .cs_wrap {
    flex: 1;
    display: flex;
    gap: 24px;
}
.cs-con {flex: 1;}
.cs-con .cs_name {
    font-size: 20px;
    font-weight: var(--semibold);
    padding-bottom: 10px;
}
.cs-con a {
    display: block;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}
.cs-con a .imgbox {}
.cs-con a .txt-wrap {}
.cs-con a .txt-wrap span {color: var(--main-blue);}


/***footer***/
.footer {
    padding: 30px 0;
    background-color: var(--bg-gray);
    /* border-top: 2px solid var(--main-color); */
}
.ft_wrap {
    display: flex;
    justify-content: space-between;
}
.ft_wrap ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 50%;
    column-gap: 8px;
    row-gap: 5px;
}
.ft_wrap ul li {
    font-size: 14px;
    font-weight: var(--regular);
    color: var(--txt-gray);
}
.ft_wrap ul li:last-child {
    margin-top: 15px;
}
.ft_wrap ul .full {
    flex: 0 0 100%;
}
.ft_wrap .ft_logo {
    display: block;
}
