/* common.css - 釉뚮씪�곗� 湲곕낯 �ㅽ��� 珥덇린�� */

/* box-sizing 珥덇린�� */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 湲곕낯 �щ갚 �쒓굅 */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dd, ol, ul, figure, hr, fieldset, legend {
  margin: 0;
  padding: 0;
}

/* 由ъ뒪�� �ㅽ��� �쒓굅 */
ul, ol {
  list-style: none;
}

/* 留곹겕 湲곕낯 �ㅽ��� �쒓굅 */
a {
  text-decoration: none;
  color: inherit;
}

/* �대�吏� max-width �ㅼ젙 */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* �뚯씠釉� �ㅽ��� 珥덇린�� */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 踰꾪듉 珥덇린�� */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 湲곕낯 �고듃 �ㅼ젙 */
html {font-size: 62.5%;}
body {
  font-family: 'Pretendard', sans-serif;
  font-size: clamp(16px,2.2vw,24px);
  line-height: 1.45;
  color: #000;
  background-color: #fff;
  word-break: keep-all;
  overflow-x: hidden;
}

/* input, textarea 珥덇린�� */
input, textarea {
  border: none;
  outline: none;
  font-family: inherit;
}

/* form �붿냼 湲곕낯 �ㅽ��� */
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/* strong 湲곕낯 �ㅼ젙 */
strong {
  font-weight: bold;
}

/* iframe 珥덇린�� */
iframe {
  border: none;
}


a {
  color: #72bcbb;
  transition: color 0.2s ease;
}

a:hover {
  color: #72bcbb;
}


/*�ㅻ뜑*/
.main-header {
    position: relative;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 990;
}
.main-header .con-wrap {padding: 16px 0;}
.main-header .gnb .con-wrap {padding: 0;}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-left {
    font-size: 22px;
    color: #00a1a1;
}

.header-left .phone-number {
    font-weight: 400;
    margin-left: 5px;
    font-size: 30px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00a1a1;
    text-decoration: none;
    font-family: 'Pretendard', sans-serif;
}

.header-right {font-size: 16px;}
.header-right a {
    color: #555;
    text-decoration: none;
    margin: 0 5px;
}

.header-right a:hover {
    text-decoration: underline;
}

.gnb {
    background: #fff;
    border-top: 1px solid #eee;
}

.gnb > ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.gnb > ul > li {
    position: relative;
    width:25%;
    display: flex;
    justify-content: center;
}

.gnb > ul > li > a {
    display: block;
    padding: 15px 20px;
    color: #222;
    text-decoration: none;
    font-size: 1.8rem;
}

.gnb .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fafafa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    list-style: none;
    padding: 15px 20px;
    min-width: 100%;
    text-align: center;
}

.gnb .submenu li {
    padding-bottom: 15px;
}

.gnb .submenu li:last-child {
    margin-bottom: 0;
}

.gnb .submenu a {
    color: #444;
    text-decoration: none;
    font-size: 18px;
}

.gnb > ul > li:hover .submenu {
    display: flex; justify-content: center; flex-direction: column;
}
.gnb .submenu a:hover {color:#72bcbb;}
.mobile-top-bar {display: none;}
.left-side-bar-box {display: none;}



/* 紐⑤컮�� �꾩슜 �ㅽ��� */
@media (max-width: 1024px) {
  .main-header {height: 60px;}
  .main-header .con-wrap {display: none;}
  .left-side-bar-box {display: block;}
  .mobile-top-bar {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 60px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }
  .mobile-top-bar .logo {
    width: 12%;
    font-weight: 700;
    color: #222;
  }
  .ico {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
  }
  .ico > div {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #72bcbb;
    transition: all 0.3s ease;
  }
  .ico > div:nth-child(1) { top: 0; }
  .ico > div:nth-child(2) { top: 7px; }
  .ico > div:nth-child(3) { top: 14px; }
  .ico.active > div:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }
  .ico.active > div:nth-child(2) {
    opacity: 0;
  }
  .ico.active > div:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }

  .left-side-bar-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .left-side-bar-box.active {
    visibility: visible;
    opacity: 1;
  }
  .left-side-bar {
    width: 250px;
    height: 100%;
    background-color: #fff;
    padding-top: 60px;
    position: fixed;
    top: 0;
    right: -250px;
    transition: all 0.3s ease;
  }
    
    .left-side-login{background: #edfeff; border-bottom: #eeeeee 1px solid} 
    .left-side-login a{display: inline-block; width: 50%; line-height: 40px; text-align: center; color: #3d9e9b}
    .left-side-login a + a{border-left: #eeeeee 1px solid}
    
    
  .left-side-bar-box.active .left-side-bar {
    right: 0;
  }
  .left-side-bar .menu-1 ul {
    padding: 0;
    margin: 0;
  }
  .left-side-bar .menu-1 ul li.active a {color:#72bcbb}
  .left-side-bar .menu-1 ul li.active .submenu li a{color: #222 !important;;}
  .left-side-bar .menu-1 ul li a {
    display: block;
    padding: 12px 16px;
    color: #222;
    border-bottom: 1px solid #eee;
  }
  .left-side-bar .menu-1 ul ul {
    display: none;
    background: #f9f9f9;
  }
  .left-side-bar .menu-1 ul li.active > ul {
    display: block;
  }
}

@media (max-width: 480px) {

    .mobile-top-bar .logo {width: 33%;}

}


/* �명꽣 */
.footer {
  background-color: #222;
  color: #ccc;
  padding: clamp(60px, 6vw, 100px) 20px;
  font-size: clamp(13px, 1.2vw, 15px);
}

.footer .footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 48px);
}

.footer-left {
  flex: 1 1 60%;
}

.footer-left .footer-logo {
  width: clamp(120px, 12vw, 150px);
  margin-bottom: 1rem;
}

.footer-left p {
  line-height: 1.8;
  margin: clamp(2rem, 4vw, 4rem) 0 clamp(2.5rem, 5vw, 5rem);
  font-size: clamp(13px, 1.2vw, 15px);
}

.footer-links {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 6px;
  font-size: clamp(12px, 1vw, 14px);
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-left small {
  display: block;
  margin-top: 10px;
  color: #666;
  font-size: clamp(12px, 1vw, 13px);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
}

.footer-right img {
  width: clamp(22px, 2.5vw, 28px);
  height: clamp(22px, 2.5vw, 28px);
  opacity: 0.7;
  transition: 0.3s;
}

.footer-right img:hover {
  opacity: 1;
}

/*�듬찓��*/
.quick-menu {
  position: fixed;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  background-color: rgb(78 178 175 / 85%);
  border-radius: 50px;
  padding: 40px 0;
  width: 90px;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.quick-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.quick-menu li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-menu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.quick-menu li a img {
  width: 36px;
  height: auto;
  margin-bottom: 6px;
}

.quick-menu li a:hover {
  opacity: 0.85;
}

.quick-menu li:not(:last-child)::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background-color: rgba(255,255,255,0.4);
  margin: 12px 0;
}
.quick-menu2{position: fixed; bottom: 0; width: 100%; background-color: rgb(78 178 175 / 100%); height: 80px; padding: 20px 0; z-index: 9999999999}
.quick-menu2 ul{font-size: 0}
.quick-menu2 ul li{display: inline-flex; flex-direction: column;  align-items: center; width: 20%;  vertical-align: top}
.quick-menu2 li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

.quick-menu2 li img {
  width: 20px;
  height: auto;
  margin-bottom: 6px;
}
.quick-menu2 ul li + li { border-left: #9dd4d3 1px solid}
    
    
    
    
    