@charset "euc-kr"; 
* {box-sizing: border-box; margin: 0; padding: 0;}
html {font-size: 16px;}
body {font-family: 'NotoSans'; letter-spacing: 0;}
.wrap {position:relative; width:100%;}
.container {position:relative; width:100%; margin:0 auto;}
h2,h3,h3,h4,h5,h6 {
  font-family: 'Paperozi';;
}
.blind {
    font-size: 0;
    text-indent: -9999px;
    opacity: 0;
}
.pc {}
.mobile {
  display: none;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --mainColor: #1D2A55;
  --m-color: #1D2A55;
  --border-color: #ddd;

  --black01: #292e41;
  --black02: #222;
  --black03: #333;
  --black06: #666;
  --black09: #999;

  --gray01: #eee;
  --gray02: #67738e;
  --gray03: #373f57;
  --gray04: #999999;
  --gray05: #dddddd;
  --gray06: #bfbfc3;
  --gray07: #5c667b;
  --gray08: #404040;

  --blue01: #0066ff;
  --blue02: #00ffff;
  --blue03: #00ccff;
  --blue04: #2d65f2;

  --purple01: #562dff;
  --purple02: #f6f3ff;
  --purple03: #a2a0fd;

  --size11: 0.6875rem;
  --size12: 0.75rem;
  --size13: 0.8125rem;
  --size14: 0.875rem;
  --size15: 0.9375rem;
  --size16: 1rem;
  --size18: 1.125rem;
  --size19: 1.1875rem;
  --size20: 1.25rem;
  --size22: 1.375rem;
  --size24: 1.5rem;
  --size25: 1.5625rem;
  --size26: 1.625rem;
  --size28: 1.75rem;
  --size30: 1.875rem;
  --size34: 2.125rem;
  --size35: 2.1875rem;
  --size36: 2.25rem;
  --size40: 2.5rem;
  --size45: 2.8125rem;
  --size50: 3.125rem;
  --size60: 3.75rem;
}

/* SELECT */
select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background:url(/img/comm/select_arr.png) calc(100% - 7px) 50% no-repeat;}
select::-ms-expand {
   display: none;            
}

.inner {
  max-width: 1280px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
.flex-box {
  display: flex;
  flex-flow: row wrap;
}
input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  
}
input[type=checkbox] + label {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
}
input[type=checkbox] ~ label .box {
  content: '';
  cursor: pointer;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff  50% 50% no-repeat;
  background-size: 72.22% auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 0.2s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
input[type=checkbox]:checked + label .box {
  background-color: #1D2A55;
  border-color: #1D2A55;
  background-image: url('/img/comm/chk_on.png');
}

/* HEADER */
.header {
  position:fixed; 
  width:100%; 
  z-index:102; 
  background: #00000026;
  border-bottom: 1px solid #FFFFFF4D;
  transition: all 0.3s ease;
}
.sub-header {
  background: none;
}

#header.scroll {
  /* background: var(--mainColor); */
  background: #00000080;
}
.header .inner {
  max-width: 100%;
  padding: 0 2.1875rem;
  align-items: center;
  justify-content: space-between;
}
.header .logo a {
  display: block;
  width: 9.875rem;
  aspect-ratio: 79/20;
  background: no-repeat center center;
  background-size: contain;
  background-image: url(/img/comm/header_logo.png);
}
.header .gnb {
  display: flex;
  flex-flow: row wrap;
  margin-left: 1.875rem;
}
.header .gnb > li {
  position: relative;
}
.header .gnb > li > a {
  padding: 1.6875rem 1.875rem;
  font-family: 'Paperozi';
  font-weight: 600;
  font-size: var(--size18);
  line-height: 1.166667;
  display: block;
  color: var(--white);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.header .gnb > li > .depth2 {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  min-width: 70px;
  padding: 1.25rem 0;
  z-index: 3;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease,    opacity 0.3s ease;
  -webkit-transition: max-height 0.4s ease,    opacity 0.3s ease;
  -moz-transition: max-height 0.4s ease,    opacity 0.3s ease;
  -ms-transition: max-height 0.4s ease,    opacity 0.3s ease;
  -o-transition: max-height 0.4s ease,    opacity 0.3s ease;
}
.header .gnb > li > .depth2 > li > a {
  display: block;
  font-weight: 400;
  font-size: var(--size16);
  color: var(--black);
  line-height: 200%;
  white-space: nowrap;
  padding: 10px 0;
  line-height: 1.25;
  text-align: center;
  transition: all 0.1s ease-in;
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -ms-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
}
.header .gnb > li > a:hover {
  color: var(--mainColor);
}
.header .gnb > li > .depth2 > li > a:hover {
  color: var(--mainColor);
  font-weight: 600;
}

.header .gnb-bk {
  width: 100%;
  height: 18.75rem;
  background-color: #fff;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease,    opacity 0.3s ease;
  -webkit-transition: max-height 0.4s ease,    opacity 0.3s ease;
  -moz-transition: max-height 0.4s ease,    opacity 0.3s ease;
  -ms-transition: max-height 0.4s ease,    opacity 0.3s ease;
  -o-transition: max-height 0.4s ease,    opacity 0.3s ease;
}

.header .gnb:hover > li > .depth2,
.header .gnb:hover + .gnb-bk {
  max-height: 1000px;
  opacity: 1;
}
.header .right-wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 2.0625rem;
}
.header .right-wrap li:not(:last-child) a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Paperozi';
  font-weight: 600;
  font-size: var(--size16);
  line-height: 1;
  text-align: right;
  color: var(--white);
}
.header .right-wrap li .icon-box {
  transition: all 0.3s;
  width: 1.5625rem;
  height: 1.5rem;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  background: no-repeat center center;
  background-size: contain;
}
.header .right-wrap li:nth-child(1) .icon-box {
  background-image: url(/img/comm/header_icon01.png);
}
.header .right-wrap li:nth-child(2) .icon-box {
  background-image: url(/img/comm/header_icon02.png);
}
.header .right-wrap li.pharms-btn {
  position: relative;
}
.header .right-wrap li.pharms-btn > a {
  background-color: var(--mainColor);
  padding: 10px 15px;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -o-border-radius: 7px;
  color: var(--white)!important;
  position: relative;
  z-index: 10;
}
.header .right-wrap li.pharms-btn .icon-box {
  background-image: url(/img/comm/header_icon02.png)!important;
}
.header .right-wrap li.pharms-btn .pharms-box {
  position: absolute;
  top: calc(100% - 1.25rem);
  z-index: 9;
  left: 0;
  width: 100%;
  background-color: #1B3588;
  border-radius: 0 0 24px 24px;
  max-height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.header .right-wrap li.pharms-btn .pharms-box.active {
  padding: 1.25rem;
  max-height: 200px;
}
.header .right-wrap li.pharms-btn .pharms-box ul {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    gap: 6px;
    width: 100%;
    padding: 1rem 0 0;
}
.header .right-wrap li.pharms-btn .pharms-box ul li a {
  color: var(--white)!important;
  font-size: var(--size14);
  line-height: 1.3;
}
#header.white {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
#header.white .logo a {
  background-image: url(/img/comm/header_logo_black.png);
}
#header.white .right-wrap li:not(:last-child) a,
#header.white .gnb > li > a {
  color: var(--black);
}
#header.white .right-wrap li:nth-child(1) .icon-box {
  background-image: url(/img/comm/header_icon01_black.png);
}
#header.white .right-wrap li:nth-child(2) .icon-box {
  background-image: url(/img/comm/header_icon02_black.png);
}

.sitemap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 10000;
}
.sitemap .close {
  position: absolute;
  top: 3.125rem;
  right:  10%;
}
.sitemap > ul {
  display: flex;
  flex-flow: row wrap;
  gap: 2.5rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 7.5rem 1.25rem;
  max-height: 100%;
}
.sitemap ul li {
  width: calc(20% - 2rem);
}
.sitemap > ul > li > a {
  font-size: var(--size20);
  color: var(--white)
}
.sitemap > ul > li > .depth2 {
  margin-top: 1.875rem;
}
.sitemap > ul > li > .depth2 li {
  width: 100%;
  padding: 10px 0;
}
.sitemap > ul > li > .depth2 a {
  font-size: var(--size16);
  color: var(--white);
}

@media (max-width:1400px){
  html {font-size: 15px;}
  .header .inner {
    padding: 0;
  }
  .header .gnb > li > a {
    padding: 1.6875rem 0.875rem;
  }
}

@media (max-width:1280px){
  .header .gnb {
    margin-left: 1rem;
  }
  .header .right-wrap {
    gap: 1rem;
  }
}

@media (max-width:1024px){
  html {font-size: 14px;}
  #header.scroll {
    background-color: #1D2A55;
  }
  .header .inner {
    height: 5rem
  }
  .header .gnb {
    display: none;
  }
  .header .right-wrap {
    gap: 1rem;
  }
  .header .right-wrap li:first-child a {
    font-size: var(--size14);
  }
}

@media (max-width:968px){}

@media (max-width:768px){
  html {font-size: 13px;}
  .header .right-wrap {
    gap: 0.75rem;
  }
  .header .right-wrap li .icon-box {
    width: 1rem;
    height: 1rem;
  }
  .header .right-wrap li:not(:last-child) a {
    gap: 5px;
  }
  .header .right-wrap li:nth-child(2) .icon-box {
    width: 1.25rem;
  }
  .header-top .right a.pc {
    display: none;
  }
}

@media (max-width:480px){
  .header .logo a {
    width: 8rem;
  }
  .header .right-wrap li.pharms-btn {
    padding: 7px 5px;
  }
}

@media (max-width:320px){
  html {font-size: 12px;}
}

.left-menu {
  max-width: 800px;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  position: fixed;
  top: 0;
  right: -100%;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.left-menu.active {
  right: 0;
}
.left-menu-top {
  /* width: calc(100% - 20px);  */
  padding: 1.5rem 10px;
  margin: 0 auto;
  position: relative;
}
.left-menu-top .inner {
  position: relative;
}
.left-menu-top ul {
  justify-content: flex-start;
  gap: 10px;
}
.left-menu-top ul li {
  width: 6.25rem;
  height: 2.5rem;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}
.left-menu-top ul li:nth-child(1) {
  background: #92BFF4;
}
.left-menu-top ul li:nth-child(2) {
  background: #517FA2;
}
.left-menu-top ul li:nth-child(3) {
  background: #57134B;
}
.left-menu-top ul li a {
  font-weight: 600;
  font-size: var(--size14);
  line-height: 1;
  color: var(--white);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-menu-middle {width: 100%; height: calc(100% - 100px); overflow-y: auto; padding: 0 20px 40px; box-sizing: border-box;}
.left-menu .user-menu {display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; align-content: flex-start;}
.left-menu .user-menu dd {flex: none; margin: 4px 0 0;}
.left-menu .user-menu dd + dd {margin: 4px 0 0 8px;}
.left-menu .user-menu dd a {font-size: 15px; display: block;}
.left-menu .user-menu dd.block {width: 100%; height: 0;}
.left-menu .user-menu dd.block + dd {margin: 4px 0 0 0;}
.left-menu .user-menu dd.member-btn a {border: 1px solid #515061; border-radius: 10px; padding: 4px 8px; box-sizing: border-box;
display: flex; flex-flow: row wrap; gap: 10px; align-items: center;}
.left-menu .user-menu dd.fc-btn a {background: var(--m-color); color: var(--m-color-strong); border-radius: 10px; padding: 4px 8px;}
.left-menu .user-menu dd.english {border: 1px solid var(--m-color); padding: 2px 8px; box-sizing: border-box; background: #fff; color: var(--m-color); border-radius: 8px;}
#nav {width: 100%;}

#nav > li > a {display: block; width: 100%; line-height: 42px; border-bottom: 1px solid #ddd; box-sizing: border-box; font-size: 17px; color: #222; font-weight: 500;     background: url(/img/comm/nav_arr.png) right 10px center no-repeat;}

#nav > li > .depth2 {width: 100%; box-sizing: border-box; max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;}

#nav > li.active > .depth2 {

  max-height: 500px;

}

#nav > li > .depth2 li a {font-size: 16px; line-height: 24px; padding: 8px 10px 7px; box-sizing: border-box; display: block; border-bottom: 1px solid #ddd;}



.all_menu-cls { width: 20px; height: 20px; background: url(/img/comm/close_b.png) 50% 50% no-repeat; background-size: 100% auto; display: block; position: absolute; top: 50%; right: 10px; transform:translateY(-50%) ; -webkit-transform:translateY(-50%) ; -moz-transform:translateY(-50%) ; -ms-transform:translateY(-50%) ; -o-transform:translateY(-50%) ; }


/* FOOTER */
.footer {width:100%;}
.footer .footer-top {
  background-color: var(--mainColor);
  padding: 2.4375rem 0 2.625rem;
}
.footer .footer-top ul {
  display: flex; 
  flex-flow: row wrap;
  gap: 1.875rem;
}
.footer .footer-top ul a {
  font-weight: 400;
  font-size: var(--size16);
  line-height: 1.1875;
  color: var(--white);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.footer .footer-top ul a:hover {
  text-shadow:
  0.03em 0 currentColor,
 -0.03em 0 currentColor;
}
.footer .footer-bottom {
  background-color: var(--white);
  padding: 3.125rem 0 8.75rem;
}
.footer .footer-bottom .inner {
  justify-content: space-between;
}
.footer .footer-bottom .left-box .logo {
  margin-bottom: 1.875rem;
}
.footer .footer-bottom .left-box p {
  font-weight: 400;
  font-size: var(--size14);
  line-height: 1.57143;
  color: var(--black03);
  margin-bottom: 1.25rem;
}
.footer .footer-bottom .left-box p span {
  position: relative;
  white-space: nowrap;
  margin-right: 0.75rem;
}

.footer .footer-bottom .left-box p span:not(:last-child)::after {
  content: "|";
  margin-left: 0.75rem;
  color: var(--gray05);
}
.footer .footer-bottom .left-box p span:nth-of-type(4)::after,
.footer .footer-bottom .left-box p span:nth-of-type(6)::after,
.footer .footer-bottom .left-box p span:nth-of-type(9)::after {
  display: none;
  content: "";
}

.footer .footer-bottom .left-box p a {
  margin-left: 0.25rem;
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}
.footer .footer-bottom .right-box {
  display: flex;
  flex-flow: column wrap;
  align-items: flex-end;
}
.footer .footer-bottom .right-box ul {
  display: flex;
  flex-flow: row wrap;
  gap: 1.25rem;
}
.footer .footer-bottom .right-box ul li a {}
.footer .footer-bottom .right-box h4 {
  margin-top: 1.875rem;
  font-weight: 700;
  font-size: var(--size22);
  line-height: 1.5454;
  text-align: right;
  color: var(--black);
}
.footer .footer-bottom .right-box h4 span {
  font-size: var(--size28);
}
.footer .footer-bottom .right-box p {
  margin-top: 1.1875rem;
  font-weight: 400;
  font-size: var(--size16);
  line-height:1.625;
  text-align: right;
  color: var(--black);
}
.footer .footer-bottom .right-box > a {
  margin-top: 1.25rem;
  border: 1px solid var(--black);
  width: 8.75rem;
  height: 2.8125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: var(--size16);
  line-height: 1;
  text-align: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.footer .footer-bottom .right-box > a:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  color: var(--white);
}
.footer .footer-bottom.mobile .left-box .flex-box {
  justify-content: space-between;
  align-items: center;
}
.footer .footer-bottom.mobile .left-box .flex-box .logo {
  margin-bottom: 0;
}
.footer .footer-bottom.mobile .left-box .flex-box ul {
  display: flex;
  flex-flow: row wrap;
  gap: 1.25rem;
}
.footer .footer-bottom.mobile .right-box {
  align-items: flex-start;
  margin-bottom: 1.875rem;
}
.footer .footer-bottom.mobile .right-box p {
  text-align: left;
}

@media (max-width:1400px){}

@media (max-width:1280px){}

@media (max-width:1024px){}

@media (max-width:968px){}

@media (max-width:768px){
  .footer .footer-top ul {
    justify-content: center;
  }
}

@media (max-width:480px){}

@media (max-width:320px){}


/* QUICK */
.quick-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.quick-wrap01 {
  left: auto;
  right: 1.25rem;
  top: auto;
  bottom: 2.625rem;
}
.quick-wrap01 ul li {
  margin-top: 10px;
}
.quick-wrap01 ul li a {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.0625rem 0;
  font-family: 'Paperozi';
  font-weight: 500;
  font-size: var(--size13);
  line-height: var(--size15);
  text-align: center;
  color: var(--black);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.quick-wrap01 ul li:last-child a {
  padding: 1.25rem;
}
.quick-wrap01 ul li:nth-child(1) a {
  background-color: #1D2A55;
  color: var(--white);
}
.quick-wrap01 ul li:nth-child(2) a {
  background-color: #FBF8EE;
}
.quick-wrap01 ul li:nth-child(3) a {
  background-color: #FFFFFF;
  border: 1px solid #ddd;
}
.quick-wrap01 ul li:nth-child(4) a {
  background-color: #CFCFCF;
}
.quick-wrap01 ul li a img {
  max-width: 50%;
}
/* .quick-wrap01 ul li a:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
} */

@media (max-width:1400px){}

@media (max-width:1280px){}

@media (max-width:1024px){}

@media (max-width:968px){}

@media (max-width:768px){
  .quick-wrap01 {
    width: 100%;
    right: 0;
    bottom: 20px;
  }
  .quick-wrap01 ul {
    max-width: calc(100% - 30px);
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .quick-wrap01 ul li {
    margin-top: 0;
  }
}

@media (max-width:480px){}

@media (max-width:320px){}


.form-wrap .input-wrap {
  margin-top: 1.875rem;
}
.form-wrap .input-wrap:first-of-type {
  margin-top: 0;
}
.form-wrap .input-wrap label {
  font-family: 'Paperozi';
  font-weight: 500;
  font-size: var(--size20);
  line-height: 1.3;
  color:var(--black);
  margin-bottom: 10px;
}
.form-wrap .input-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.1875rem 1.25rem 1.125rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-top: 1.25rem;
}
.form-wrap .input-wrap input[type="text"],
.form-wrap .input-wrap select,
.form-wrap .input-wrap textarea {
  outline: none;
  border: none;
  width: 100%;
  font-weight: 400;
  font-size: var(--size16);
  line-height: 1.3125;
  color: var(--black);
  font-family: 'NotoSans';
}
.form-wrap .input-wrap input[type="text"]::placeholder,
.form-wrap .input-wrap textarea::placeholder {
  color: #999;
}
.form-wrap .input-wrap select {
  color: #999;
}
.form-wrap .input-wrap select.hasValue  {
  color: var(--black);
}
.form-wrap .input-wrap select
.form-wrap .input-wrap textarea {
  resize: none;
  height: 3.6875rem;
}
.form-wrap button[type="submit"] {
  font-family: 'Paperozi';
  font-weight: 500;
  font-size: var(--size20);
  color: var(--white);
  margin-top: 3.125rem;
  width: 100%;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #1B3588;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media (max-width:1400px){}

@media (max-width:1280px){}

@media (max-width:1024px){}

@media (max-width:968px){}

@media (max-width:768px){}

@media (max-width:480px){}

@media (max-width:320px){}