@charset "UTF-8";
@import url('./reset.css');
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,600,700,800,900&subset=korean");
@font-face {font-family: 'MaruBuri';font-style: normal;font-weight: 400;src: url(../font/MaruBuri-Regular.ttf)}
/* -----------------------------------
    0.0 Import 
        - 0.1 reset
        - 0.2 font
>>> Z-index
    0.0 Color-set
    0.1 skip nav
    0.2 button & box
    0.3 form
    0.4 text
>> 1.0 공통 layout (wrap, header, footer)
>> 2.0 모달 공통

*/
:root {
  /* UI color */
    --primary : #2D99D4;
    --secondary : #61C5EF;
    --third : #8BCEDD;
    --sub-bg-color : #e8f8ff;
    --hover : #0C689A;

  /* text color */
    --body-title : #1A202C;
    --body-basic-gray : #777676;
    --body-color : #90A3BF;
    --place-holder : #acacac;
    --price : #EC7E7E;
}

/* 0.0 Color-set */
.point-blue { color: var(--primary); }
.price-pink { color: #ec7e7e; font-weight: 700; }
.detail-gray { color: #777676; }
.point2-bluegray { color: #90A3BF; }
.po-attion { color: var(--primary)}

/* 0.1 skip nav */
#skip { position: relative; z-index: 3000;}
#skip a {
    position: absolute;
    top: -9999em; left: 0; display: block; padding: 10px 20px;
    background-color: #769CFF; color: #fff; text-decoration: none; outline: none; z-index: 1000;
}
#skip a:focus { top:0; z-index: 1000;}
.sound_only {display:inline-block !important;position:absolute;top:0;left:0;width:0;height:0;margin:0 !important;padding:0 !important;font-size:0;line-height:0;border:0 !important;overflow:hidden !important}

/* 0.2 button & box */
button { border-radius: 10px; border:none; padding: 10px 20px; text-align: center;}
.button { border-radius: 10px; border:none; padding: 10px 20px; text-align: center;}
.primary { background-color: var(--primary); color: #fff; }
.cancel { background: #E0E0E0; color: #777676; }
.box { border-radius: 10px; text-align: center;}
.round-box { border-radius: 30px; border: 1px solid #e0e0e0; text-align: center; }
.border { border: 1px solid #e0e0e0; }
.bbs-btn { border-radius: 5px; width: 70px; height: 35px; box-sizing: content-box; padding: 0; font-size: .8785rem;}
.basic { color: #777676; border: 1px solid #e0e0e0; background: #fff; }
.del { background: #EC7E7E; color: #fff; }

/* 0.3 form */
select, input { outline: none; background-color: #fff; border: none; }
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
input[type=text],
input[type=number],
input[type=date],
input[type=tel],
input[type=password],
input[type=email] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 0.8rem;
    border: 1px solid #e0e0e0;
    outline: #769CFF;
}
input[type=checkbox] { width: 16px; height: 16px; }
select:focus, input:focus { border: 1px solid #769CFF; }
input[type=text]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=email]:focus { border: 1px solid #769CFF; }
textarea:focus { border: 1px solid #769CFF; }
textarea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #dedede;
    width: 100%; min-width: 100%;
    font-size: 1rem;
    line-height: 1.6em;
    padding: 0.5rem 0.8rem;
    outline: #769CFF;
    min-height: 200px;
    margin: 15px 0;
}
input::placeholder { color: #ACACAC;}
textarea::placeholder { color: #ACACAC; font-size: 0.875rem; }
caption { font-size: 0; }
select { 
  appearance: none; 
  background: url(../img/arrow-down.svg) no-repeat center right 10px;
  background-size: 12px;
}

/* 04 text */
a:hover { color: var(--primary); }
h5, .h5 { font-size: 1.25rem; }
h6, .h6 { font-size: 1rem; }
p { margin-top: 0; }
.sm-txt { font-size: 0.938rem; font-weight: 400; margin-top: 7px; }
.sm-txt14 { font-size: 0.875rem; }
.txt-center { text-align: center; }

/* >> 1.0 공통 layout (wrap, header, footer) */
.wrap { max-width: 1320px; margin: auto;}
.hr { border-top: 1px solid #E0E0E0; }
.inline { display: inline;}
.m_only { display: none; }

/* header */
#header { 
    height: 90px; 
    border-bottom: 1px solid #e0e0e0; 
    display: flex;
}
#header .hd-contents { display: flex; width: 100%; justify-content: space-between; }
#header .mob_header { display: none; }
#header .hd-contents img { width: 50%; }
#header nav  { 
    display: grid;
    align-items: center; 
    grid-template-columns: max-content;
}
#header nav ul { display: flex; flex-wrap: nowrap; }
#header nav ul li { margin-left: 60px; font-size: 1.25rem; }
#header nav ul li:first-child { margin-left: 0px; }
#header nav ul li a:hover {
    text-decoration: underline;
    text-underline-position: under;
    text-underline-offset: 32px;
    text-decoration-thickness : 3px;
}
.current {
    text-decoration: underline;
    text-underline-position: under;
    text-underline-offset: 32px;
    text-decoration-thickness : 3px;
    text-decoration-color: var(--primary);
}

/* -->>> 모바일 메뉴 */
#header i { font-size: 1.625rem;}
.menu_btn, .close_btn { 
    width: 50px; height: 50px; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.close_btn {
    position: absolute;
    top: 10px;
    right: 10px;
}
.sidebar_menu {
    display: none;
    width: 80%;
    height: 100vh;
    background: #fff;
    position: absolute;
    top:0;
    right: -80%;
    z-index: 3;
    box-shadow: -1px 0px 7px 0px rgba(0, 0, 0, 0.10);    
}
.menu_wrap {
    list-style: none;
    padding: 60px 30px;  
}
.menu_wrap li { padding: 20px 0; }

/* footer */
#footer { 
    margin-top: 150px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.875rem; color: #777676;
}
#footer header { padding: 25px 0; }
#footer .priv { color: #1A202C; margin-right: 30px; margin-left: 30px;}
#footer .priv:hover { font-weight: 500;}
#footer section { background: #F9F9F9; padding-bottom: 80px; }
#footer .footer-info { display: flex; justify-content: space-between; }
#footer .footer-info .info-txt { padding-top: 70px; width: 70%;}
#footer .footer-info .info-txt p { line-height: 1.7; }
#footer .footer-info .info-txt img { width: 17%; margin-bottom: 25px; }
#footer .footer-info .info-txt .chk-num {
    border: 1px solid #e0e0e0; 
    padding: 0 5px 1px 5px; 
    border-radius: 3px;
    font-size: 0.75rem;
}
#footer .footer-info .info-txt .copy { margin-top: 30px; }
#footer .footer-info .info-cs { padding-top: 130px; width: 30%;}
#footer .footer-info .info-cs .tit { font-size: 1.125rem; color: var(--body-basic-gray); margin-bottom: 5px; }
#footer .footer-info .info-cs .cs-tel { font-size: 40px; color: #1A202C; font-weight: 600; margin-bottom: 15px;}
#footer .footer-info .info-cs .run { font-size: 1rem; margin-bottom: 20px; }
#footer .footer-info .info-cs .qna {    
    border: 1px solid #e0e0e0; 
    background: #fff;
    padding: 2px 15px 3px 15px; 
    font-size: 1rem; border-radius: 5px; 
}


/* >> 2.0 모달 공통 */
#modal.modal-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  z-index: 10;
}
#modal .modal-content {
  background: #fff;
  border-radius: 15px;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}
#modal .title { padding-left: 10px; display: inline; }
#modal .title h2 { display: inline; }
#modal .close-area {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
/* #modal .close-area img { width: 50%; } */
#modal .content {
  margin-top: 20px;
  padding: 0px 10px;
  overflow: hidden;
  min-height: 250px;
  min-width: 600px;
}
#modal .modal-body {
  padding: 40px;
  overflow-y: auto;
  margin-bottom: 70px;
  max-height: 1000px;
  scrollbar-width: none;
}
#modal .modal-body .ques { 
  font-size: 18px; 
  color: #1A202C; 
  margin-bottom: 7px;
  line-height: 1.5;
}
#modal .footer {
  height: 70px; width: 100%;
  position: absolute;
  bottom: 0; left: 0;
  display: flex;
}
#modal .footer a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
#modal .footer a:hover {
  color: inherit; font-weight: 500;
  cursor: pointer;
}

/* >> 3.0 Alert 공통  */
.alert-box {
    padding: 30px;
    border-radius: 5px;
    display: none;
    border: 1px solid #e0e0e0;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  background: var(--primary);
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}