@charset "UTF-8";


@font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
  }
  @font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
  }
  @font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
  }
  @font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff") format("woff");
    font-weight: 500;
    font-style: normal;
  }
  @font-face {
    font-family: "Pretendard";
    src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
  }

:root {
    /* var 메인 컨텐츠 너비 */
    --width-content:1200px;
    --font-family : "Malgun Gothic", '맑은 고딕', dotum, gulim, sans-serif;
    --font-color-base : #171717;
    --font-color-black:#000;
    --font-size-base:1.2rem;
    --font-size-large:1.4rem;
    --main-margin : 0 auto;

}


@media (max-width: 1199px) {
    :root {
        /* var 메인 컨텐츠 너비 */
        --width-content:96%;
        --main-margin : 0 2%;
    }
  }

html{
    /* 브라우저가 지정해주는 기본 폰트 사이즈는 100%=16px
    이걸 계산하기 쉽게 62.5%=10px로 변경해주는것이다.
    따라서 위 설정을 통해 1rem=10px 이 된다. (16px *62.5%=10px   // 62.5%=0.625) */
        font-size:62.5%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    html{
        /* 태블릿, 아이패드 */
            font-size:56%;
        }
}
@media screen and (max-width: 767px) {
    html{
        /* 저해상도 태블릿, 모바일(가로) */
        font-size:53%;
        }
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: middle;
    box-sizing: border-box;
    word-break: keep-all;
}
body{
    font-family: var(--font-family);
    color:var(--font-color-base);
    -webkit-text-size-adjust: none;
    font-size:var(--font-size-base);
    font-weight: 400;
}

iframe{
    line-height: 0;
    font-size: 0;
}
ol, ul {
	list-style: none;
    padding:0;
    margin:0;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
    width:100%;
}
input, select, textarea{
	vertical-align:middle;
	font-size:initial;
    box-sizing:border-box;
    font-size:var(--font-size-base);
}
a{
	color:inherit;
	margin:0;
	padding:0;
	text-decoration: none;
    cursor: pointer;
}
button {
    cursor: pointer;
}
table caption {	
    display:none;
}
label{
    display: inline-block;
    cursor:pointer;
    font-weight: 400;
}
hr,caption{
    display:none
}
legend{
    overflow:hidden;
    position:absolute;
    height:0;
    font-size:0;
    line-height:0;
    text-indent:-20000px
}
.text-right{
    text-align:right;
}


input[type=text],
input[type=password]{
    height:27px;
    border:solid 1px #d0d0d0;
    line-height:27px;
    color: #6f6f6f;
}
input[type=radio],
input[type=checkbox]{
    width: 13px;
    height:13px;
    margin: 0;
}
input + label{
    margin-left: 0.5rem;
    margin-right:1rem;
    white-space: pre-wrap;
}
label{
    display: inline;
}
input[type=file]{
    font-size: 12px;
}
textarea{
    padding:5px;
    border:solid 1px #d0d0d0;
    min-height: 10rem;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
	padding: 0;
	background:transparent;
	border:none;
    color: var(--font-color-base);
}
select{
    border:solid 1px #d0d0d0;
    line-height:18px;
    font-family: var(--font-family);
    color:var(--font-color-base);
    font-size:var(--font-size-base);
}
select.no{
    border:0;
}


::placeholder {
    color: #6f6f6f;
    opacity: 1; /* Firefox */
}
::-ms-input-placeholder { /* Edge 12 -18 */
color: #6f6f6f;
}

/* btn */
.btn{
    display: inline-block;
    font-size: var(--font-size-base);
    text-align: center;
}
.btn-login-small{
    background: #815f48;
    border:1px solid #674b3a;
    color: #fff;
    font-size: 11px;
    width: 51px;
    height: 20px;
    border-radius:2px;
}
.btn-purchase{
    background: #D70017;
    background: linear-gradient(59deg,rgba(215, 0, 23, 1) 0%, rgba(255, 37, 58, 1) 100%);
    color: #fff;
    border:1px solid #b9001c;
    border-radius: 2px;
    width: 38px;
    height: 2rem;
    font-size: 1.2rem;
    line-height: 2rem;
}
.btn-brown{
    background: #ad8233;
    color: #fff;
}
.btn-red{
    background: #c01b20;
    color: #fff;
}
.btn-blue{
    background: #689aca;
    color: #fff;
}
.btn-gray{
    background: #efefef;
    color: #0b0b0b;
    border: 1px solid #dddddd;
}
.btn-gray:hover{
    background: #d3d3d3
}

.btn-black{
    background: #000;
    color: #fff;
}
.btn-black-outline{
    border:1px solid #000;
    color: #000;
}
.btn-red-outline{
    border:1px solid #c01b20;
    color: #c01b20;
}
.btn-blue-outline{
    border:1px solid #8ebdf4;
    color: #22559a;
    background: #AACDF6;
    background: linear-gradient(0deg,rgba(170, 205, 246, 1) 0%, rgba(237, 244, 254, 1) 100%);
}

.btn-big{
    width: 100%;
    font-size: 2.2rem;
    height: 5.5rem;
}
.btn-l{
    height: 5rem;
    font-size: 1.8rem;
}
.btn-xs{
    height: 2.4rem;
    font-size: 1.2rem;
    padding: 0.4rem 1.4rem;
    min-width: 4.5rem
}
.btn-s{
    height: 3rem;
    font-size: 1.2rem;
    padding: 0.4rem 2rem;
    min-width: 6.5rem;
}
.btn-radius{
    border-radius: 2em;
   
}
.btn-xs.btn-radius{
    border-radius: 0.6em;
}
.btn-pay{

}
.btn-list{
    height: 3rem;
    padding: 0 2rem;
    color: #1166e4;
    border: 1px solid #608cf9;
    border-radius: 2rem;
}
.btn-search{
    height: 27px;
    width: 60px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #ddd;
}
.btn-search img{
    width: 16px;
}
.color-red{
    color: #FF0000;
}
.color-gold{
    color: #960;
}
.color-blue{
    color: #0066CC;
}
.color-blue2{
    color:#2b2d77;
}
.color-green{
    color: #33863f;
}
.color-black{
    color: #222;
}
.mt2{
    margin-top: 2rem;
}

.wd-10,
.btn.wd-10{
    width: 10%;
}
.wd-20{
    width: 20%;
}
.wd-30{
    width: 30%;
}
.wd-100{
    width: 100%;
}

.mt-2{
    margin-top: 2rem;
}

.text-l{
    text-align: left;
}
.text-c{
    text-align: center;
}
.text-r{
    text-align: right;
}
.table.text-c td{
    text-align: center;
}