:root {
  --main-color: #8A3451;
  --sub-color: #235192;
  --black-txt-color: #333333;
  --sub-txt-color: #555555;
  --gray-txt-color: #999999;
  --border-color: #D9D9D9;
  --bg-color: #F9F9F9;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
*::-webkit-scrollbar-thumb {
  height: 10%;
  background: var(--main-color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  background: rgba(33, 122, 244, .1);
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
}

/*모달*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
  .modal.terms1 {
    display: none;
  }
  .modal .terms-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 850px;
  }
  .modal .terms-box .tit-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
  }
  .modal .terms-box .tit-box span {
    font-size: 20px;
    font-weight: 600;
  }
  .modal .terms-box .tit-box button {
    display: inline-block;
  }
  .modal .terms-box .tit-box img {
    width: 15px;
    height: 15px;
  }
  .modal .terms-box .content {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    height: auto;
    min-height: 350px;
    max-height: 500px;
    overflow-y: auto;
  }

/*공통*/
main {
  padding-top: 130px;
  min-height: calc(100vh - 390px);
}
select {
  background-color: #fff !important;
}
.wrap {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
}
.sm-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.bc-wrap {
  background-color: #F8FBFF;
}
.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #000;
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 20px;
  height: 20px;
}

.btn {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  max-width: 120px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.btn.mt-24 {
    margin-top: 24px;
}
.btn:hover {
  opacity: .9;
}
.btn.m-0 {
  margin: 0;
}
.btn.btn-solid {
  border: 1px solid var(--main-color);
  color: var(--main-color);
}
.btn.btn-bc {
  background-color: var(--black-txt-color);
  color: #fff;
}
.btn.btn-solid:hover {
  background-color: var(--main-color);
  color: #fff;
}
.btn.btn-lg {
  max-width: 240px;
  color: #fff;
  background-color: var(--main-color);
}

.input {
  width: 100%;
  border: 1px solid var(--border-color);
  height: 42px;
  line-height: 42px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 400;
  background-color: #fff;
}
.input:read-only {
  background-color: var(--bg-color);
}
.input:read-only:focus {
  border: 1px solid var(--border-color);
}
.input:focus {
  outline: none;
  border: 1px solid var(--main-color);
}
.input.input-lg {
  max-width: 300px;
}
.input.input-sm {
  max-width: 230px;
}
.input.input-xs {
  max-width: 120px;
}

/*mobile header*/
.ham {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
#ham_btn {
  display: none;
}
#ham_btn + label {
  position: relative;
  display: block;
  width: 32px;
  height: 22px;
  cursor: pointer;
  z-index: 10;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  border-radius: 5px;
  transition: all 300ms;
}
#ham_btn:checked + label > span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
  bottom: 0;
}
#ham_btn:checked + label > span:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(-45deg);
}


/*header*/
.header-wrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 4;
}
.header-wrap .border-box > .wrap {
  position: relative;
}
.header-wrap .border-box {
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
}
.header-wrap .logo {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-wrap .logo img {
  height: 50px;
}
.header-wrap .gnb-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gnb {
  display: flex;
  align-items: center;
  gap: 24px;
}
.gnb li > button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
}
.gnb li > button > img {
  width: 20px;
}
.gnb li a {
  display: inline-block;
  font-weight: 600;
  color: var(--black-txt-color);
}
.user-box {
  display: flex;
  align-items: center;
  gap: 24px;
}
.user-box li {
  display: flex;
  align-items: center;
  position: relative;
}
.user-box li a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--black-txt-color);
}
.user-box li a > img {
  height: 14px;
}
.user-box li > button {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-txt-color);
  border: 1px solid var(--border-color);
  padding: 5px 12px;
}
.user-box li.name {
  font-weight: 600;
  gap: 12px;
  color: var(--black-txt-color);
}
.user-box li.name::before {
  content: "";
  width: 1px;
  height: 13px;
  background-color: var(--border-color);
  margin-right: 12px;
}

/*header 전체메뉴*/
.lnb {
  display: none;
  width: 100vw !important;
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
}
.lnb::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  position: absolute;
  z-index: 5;
  top: 68px;
}
.lnb-main {
  display: flex;
  align-items: flex-start;
}
.lnb-main > li {
  width: 100%;
}
.lnb-main > li > a {
  width: 100%;
  display: inline-flex;
  padding: 24px 48px;
  font-size: 20px;
  font-weight: 500;
  color: var(--black-txt-color);
  position: relative;
}
.lnb-main > li:hover > a {
  color: var(--main-color);
}
.lnb-main > li:hover > a::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 6;
}
.lnb-main > li > .sub {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 48px;
  border-right: 1px solid var(--border-color);
}
.lnb-main > li > .sub li:hover a {
  color: var(--main-color);
}
.lnb-main > li > .sub li a {
  font-weight: 500;
  color: var(--sub-txt-color);
}
/*footer*/
footer {
  margin-top: 100px;
}
.footer-bg {
  width: 100%;
  position: relative;
  z-index: 1;
}
.footer-wrap {
  background-color: var(--bg-color);
  position: relative;
  z-index: 2;
  padding: 48px 0;
  margin-top: -5px;
}
.footer-wrap .wrap {
  display: flex;
  justify-content: space-between;
}
.footer-wrap .info-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 1;
}
.footer-wrap .info-box .f-logo img {
  width: 120px;
}
.footer-wrap .info-box .info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-wrap .info-box .info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-txt-color);
}
.footer-wrap .info-box .info > p {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-txt-color);
}
.footer-wrap .info-box .info > div {
  display: flex;
  align-items: center;
  gap: 12px 24px;
}
.footer-wrap .info-box .info span b {
  font-weight: 700;
}
.footer-wrap .fnb-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  order: 2;
}
.footer-wrap .fnb-box .copy {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-txt-color);
}
.footer-wrap .fnb-box .copy b {
  font-weight: 600;
}
.fnb {
  display: flex;
  align-items: center;
  gap: 38px;
}
.fnb li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-txt-color);
}
.fnb li a.terms-view {
  cursor: pointer;
  color: var(--main-color);
}

/*메인*/
.main-slider {
  width: 50%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  order: 1;
}
.main-slider.slider-web {
	display: block;
}
.main-slider.slider-mobile {
	display: none;
}
.banner-area {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
.main-slider .swiper-slide a {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  position: relative;
}
.main-slider .swiper-slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.d-day {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}
.d-day span {
  display: block;
  padding: 6px 10px;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 600;
  color: var(--black-txt-color);
  border-radius: 8px;
}
.control {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.control .navigation {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.control .navigation .swiper-button-pause {
  display: flex;
  align-items: center;
  padding-bottom: 2px;
}
.control .navigation > span {
  cursor: pointer;
}
.control .navigation > span img {
  height: 10px;
}
.control .navigation > button img {
  height: 10px;
}
.swiper-pagination {
  position: relative !important;
  top: unset !important;
  left: unset !important;
  bottom: unset !important;
  right: unset !important;
}
.swiper-pagination-bullet {
  width: 8px;  
  min-width: 8px;
  height: 8px;
  background: transparent;
  border: 2px solid #fff;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--main-color);
  border: none;
}





.investment-box {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 48px;
  order: 2;
}
.investment-box .button-box {
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  background: linear-gradient(130deg, rgba(138,52,81,.5) 0%, rgba(35,81,146,.5) 40%, rgba(35,81,146,.5) 60%, rgba(138,52,81,.5) 100%);
}
.investment-box .button-box button {
  width: 80px;
  height: 80px;
  background-color: #fff;
  position: relative;
  font-size: 16px;
  color: var(--gray-txt-color);
}
.investment-box .button-box button:hover {
  color: var(--main-color);
}
.investment-box .button-box button.on {
  z-index: 2;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  color: var(--main-color);
}
.investment-box .link-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 12px;
}
.investment-box .link-grid .item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.investment-box .link-grid .item .img-box {
  background-color: var(--bg-color);
  width: 78px;
  height: 78px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.investment-box .link-grid .item .img-box img {
  height: 24px;
}
.investment-box .link-grid .item span {
  font-weight: 600;
  color: var(--sub-txt-color);
}
.investment-box .link-grid .item:hover .img-box {
  border: 2px solid var(--main-color);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}
.investment-box .link-grid .item:hover span {
  color: var(--main-color);
}


.middle-menu {
  margin-top: 82px;
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(138,52,81,1) 0%, rgba(35,81,146,1) 25%, rgba(35,81,146,1) 75%, rgba(138,52,81,1) 100%);
}
.middle-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.middle-menu li {
  width: 100%;
  max-width: 200px;
}
.middle-menu a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.middle-menu li:not(:last-child) {
  border-right: 1px solid rgba(217, 217, 217, 0.5);
}
.middle-menu img {
  width: 20px;
  height: 20px;
}
.middle-menu span {
  display: inline-block;
  font-weight: 300;
  color: #fff;
}
.main-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}
.main-tit.items-start {
  align-items: flex-start;
}
.main-tit.mb-0 {
  margin-bottom: 0;
}
.main-tit p:first-child {
  font-size: 32px;
  font-weight: 600;
  color: var(--black-txt-color);
}
.main-tit p:last-child {
  font-weight: 500;
  color: var(--sub-txt-color);
}

.investment-area {
  padding: 82px 0;
}
.inv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.inv-grid .item {
  padding: 24px 16px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
}
.inv-grid .item .tit {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-txt-color);
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.inv-grid .item ul {
  margin-bottom: auto;
}
.inv-grid .item ul li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}
.inv-grid .item ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.inv-grid .item ul li:hover a span:first-child{
  color: var(--main-color);
  text-decoration: underline;
}
.inv-grid .item ul li a span:first-child {
  font-size: 15px;
  font-weight: 500;
  color: var(--black-txt-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.inv-grid .item ul li a span:last-child {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-txt-color);
}
.main-notice-area {
  padding-top: 82px;
}
.more-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.more-box a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.more-box a span {
  color: var(--sub-txt-color);
  text-decoration: underline;
  text-underline-position: under;
}
.more-box a img {
  width: 24px;
  height: 24px;
  transition: .2s linear;
}
.more-box a:hover img {
  transform: rotate(-180deg);
  transition: .2s linear;
}


.nt-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.nt-grid .item {
  padding: 16px 24px;
  overflow: hidden;
}
.nt-grid .item.empty {
  grid-column: auto / span 5;
  padding: 48px;
  text-align: center;
  font-weight: 500;
  border-right: none !important;
}
.nt-grid .item.empty:hover {
  background-color: transparent !important;
}
.nt-grid .item:not(:last-child) {
  border-right: 1px solid var(--border-color);
}
.nt-grid .item:hover {
  background-color: #FAFBFE;
}
.nt-grid .item .tit {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-txt-color);
  margin-bottom: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  height: 52px;
}
.nt-grid .item .date {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-txt-color);
  margin-bottom: 32px;
}
.nt-grid .item .more {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nt-grid .item .more span {
  font-size: 14px;
  color: var(--gray-txt-color);
  margin-right: 10px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.nt-grid .item:hover .more img {
  transform: translateX(0);
  /*
  transform: rotate(-45deg);
  */
  transition: .2s linear;
}
.nt-grid .item .more img {
  height: 10px;
  transition: .2s linear;
  transform: translateX(-23px);
}

.event-area {
  padding-top: 82px;
}
.event-slider {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.event-slider.slider-web {
	display: block;
}
.event-slider.slider-mobile {
	display: none;
}
.event-slider .swiper-slide {
    position: relative;
}
.event-slider .swiper-slide a {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 1;
}
.event-slider .swiper-slide .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/*페이지*/
.page-menu {
  position: fixed;
  top: 93px;
  left: 0;
  z-index: 3;
  width: 100%;
  background-color: var(--black-txt-color);
  border-bottom: 2px solid var(--main-color);
}
.page-menu > .wrap > ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-menu > .wrap > ul > li {
  font-size: 14px;
  width: 100%;
  max-width: 200px;
  height: 50px;
  line-height: 50px;
  font-weight: 500;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.page-menu > .wrap > ul > li:nth-child(2) {
  border-left: none;
}
.page-menu > .wrap > ul > li > button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  color: #fff;
  position: relative;
}
.page-menu > .wrap > ul > li > button img {
  height: 7px;
  transition: .2s linear;
}
.page-menu > .wrap > ul > li > button.pm-on img {
  height: 7px;
  transition: .2s linear;
  transform: rotate(-180deg);
}
.page-area {
  padding-top: 120px;
}
.page-area .page-tit {
  text-align: center;
  margin-bottom: 48px;
}
.page-area .page-tit p:first-child {
  font-size: 32px;
  font-weight: 600;
  color: var(--black-txt-color);
}
.page-area .page-tit p:nth-child(2) {
  font-weight: 500;
  color: var(--black-txt-color);
  margin-top: 24px;
}


.login-box {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.login-box .form-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login-box .form-box .input-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login-box .form-box > button {
  background-color: var(--main-color);
  color: #fff;
  width: 100px;
  min-width: 100px;
  position: relative;
}
.login-box .form-box > button::after {
  content: "";
  display: block;
  padding-bottom: 100px;
}
.login-box .form-box > button span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login-box .save {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.login-box .save label {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.login-box .save label span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-txt-color);
}
.login-box .save input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}
.login-box .save .find {
  display: flex;
  align-items: center;
}
.login-box .save .find a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-txt-color);
}
.login-box .save .find a:hover {
  text-decoration: underline;
  text-underline-position: under;
}
.login-box .save .find a:first-child::after {
  content: "";
  width: 1px;
  height: 12px;
  background-color: var(--gray-txt-color);
  margin: 0 12px;
}
.login-box .register-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.login-box .register-box span {
  display: inline-block;
  color: var(--sub-txt-color);
  font-size: 14px;
  font-weight: 400;
}
.login-box .register-box span b {
  font-weight: 600;
}
.login-box .register-box a {
  font-size: 14px;
  font-weight: 600;
  color: var(--sub-color);
  text-decoration: underline;
  text-underline-position: under;
}

.table-box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.table-box table {
  width: 100%;
  border-top: 2px solid #000;
  border-collapse: collapse !important;
}
.table-box table th {
  padding: 0 24px;
  vertical-align: middle;
  text-align: left;
  background-color: var(--bg-color);
  font-size: 15px;
  font-weight: 500;
  color: var(--black-txt-color);
  width: 200px;
  border: 1px solid var(--border-color);
}
.table-box table td {
  padding: 16px;
  border: 1px solid var(--border-color);
}
.table-box table td .auth {
  font-size: 14px;
  margin-top: 8px;
  color: var(--sub-color);
}
.table-box table td textarea {
  height: 250px;
}
.table-box table th span {
  display: inline-flex;
  position: relative;
}
.table-box table th span.warning::after {
  content: "*";
  color: red;
  padding-left: 5px;
}

.user-btn {
  margin-top: 48px;
}
.age-chk {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.age-chk input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}
.age-chk span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-txt-color);
}
.age-td {
  border: none !important;
}
.terms-content {
  border: none !important;
}
.terms-content > textarea {
  width: 100%;
  height: 350px;
  background-color: var(--bg-color);
  padding: 34px 16px;
  font-size: 14px;
  color: var(--sub-txt-color);
  border: none;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.terms-content > .agreeForm {
    width: 100%;
    height: 350px;
    background-color: var(--bg-color);
    padding: 34px 16px;
    font-size: 14px;
    color: var(--sub-txt-color);
    border: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    overflow-y: auto;
    line-height: 1.2;
}
.input-flex {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap
}
.input-flex > span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-txt-color);
}
.input-flex > span.mc {
  color: var(--main-color);
}
.input-flex .input-inner {
    display: flex;
    align-items: center;
    gap: 4px;
}



/*마이페이지*/
.page-category {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  margin-bottom: 48px;
}
.page-category li {
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--sub-txt-color);
  position: relative;
}
.page-category li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 19px;
  background-color: var(--border-color);
}
.page-category li.on:not(:last-child)::after {
  background-color: unset;
}
.page-category li:hover {
  background-color: var(--sub-color);
  color: #fff;
}
.page-category li.on {
  background-color: var(--sub-color);
  color: #fff;
}
.page-category li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  position: relative;
}
.table-box .expl {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-txt-color);
  margin-top: 16px;
}
.table-box .expl b {
  color: red;
  margin-right: 5px;
}
.location-sub {
  width: calc(100% + 2px);
  position: absolute;
  top: 50px;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 5;
  display: none;
}
.location-sub li {
  background-color: rgba(51, 51, 51, 0.8);
}
.location-sub li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.location-sub li:hover {
  background-color: var(--black-txt-color);
}
.location-sub li.location-on {
  background-color: var(--black-txt-color);
}
.location-sub li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.page-menu > .wrap > ul > li > button.pm-on + .location-sub {
  display: flex;
}


/*다운로드*/
.download-box {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 48px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid var(--border-color);
}
.download-box .img-box.pc {
  width: 100%;
  max-width: 450px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  overflow: hidden;
}
.download-box .img-box.mobile {
  width: 100%;
  max-width: 400px;
}
.download-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.download-box .info-box {
  width: 100%;
}
.download-box .info-box > p {
  font-size: 28px;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 24px;
  color: var(--black-txt-color);
}
.download-box .info-box .expl {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.download-box .info-box .expl .item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.download-box .info-box .expl .item > p {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-txt-color);
}
.download-box .info-box .expl .item .tag {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.download-box .info-box .expl .item .tag span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  height: 50px;
  line-height: 50px;
  font-weight: 600;
  color: var(--sub-txt-color);
}
.download-box .info-box .expl .item .tag span img {
  width: 24px;
  height: 24px;
}
.download-box .info-box .expl .item > span {
  font-weight: 600;
  color: var(--sub-txt-color);
}
.download-box .info-box .btn-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}
.download-box .info-box .btn-wrap a {
  font-weight: 600;
  color: var(--sub-txt-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
}
.download-box .info-box .btn-wrap a img {
  height: 14px;
}
.download-box .info-box .btn-wrap a:first-child {
  background-color: var(--main-color);
  color: #fff;
  width: 180px;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
}
.download-box .info-box .btn-wrap a:first-child:hover {
  opacity: .9;
}
.download-box .info-box .btn-wrap a:nth-child(2) {
  background-color: #fff;
  border: 1px solid var(--border-color);
  width: 180px;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
}
.download-box .info-box .btn-wrap a:nth-child(2):hover {
  background-color: var(--bg-color);
}


/*게시판*/
.board-area .search-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  margin-bottom: 48px;
}

.board-table {
  width: 100%;
  border-top: 2px solid #000;
  border-collapse: collapse !important;
  color: var(--black-txt-color);
  font-size: 15px;
  font-weight: 500;
}
.board-table thead {
  border-bottom: 1px solid 1px solid #000;
}
.board-table thead tr td {
  padding: 16px;
  text-align: center;
}
.board-table tbody .fixed {
  background-color: #F8FBFF;
}
.board-table tbody td {
  padding: 0 16px;
  text-align: center;
  position: relative;
  height: 60px;
  line-height: 60px;
}
.board-table tbody td .clip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: 1px solid var(--border-color);
  width: 25px;
  min-width: 25px;
  height: 25px;
  position: relative;
}
.board-table tbody td .clip .file-cnt {
  width: 15px;
  height: 15px;
  background-color: var(--black-txt-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  position: absolute;
  top: -7px;
  right: -9px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
}
.board-table tbody td .clip img {
  width: 16px;
  height: 16px;
}
.board-table .tit-box {
  text-align: left;
}
.board-table th {
  padding: 0 24px;
  vertical-align: middle;
  text-align: left;
  background-color: var(--bg-color);
  font-size: 15px;
  font-weight: 500;
  color: var(--black-txt-color);
  width: 200px;
  border: 1px solid var(--border-color);
}
.board-table td {
  padding: 16px;
  border: 1px solid var(--border-color);
}
.board-table .tit-box .box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.board-table .tit-box .box:hover .tit {
  text-decoration: underline;
  text-underline-position: under;
}
.board-table .tit-box .box .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.board-table .tit-box .box .new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-color: red;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}
.board-table .tit-box .box .reply {
  width: 42px;
}
/*Pagination*/
.pagination {
  position: relative;
  margin-top: 48px;
}
.pagination > a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination li {
  width: 40px;
  height: 40px;
}
.pagination li.arrow {
  border: 1px solid var(--main-color);
}
.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.pagination li a:not(.arrow):hover {
  color: var(--main-color);
  text-decoration: underline;
}
.pagination li.page-on {
  color: var(--main-color);
  text-decoration: underline;
}
.pagination li a img {
  height: 12px;
  object-fit: cover;
}

.filebox {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filebox .upload-name {
  display: inline-block;
  color: var(--gray-txt-color);
}
.filebox label {
  display: inline-block;
  cursor: pointer;
}
.filebox input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
}

/*이벤트 리스트*/
.event-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.event-list li a {
  display: flex;
  position: relative;
}
.event-list li.empty {
  padding: 48px 16px;
  font-weight: 500;
  text-align: center;
}
.event-list li .img-box {
  width: 100%;
  aspect-ratio: 4 / 1;
  border-radius: 12px;
  overflow: hidden;
}
.event-list li .img-box img {
  width: 100%;
}

/*고객투자시 유의사항*/
.warning-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #000;
}
.warning-list .expl {
  border: 1px solid var(--border-color);
  padding: 24px;
  font-weight: 500;
  color: var(--sub-txt-color);
  line-height: 1.3;
}
.warning-list ul {
  display: flex;
  flex-direction: column;
}
.warning-list ul li {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
}
.warning-list ul li span {
  display: inline-block;
  font-weight: 500;
  line-height: 1.3;
}
.warning-list ul li span b {
  font-weight: 600;
  color: var(--main-color);
}
.warning-list ul li > p {
  color: var(--gray-txt-color);
}


.view-area .tit-box {
  border-top: 1px solid #000;
  padding: 24px 16px;
  border-bottom: 1px solid var(--border-color);
}
.view-area .tit-box > p {
  font-size: 28px;
  font-weight: 500;
  color: var(--black-txt-color);
  line-height: 1.3;
  margin-bottom: 12px;
}
.view-area .info {
  display: flex;
  align-items: center;
}
.view-area .info span {
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  color: var(--sub-txt-color);
}
.view-area .info span:first-child:after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: var(--sub-txt-color);
  margin: 0 16px;
}
.view-area .file-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 24px 16px;
  border-bottom: 1px solid var(--border-color);
}
.view-area .file-box a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.view-area .file-box a span {
  width: 28px;
  height: 28px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-area .file-box a span img {
  width: 16px;
  height: 16px;
}
.view-area .file-box a .file-tit {
  font-size: 14px;
  color: var(--sub-txt-color);
}
.view-area .file-box a:hover .file-tit {
  text-decoration: underline;
  text-underline-position: under;
}
.view-area .editor-content {
  padding: 48px 16px;
  border-bottom: 1px solid var(--border-color);
}
.view-area .editor-content img {
  max-width: 100%;
}

.np-box {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.np-box .item {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--border-color);
}
.np-box .item span {
  display: inline-flex;
  font-size: 15px;
  font-weight: 500;
}
.np-box .item span:first-child {
  color: var(--sub-color);
  width: 100%;
  max-width: 100px;
  min-width: 100px;
}
.np-box .item span:nth-child(2) {
  color: var(--black-txt-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.np-box .item span:nth-child(2) img {
  width: 42px;
  margin-right: 10px;
}
.np-box .item:hover span:nth-child(2) {
  text-decoration: underline;
}

.view-area .btn-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
}

.mobile-quick {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    display: none;
}
.mobile-quick a {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    font-weight: 500;
    color: var(--black-txt-color);
}
.mobile-quick a img {
    width: 40px;
}

/*popup*/
.popup {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 12px 12px rgba(0, 0, 0, 0.1);
}
.popup .popup-img {
    width: 100%;
    max-width: 600px;
    background-color:#fff
}
.popup .popup-img a {
    display: block;
}
.popup .popup-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: bottom;
}
.popup .popup-btn {
    width: 100%;
    height: 50px;
    background-color: var(--black-txt-color);
    display: flex;
    align-items: center;
}
.popup .popup-btn > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.popup .popup-btn > div:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    font-size: 14px;
    font-weight: 400;
}
.popup .popup-btn > div:first-child:hover {
    color: #999;
}
.popup .popup-btn .check_email_bx {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: #ccc;
    font-size: 14px;
    font-weight: 400;
}
.popup .popup-btn .check_email_bx:hover {
    color: #999;
}
.popup .popup-btn .check_email_bx input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    display: none;
}
.popup .popup-btn .check_email_bx label {
    cursor: pointer;
}