html {
     -webkit-text-size-adjust: none; /*Chrome, Safari, newer versions of Opera*/
     -moz-text-size-adjust: none; /*Firefox*/
     -ms-text-size-adjust: none;  /*Ie*/
     -o-text-size-adjust: none; /*old versions of Opera*/
}
body {
  overflow-x: hidden;
  overflow-y: scroll;
}

header {
  position: relative;
  z-index: 999;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}
header .head-top {
  padding: 42px 0 14px;
}
header .head-top .logo a {
  width: 135px;
  display: block;
}
header .head-top .logo a img {
  display: block;
  width: 100%;
}
header .head-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: relative;
}
header .main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
header .main-nav .hambuger {
  width: 22px;
  height: 16px;
  position: relative;
  cursor: pointer;
}
header .main-nav .hambuger > span {
  width: 100%;
  height: 2px;
  background: var(--black);
  position: absolute;
  left: 0;
  transition: all 0.4s;
}
header .main-nav .hambuger > span:nth-child(1) {
  top: 0;
}
header .main-nav .hambuger > span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .main-nav .hambuger > span:nth-child(3) {
  bottom: 0;
}
header .main-nav .hambuger.on > span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
header .main-nav .hambuger.on > span:nth-child(2) {
  opacity: 0;
}
header .main-nav .hambuger.on > span:nth-child(3) {
  bottom: 8px;
  transform: rotate(-45deg);
}
header .main-nav ul {
  display: flex;
  gap: 40px;
  font-size: var(--size16);
  font-weight: 700;
  color: var(--black01);
}
header .serach-wrap {
  width: 400px;
  height: 40px;
  overflow: hidden;
  background: var(--gray01);
  border-radius: 100px;
  display: flex;
}
header .serach-wrap input {
  width: calc(100% - 40px);
  height: 100%;
  padding: 0 25px;
}
header .serach-wrap input::placeholder{
  color: var(--gray06);
  font-size: 0.875rem;
}
header .serach-wrap button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}
header .serach-wrap button img {
  width: 24px;
}
header .etc-nav {
  display: flex;
  gap: 24px;
  font-size: var(--size15);
  font-weight: 500;
  color: var(--black02);
}
header .head-bot .nav-all {
  width: 100%;
  /* padding: 40px 35px 32px 35px; */
  padding: 40px 30px 12px 43px;
  box-sizing: border-box;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  position: absolute;
  left: 0;
  top: 73px;
  display: flex;
  /*gap: 10px; */
  flex-flow: wrap;
  z-index: 9999;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
header .head-bot .nav-all .left {
  /* width: calc(100% - 255px); */
  width: 100%;
  border-bottom: 1px solid var(--gray01);
}
header .head-bot .nav-all .absol-box {
  position: absolute;
  bottom: 56px;
  right: 55px;
  border-top: 1px solid var(--gray01);
}

header .head-bot .nav-all .absol-box .quick-menu {
  background-color: #fff;
  display: flex;
  flex-flow: column wrap;
  gap: 15px;
  padding: 15px;
}
header .head-bot .nav-all .absol-box .quick-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  /*border: 1px solid var(--gray01);
  */border: 1px solid var(--gray05);
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
}
header .head-bot .nav-all .absol-box .quick-menu a:hover {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
}
header .head-bot .nav-all .absol-box .quick-menu a img {
  width: 26px;
}
header .head-bot .nav-all .absol-box .quick-menu a .text {
  width: calc(100% - 36px);
  color: var(--gray02);
  font-weight: 500;
  font-size: 12px;
}
header .head-bot .nav-all .absol-box .quick-menu a .text .tit {
  color: var(--black01);
  font-weight: 500;
  margin-bottom: 5px;
}
header .head-bot .nav-all .absol-box .quick-menu a .text .txt {}
header .head-bot .nav-all .right {
  width: 245px;
  padding-top: 58px;
  padding-left: 10px;
  border-bottom: 1px solid var(--gray01);
}
header .head-bot .nav-all .right .title {
  text-align: center;
  color: var(--blue01);
  font-weight: 500;
  margin-bottom: 40px;
}
header .head-bot .nav-all .right .quick-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
header .head-bot .nav-all .right .quick-menu .menu-item {
  border-radius: 8px;
  background: var(--gray01);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 18px 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-sizing: border-box;
  cursor:pointer;
}
header .head-bot .nav-all .right .quick-menu .menu-item img {
  width: 26px;
}
header .head-bot .nav-all .right .quick-menu .menu-item .text {
  width: calc(100% - 36px);
  color: var(--gray02);
  font-weight: 500;
  font-size: 12px;
}
header .head-bot .nav-all .right .quick-menu .menu-item .text .tit {
  color: var(--black01);
  font-weight: 500;
  margin-bottom: 5px;
}
header .head-bot .nav-all .right .welcome {
  margin-top: 40px;
  box-sizing: border-box;
  padding-left: 18px;
}
header .head-bot .nav-all .right .welcome img {
  width: 56px;
}
header .head-bot .nav-all .right .welcome .txt1 {
  color: var(--black01);
  font-size: 12px;
  line-height: 1.3;
}
header .head-bot .nav-all .right .welcome .txt2 {
  font-size: 12px;
  color: var(--gray02);
  margin-top: 0;
}
header .head-bot .nav-all .right .welcome .txt2-btn {
  padding: 5px;
  margin-top: 12px;
  border: 1px solid #ddd;
  display: inline-block;
}
header .head-bot .nav-all .nav-list {
  display: flex;
}
header .head-bot .nav-all .nav-list .list-item {
  /* padding: 0 30px 30px 30px; */
  padding: 0 30px 30px;
  /*border-bottom: 1px solid var(--gray01);*/
  position: relative;
}
header .head-bot .nav-all .nav-list .list-item::after {
  content: "";
  width: 1px;
  height: calc(100% - 48px);
  background: var(--gray01);
  position: absolute;
  right: 0;
  bottom: 0;
}
header .head-bot .nav-all .nav-list .list-item:last-child:after {
  display: none;
}
header .head-bot .nav-all .nav-list .list-item .title {
  font-size: var(--size14);
  color: var(--black01);
  font-weight: 500;
  margin-bottom: 40px;
}
header .head-bot .nav-all .nav-list .list-item .list-wrap {
  display: flex;
  gap: 30px;
}
header .head-bot .nav-all .nav-list .list-item .list-style {
  color: var(--black02);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--black02);
  font-size: 13px;
}
header .head-bot .nav-all .etc-list {
  margin-top: 36px;
  display: flex;
  gap: 30px;
}
header .head-bot .nav-all .etc-list > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--black);
}
header .mob-etc {
  display: none;
}
header .head-bot .nav-all .mob {
  display: none;
}
header .mob-sub {
  display: none;
}
header .head-sub {
  display: none;
}

/* header 2025-04-23 Ãß°¡³»¿ë */
header .head-bot .nav-all .bottom {
  width: 100%;
  margin-top: 15px;
  display: flex;
  flex-flow: wrap;
  gap: 15px;
}

header .head-bot .nav-all .bottom li a {
  padding: 5px 15px;
  border-radius: 100px;
  border: 1px solid var(--gray05);
  font-size: var(--size14);
  color: var(--black01);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  position: relative;
  z-index: 9999;
}

header .head-bot .nav-all .bottom li a.gray {
  border-color: var(--gray07);
  background-color: var(--gray07);
  color: var(--white);
}

/*footer*/
footer {
  background: var(--white);
  padding: 50px 0 100px;
  font-size: var(--size14);
  border-top: 1px solid var(--gray05);
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
}
footer .footer-top .info-list {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--gray03);
  font-size: 12px;
  padding: 3px 0;
}
footer .footer-top .info-list .ftc-com {
  /* background: var(--gray01);
  border-radius: 100px;
  padding: 4px 12px; */
  font-size: 12px;
  color: var(--black02);
  text-decoration: underline;
}
footer .footer-top .info-list:nth-child(2) {
  margin: 30px 0 0;
}
footer .footer-top .etc-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
footer .footer-top .etc-nav .etc-list1 {
  display: flex;
  gap: 10px;
}
footer .footer-top .etc-nav .etc-list1 > li > a {
  background: var(--gray01);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--black01);
}
footer .footer-top .etc-nav .etc-list2 {
  display: flex;
  gap: 30px;
  color: var(--black01);
}
footer .footer-top .right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-end;
}
footer .footer-top .right p {
  color: var(--gray03);
  text-align: right;
}
footer .footer-top .right a {
  border-radius: 100px;
  background: var(--gray01);
  padding: 4px 16px;
  color: var(--black02);
}
footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
footer .footer-bottom .copy {
  display: flex;  
  justify-content: space-between;
  width: 717px;
}
footer .footer-bottom .copy p {
  font-size:12px;
  color: var(--gray07);
}
footer .footer-bottom .copy img {
  width: auto;
  height: 100%;
}

footer .footer-btn {
  padding-top:30px;
}
footer .footer-btn a {
  padding:4px 10px;
  border: 1px solid var(--gray07);
  font-size: 13px;
  color: var(--gray03);
  border-radius: 40px;
  display: inline-block;
}

footer .footer-bottom .etc-list {
  display: flex;
  align-items: center;
  gap: 60px;
}
footer .footer-bottom .etc-list .mob {
  background: var(--gray08);
  border-radius: 100px;
  padding: 8px 24px;
  color: var(--white);
}
footer .footer-bottom .etc-list .sns-list {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer-bottom .etc-list .sns-list img {
  width: 25px;
}
footer .footer-bottom .etc-list .sns-list img.instar {
  width: 47px;
}
/*fix-btn*/
.fix-btn {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.fix-btn img {
  width: 42px;
}

input[type="month"],
input[type="date"],
input[type="time"] {
   color: var(--gray06) !important;
}

input[type="month"].has-value,
input[type="date"].has-value,
input[type="time"].has-value {
  color: var(--black) !important;
}

input[type="date"][readonly] {
    color: var(--black) !important; /* °ËÀº»ö °­Á¦ Àû¿ë */
    opacity: 1 !important; /* Åõ¸íµµ ¹®Á¦ ÇØ°á */
}

input[type="date"]::-webkit-date-and-time-value{ text-align:left; vertical-align:middle;}

select {
    color: var(--gray06) !important; 
}
option {
    color: #000; 
}


select.has-value {
  color: var(--black) !important;
}

input {
  color: var(--black);
}

input::placeholder {
  color: var(--gray06);
}

.nav-list-mo {
    display:none;
}

/* alertPopup S */
.alert-black {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}

.alert-info {
  display: none;
  width: 500px;
  max-width: 90%;
  max-height: 90%;
  min-height: 200px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray05);
  padding: 32px 22px;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-sizing: border-box;
  line-height: 1.5;
}

.alert-info .alert-info-inner {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-flow: row wrap;
}

.alert-info .alert-info-inner p {
  width: 100%;
  align-self: flex-end;
  text-align: center;
  font-size: 15px;
}

.alert-info button {
  padding: 10px 34px;
  border-radius: 100px;
  background: var(--gray08);
  font-size: var(--size14);
  font-weight: 500;
  color: var(--white);
  margin: 50px auto 0;
  display: block;
  align-self: self-end;
}


/* alertPopup E */


/* Confirm Popup Styles */
.confirm-black {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}

.confirm-info {
  display: none;
  width: 500px;
  max-width: 90%;
  max-height: 90%;
  min-height: 200px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray05);
  padding: 32px;
  z-index: 9999;
}

.confirm-info .confirm-info-inner {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-flow: row wrap;
}

.confirm-info .confirm-info-inner p {
  margin-bottom: 40px;
}

.confirm-buttons {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 20px;
  margin: 0 auto;
}

.confirm-info .confirm-info-inner p {
  width: 100%;
  align-self: flex-end;
  text-align: center;
  font-size: 15px;
}

.confirm-buttons button {
  padding: 10px 34px;
  border-radius: 100px;
  background: var(--gray08);
  font-size: var(--size14);
  font-weight: 500;
  color: var(--white);
  display: block;
  align-self: self-end;
}
/* Confirm Popup Styles */