
/****************** 브랜드스토리 ******************/
.brand {
    width: 1650px;
    margin:0 auto;
}


/* 타이핑 애니메이션 */
.brand .typing-container {
  height: 130px;
  position: relative;
  max-width: 58%;
  color: var(--color-black-2);
  margin: 100px auto 0;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.4;
}
.brand .swiper {
  border-radius: 20px;
  margin-bottom: 100px;
}


#cursor {
  border-left: 2px solid salmon; /* 커서 스타일 */
  animation: blink 0.7s infinite;
  display: inline-block;
  margin-left: 2px;
  height: 35px; /* 폰트 크기와 동일하게 설정 */
  vertical-align: middle;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* 좌,우 버튼(화살표) */
.brand .swiper-button-next, 
.brand .swiper-button-prev {
  color:var(--color-black-2)
}
/* 좌,우 버튼(화살표) */
.brand .swiper-pagination-bullet {
  background-color:var(--color-gray);
}
.brand .swiper-pagination-bullet-active {
  background-color: var(--color-black-2);
}


/* 설명 영역 - 애니메이션 적용 */
.brand .exp,
.brand .exp_2 {
  max-width: 85%;
  color: var(--color-gray);
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
  text-align: center;
  margin:0 auto 100px;
  opacity: 0; /* 초기 상태: 투명 */
  transform: translateY(20px); /* 초기 위치: 아래쪽으로 20px 이동 */
  animation: fadeInUp 2.3s ease-in-out forwards; /* 애니메이션 적용 */    
  animation-delay: 1.5s; /* 애니메이션 다음에 적용 */   
}
   
.brand .exp:hover,
.brand .exp_2:hover {
  color: var(--color-black);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}   

.brand .exp_2 {
  margin-bottom: 70px;
}

@keyframes fadeInUp {
  from {
    opacity: 0; /* 시작: 투명 */
    transform: translateY(120px); /* 시작: 아래쪽으로 이동 */
  }
  to {
    opacity: 1; /* 끝: 불투명 */
    transform: translateY(0); /* 끝: 원래 위치 */
  }
}








/****************** 로그인 ******************/
.login {
    width: 1650px;
    margin:100px auto 0;
  }
  
  .login-container {
    width: 500px !important;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
    text-align: center;
    width: 100%;
    max-width: 500px; /* 로그인 박스의 최대 너비 */
    box-sizing: border-box; /* 패딩이 너비에 포함되도록 */
}


.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #555;
    font-weight: 700;
}

.input-group input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box; /* 패딩이 너비에 포함되도록 */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group input:focus {
    border-color: var(--color-black-2);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none; /* 포커스 시 기본 아웃라인 제거 */
}

.login-container button {
    width: 100%;
    padding: 14px;
    background-color: var(--color-black-2);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
}

.login-container button:hover {
    background-color: var(--color-gray);
    transform: translateY(-1px); /* 살짝 올라가는 효과 */
}

.login-container button:active {
    transform: translateY(0); /* 클릭 시 원위치 */
}

#loginMessage {
    margin-top: 25px;
    font-size: 0.95em;
    color: #dc3545; /* 에러 메시지 기본 색상 (빨강) */
    font-weight: 600;
}

#loginMessage.success {
    color: #28a745; /* 성공 메시지 색상 (초록) */
}

.links-group {
    margin-top: 25px;
    font-size: 0.9em;
}

.links-group a {
    color: var(--color-black-2);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
}

.links-group a:hover {
    text-decoration: underline;
    color: var(--color-gray);
}

/* 반응형 디자인 */
@media (max-width: 500px) {
    .login-container {
        padding: 30px 20px;
        margin: 20px;
    }
    .login-container button {
        font-size: 1em;
        padding: 12px;
    }
}








/****************** 회원가입 ******************/
.join {
    width: 1650px;
    margin:100px auto 0;
  }
  
.register-container {
    width: 500px !important;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); */
    text-align: center;
    width: 100%;
    max-width: 500px; /* 로그인 박스의 최대 너비 */
    box-sizing: border-box; /* 패딩이 너비에 포함되도록 */
}


.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #555;
    font-weight: 700;
}

.input-group input {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box; /* 패딩이 너비에 포함되도록 */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group input:focus {
    border-color: var(--color-black-2);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none; /* 포커스 시 기본 아웃라인 제거 */
}

.register-container button.confirm {
  width: 150px;
  position: absolute;
  margin-top: -3px;
  margin-left: 16px;
  height: 45px;
  padding: 0;
}
.register-container button {
    width: 100%;
    padding: 14px;
    background-color: var(--color-black-2);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
}

.register-container button:hover {
    background-color: var(--color-gray);
    transform: translateY(-1px); /* 살짝 올라가는 효과 */
}

.register-container button:active {
    transform: translateY(0); /* 클릭 시 원위치 */
}

#loginMessage {
    margin-top: 25px;
    font-size: 0.95em;
    color: #dc3545; /* 에러 메시지 기본 색상 (빨강) */
    font-weight: 600;
}

#loginMessage.success {
    color: #28a745; /* 성공 메시지 색상 (초록) */
}

.links-group {
    margin-top: 25px;
    font-size: 0.9em;
}

.links-group a {
    color: var(--color-black-2);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s ease;
}

.links-group a:hover {
    text-decoration: underline;
    color: var(--color-gray);
}

/* 반응형 디자인 */
@media (max-width: 500px) {
    .register-container {
        padding: 30px 20px;
        margin: 20px;
    }
    .register-container button {
        font-size: 1em;
        padding: 12px;
    }
}








/****************** 장바구니 ******************/
.cart {
    width: 1650px;
    margin:100px auto 0;
  }
.cart-container {
    width: 1650px;
    max-width: 100%; /* 최대 너비 설정으로 너무 넓어지지 않도록 */
    background-color: #fff;
    border-radius: 12px; /* 부드러운 모서리 */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); /* 그림자로 입체감 추가 */
    padding: 30px;
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}

.cart-items {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee; /* 상품 구분선 */
    gap: 15px; /* 아이템 사이 간격 */
}

.cart-item:first-child {
    border-top: none; /* 첫 번째 아이템은 위쪽 선 제거 */
}

.item-image {
    width: 100px;
    height: 100px;
    object-fit: cover; /* 이미지 비율 유지 */
    border-radius: 8px; /* 둥근 이미지 */
    flex-shrink: 0; /* 이미지 크기 유지 */
    margin-right: 20px;
}

.item-details {
    flex-grow: 1; /* 남은 공간을 차지하도록 */
}

.item-name {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

.item-options, .item-price {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

.item-quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-left: auto; /* 오른쪽에 붙도록 */
}

.quantity-btn {
    background-color: #f0f0f0;
    border: none;
    padding: 8px 12px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.item-quantity {
    width: 40px; /* 수량 입력칸 너비 */
    text-align: center;
    border: none;
    font-size: 1em;
    color: #333;
    -moz-appearance: textfield; /* Firefox에서 input type="number"의 화살표 제거 */
    outline: none; /* 포커스 시 테두리 제거 */
}

/* Chrome, Safari, Edge 등에서 input type="number"의 화살표 제거 */
.item-quantity::-webkit-outer-spin-button,
.item-quantity::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.item-total-price {
    font-weight: bold;
    font-size: 1.1em;
    color: var(--color-black-2);
    width: 120px; /* 총계 표시 공간 확보 */
    text-align: right;
    flex-shrink: 0;
}

.item-remove {
    background-color: var(--color-point);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.item-remove:hover {
    background-color: var(--color-point);
}

.cart-summary {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    border: 1px solid #eee;
}

.cart-summary h3 {
    text-align: center;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 1.05em;
    color: #555;
}

.summary-row.total {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--color-black); /* 총 금액은 더 눈에 띄게 */
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 10px;
}

.checkout-button {
    width: 100%;
    background-color: var(--color-point);
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 25px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    letter-spacing: 0.5px;
}

.checkout-button:hover {
    background-color: var(--color-black);
    transform: translateY(-2px); /* 살짝 올라가는 효과 */
}

.checkout-button:active {
    transform: translateY(0); /* 클릭 시 원위치 */
}

/* 모바일 화면을 위한 반응형 디자인 */
@media (max-width: 768px) {
  .cart-item {
      flex-wrap: wrap; /* 작은 화면에서 줄바꿈 */
      justify-content: center; /* 아이템 중앙 정렬 */
      text-align: center;
  }

  .item-image {
      width: 80px;
      height: 80px;
      margin-bottom: 10px;
  }

  .item-details {
      width: 100%; /* 디테일 정보는 전체 너비 사용 */
      order: 1; /* 이미지 다음으로 표시 */
      margin-bottom: 10px;
  }

  .item-quantity-controls {
      order: 2;
      margin-left: 0; /* 가운데 정렬 */
  }
  
  .item-total-price {
      order: 3;
      width: 100%;
      text-align: center;
      margin-top: 10px;
  }

  .item-remove {
      order: 4;
      width: 100%; /* 버튼도 전체 너비 사용 */
      margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .cart-container {
      padding: 20px;
  }
  h2 {
      font-size: 1.8em;
  }
  .item-name {
      font-size: 1em;
  }
  .item-options, .item-price, .summary-row span {
      font-size: 0.85em;
  }
  .item-total-price {
      font-size: 1em;
  }
  .checkout-button {
      font-size: 1.1em;
      padding: 12px 15px;
  }
}        








/****************** 제품안내 ******************/
.product {
    width: 1650px;
    margin:100px auto 0;
  }
.product-container {
    width: 1650px;
    max-width: 100%; /* 최대 너비 설정으로 너무 넓어지지 않도록 */
    background-color: #fff;
    border-radius: 12px; /* 부드러운 모서리 */
    padding: 30px;
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}

.normalmenu {
    margin: 50px auto 0;
}

.normalmenu .function {
    margin: 0;
    padding: 0 0 20px 0;
    line-height: 20px;
    border: 0;
    border-bottom: 1px solid #e9e9e9;
    text-align: left;
    overflow: hidden;
}

.normalmenu .prdCount {
    text-align: left;
    padding: 0;
    font-size: 16px;
    color: var(--color-black-2);
    line-height: 20px;
}

.normalmenu .sort {
    float: right;
}

.normalmenu .prdCount strong {
    color: #1a1a1a;
    font-weight: 700;
}

.normalmenu ul#type {
    margin: 0;
}

.normalmenu ul#type li {
    padding: 0;
    background: none;
}

.normalmenu ul#type li a {
    margin-left: 20px;
    font-size: 13px;
    color: #8a8a8a;
    font-weight: 400;
    line-height: 20px;
}

.normalmenu ul#type li a:hover {
    color: #1a1a1a;
}

.normalmenu ul#type li a.sort {
    font-weight: 500 !important;
    color: #1a1a1a;
}

.ec-base-product {
    margin: 22px 0 0;
}

.ec-base-product .title {
    margin: 0 0 17px;
}

.ec-base-product .title h2 {
    font-weight: normal;
    font-size: 20px;
    color: #2e2e2e;
    text-align: center;
}

.ec-base-product .title h3 {
    font-weight: normal;
    font-size: 20px;
    color: #2e2e2e;
    text-align: center;
}

.ec-base-product img {
    vertical-align: middle;
}

.ec-base-product a[href^='/product/detail.html'] > img {
    border: 1px solid #ececec;
}

.ec-base-product .prdList {
    width: 100%;
    min-width: 756px;
    margin: -20px 0 0;
    font-size: 0;
    line-height: 0;
}

.ec-base-product .prdList > li {
    position: relative;
    display: inline-block;
    margin: 30px 0 20px;
    color: #757575;
    vertical-align: top;
}

.ec-base-product .prdList .chk {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    display: block;
    margin: 0 0 10px;
}

.ec-base-product .prdList .thumbnail {
    position: relative;
    margin: 10px 7px;
    text-align: center;
}

.ec-base-product .prdList .thumbnail .prdImg {
    position: relative;
}

.ec-base-product .prdList .thumbnail a img {
    width: 100%;
    box-sizing: border-box;
}

.ec-base-product .prdList .thumbnail .wish {
    position: absolute;
    right: 3px;
    bottom: 4px;
    z-index: 1;
    cursor: pointer;
}

.ec-base-product .prdList .thumbnail .prdIcon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.ec-base-product .prdList .thumbnail .icon {
    margin: 10px 0 0;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: middle;
}

.ec-base-product .prdList .thumbnail .icon:after {
    content: "";
    display: block;
    clear: both;
}

.ec-base-product .prdList .thumbnail .promotion {
    float: left;
    margin: 0 0 4px;
    text-align: left;
}

.ec-base-product .prdList .thumbnail .promotion img {
    margin: 0 4px 0 0;
}

.ec-base-product .prdList .thumbnail .button {
    float: right;
    margin: 0 0 4px;
}

.ec-base-product .prdList .thumbnail .button img {
    margin: 0 2px 0 0;
    cursor: pointer;
}

.ec-base-product .prdList .thumbnail .button .option {
    display: inline;
    position: relative;
}

.ec-base-product .prdList .thumbnail .button .likeButton {
    display: inline-block;
    margin: 0 5px;
}

.ec-base-product .prdList .thumbnail .button .likeButton button {
    font-family: verdana;
    color: #9a9a9a;
    letter-spacing: -1px;
    background: none;
}

.ec-base-product .prdList .thumbnail .button .likeButton button img {
    margin: 0;
    vertical-align: middle;
}

.ec-base-product .prdList .thumbnail .button .likeButton button strong {
    height: 16px;
    vertical-align: middle;
}

.ec-base-product .prdList .thumbnail .button .likeButton.selected button {
    color: #353535;
}

.ec-base-product .prdList .description {
    margin: 0 auto;
    padding: 0 7px;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}

.ec-base-product .prdList .description .name {
    display: block;
    text-align: left;
    font-weight: normal;
}

.ec-base-product .prdList .description .name a {
    color: #2e2e2e;
}

.ec-base-product .prdList .description .mileage {
    display: block;
}

.ec-base-product .prdList .description span.grid {
    display: block;
}

.ec-base-product ul.grid2 > li {
    width: 50%;
}

.ec-base-product ul.grid3 > li {
    width: 33.33%;
}

.ec-base-product ul.grid4 > li {
    width: 25%;
}

.ec-base-product ul.grid5 > li {
    width: 20%;
}

.ec-base-product ul.grid3 > li .color {
    max-width: 230px;
}

.ec-base-product ul.grid4 > li .color {
    max-width: 190px;
}

.ec-base-product ul.grid5 > li .color {
    max-width: 130px;
}

.ec-base-product ul.grid2 li:after {
    content: "";
    display: block;
    clear: both;
}

.ec-base-product ul.grid2 li .thumbnail {
    float: left;
    width: 220px;
    text-align: left;
    margin: 0;
}

.ec-base-product ul.grid2 li .description {
    float: left;
    width: 247px;
    padding: 0 20px;
}

.ec-base-product ul.grid2 li .description .chk {
    position: static;
    text-align: left;
}

.ec-base-product .spec {
    margin: 0;
}

.ec-base-product .spec li {
    text-align: left;
    line-height: 24px;
}

/* 소비자가 */
.ec-base-product .spec li.custom span {
    font-size: 14px;
    color: var(--color-gray);
    font-weight: normal;
    text-decoration: line-through;
}
/* 판매가 */
.ec-base-product .spec li.price .pricedata {
    font-size: 18px;
    color: var(--color-black-2);
    font-weight: 600;
}
/* 할인율 */
.ec-base-product .prdList .sale_box {
    display: inline-block;
    margin-left: 8px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #E65550;
    letter-spacing: -0.02em;
}

.ec-base-product .spec li:first-child {
    margin-top: 16px;
    display: block;
}
.ec-base-product .spec li .title {
    font-weight: normal;
    vertical-align: top;
}

.ec-base-product .spec li .title span {
    vertical-align: top;
}

.ec-base-product .spec li .color {
    overflow: hidden;
    display: inline-block;
    margin: 3px 0 0 0;
}

.ec-base-product .spec li .chips {
    float: left;
    width: 10px;
    height: 10px;
    margin: 0 2px 2px 0;
    border: 1px solid #e3e3e3;
    font-size: 0;
    line-height: 0;
}

.ec-base-product .discountPeriod {
    display: inline-block;
    z-index: 10;
    position: relative;
    width: 55px;
    height: 19px;
    vertical-align: middle;
}

.ec-base-product .layerDiscountPeriod {
    left: 50%;
    top: 26px;
    width: 247px;
    margin: 0 0 0 -124px;
}

.ec-base-product .layerDiscountPeriod strong.title {
    display: block;
    margin: 0 0 12px;
    padding: 0 35px 0 0;
    font-weight: bold;
    color: #2e2e2e;
}

.ec-base-product .layerDiscountPeriod .content p {
    margin: 2px 0 0;
    font-size: 11px;
    line-height: 16px;
    color: #757575;
    letter-spacing: -1px;
}

.ec-base-product .layerDiscountPeriod .content p strong {
    font-weight: normal;
    font-size: 12px;
    color: #2e2e2e;
}

.ec-base-product .layerDiscountPeriod .content p strong span {
    font-size: 11px;
}

.ec-base-product .prdList .shippingFee {
    position: relative;
    display: inline-block;
}

.ec-base-product .prdList .shippingFee .button {
    display: inline-block;
    float: none;
}

.ec-base-product .prdList .shippingFee .ec-base-tooltip {
    z-index: 11;
    display: block;
    margin: 0 0 0 -170px;
    width: 360px;
}

.ec-base-product .prdList .shippingFee .ec-base-tooltip table th {
    width: 40px;
}

.ec-base-product .prdList .shippingFee .ec-base-tooltip table th,.ec-base-product .prdList .shippingFee .ec-base-tooltip table td {
    padding: 7px 10px 8px 10px;
}

.ec-base-product .btnTooltip {
    position: relative;
    display: inline-block;
}








/****************** 육아정보 ******************/
.babyinfo {
    width: 1650px;
    margin:100px auto 0;
  }
  
  .babyinfo-container {
    width: 1650px;
    max-width: 100%; /* 최대 너비 설정으로 너무 넓어지지 않도록 */
    background-color: #fff;
    border-radius: 12px; /* 부드러운 모서리 */
    padding: 30px;
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}








/****************** 매거진 ******************/
.magazine {
    width: 1650px;
    margin:100px auto 0;
  }

 .magazine-container {
    width: 1650px;
    max-width: 100%; /* 최대 너비 설정으로 너무 넓어지지 않도록 */
    background-color: #fff;
    border-radius: 12px; /* 부드러운 모서리 */
    padding: 10px 0 0;
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}
.magazine_cate > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0 dashed #e9e9e9;
    padding-bottom: 64px;
    margin-bottom: 64px;
}

.magazine_cate > ul li {
    margin-right: 32px;
}

.magazine_cate > ul li:last-child {
    margin-right: 0px;
}

.magazine_cate > ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.magazine_cate > ul li a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border: 1px solid #E9E9E9;
    border-radius: 24px;
    box-sizing: border-box;
    transition: border 0.5s ,box-shadow 0.5s;
    position: relative;
}

.magazine_cate > ul li.on a .icon {
    border: 1px solid var(--color-black-2);
    box-shadow: 0px 0px 0px 2px #1a1a1a inset;
    transition: none;
}

.magazine_cate > ul li a .icon:hover {
    border: 1px solid var(--color-black-2);
    box-shadow: 0px 0px 0px 2px var(--color-black-2) inset;
}

.magazine_cate > ul li a .sub {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black-2);
}

.xans-board-readpackage .magazine_cate > ul {
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}




.mgzn_list {
    clear: both;
    overflow: hidden;
}

.mgzn_list ul {
    text-align: left;
    width: 1650px;
    margin: -20px 0 0;
    font-size: 0;
    line-height: 0;
}

.mgzn_list li {
    display: inline-block;
    *display: inline;
    *zoom:1;
    width: 24.5%;
    padding-right: 0.5%;
    margin: 20px 0 40px 0;
    font-size: 12px;
    color: #757575;
    line-height: 18px;
    vertical-align: top;
}


.mgzn_list li .imgLink img {
    display: block;
    width: 350px;
    height: 350px;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto 10px;
    border: 1px solid #ececec;
    border-radius: 25px;
}

.mgzn_list li .boardChk {
    display: block;
    margin: 0 auto 10px;
}

.mgzn_list li a.imgLink,.mgzn_list li a.imgLink:hover {
    display: block;
    margin: 0 auto;
    color: #2e2e2e;
}
.mgzn_list li .subject {
    width: 350px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black-2);
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 라인 수 */
    -webkit-box-orient: vertical;
}

.mgzn_list li .exp {
    width: 350px;
    font-size: 16px;
    font-weight: 600;
    color: var(--normal-lightgray);
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 라인 수 */
    -webkit-box-orient: vertical;
}

.mgzn_list li span {
    display: block;
    margin: 15px auto 0;
}

.mgzn_list li strong {
    font-weight: normal;
}

.mgzn_list li em {
    display: block;
    font-style: normal;
}








/****************** 이벤트 ******************/
.event {
    width: 1650px;
    margin:100px auto 0;
  }

 .event-container {
    width: 1650px;
    max-width: 100%; /* 최대 너비 설정으로 너무 넓어지지 않도록 */
    background-color: #fff;
    border-radius: 12px; /* 부드러운 모서리 */
    padding: 10px 0 0;
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}
.event_cate > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0 dashed #e9e9e9;
    padding-bottom: 64px;
    margin-bottom: 64px;
}

.event_cate > ul li {
    margin-right: 32px;
}

.event_cate > ul li:last-child {
    margin-right: 0px;
}

.event_cate > ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.event_cate > ul li a .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border: 1px solid #E9E9E9;
    border-radius: 24px;
    box-sizing: border-box;
    transition: border 0.5s ,box-shadow 0.5s;
    position: relative;
}

.event_cate > ul li.on a .icon {
    border: 1px solid var(--color-black-2);
    box-shadow: 0px 0px 0px 2px #1a1a1a inset;
    transition: none;
}

.event_cate > ul li a .icon:hover {
    border: 1px solid var(--color-black-2);
    box-shadow: 0px 0px 0px 2px var(--color-black-2) inset;
}

.event_cate > ul li a .sub {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-black-2);
}
.event_cate > ul li img {
    max-width: 60%;
    max-height: 60%;
}


.event_list {
    clear: both;
    overflow: hidden;
}

.event_list ul {
    text-align: left;
    width: 1650px;
    margin: -20px 0 0;
    font-size: 0;
    line-height: 0;
}

.event_list li {
    display: inline-block;
    *display: inline;
    *zoom:1;
    width: 24.5%;
    padding-right: 0.5%;
    margin: 20px 0 40px 0;
    font-size: 12px;
    color: #757575;
    line-height: 18px;
    vertical-align: top;
}


.event_list li .imgLink img {
    display: block;
    width: 350px;
    height: 350px;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto 10px;
    border: 1px solid #ececec;
    border-radius: 25px;
}

.event_list li .boardChk {
    display: block;
    margin: 0 auto 10px;
}

.event_list li a.imgLink,.event_list li a.imgLink:hover {
    display: block;
    margin: 0 auto;
    color: #2e2e2e;
}
.event_list li .subject {
    width: 350px;
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black-2);
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 라인 수 */
    -webkit-box-orient: vertical;
}

.event_list li .exp {
    width: 350px;
    font-size: 16px;
    font-weight: 600;
    color: var(--normal-lightgray);
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 라인 수 */
    -webkit-box-orient: vertical;
}

.event_list li span {
    display: block;
    margin: 15px auto 0;
}

.event_list li strong {
    font-weight: normal;
}

.event_list li em {
    display: block;
    font-style: normal;
}








/****************** 공지사항 ******************/
.notice {
    width: 1650px;
    margin:100px auto 0;
  }

 .notice-container {
    width: 1350px;
    margin: 0 auto;
    max-width: 100%; /* 최대 너비 설정으로 너무 넓어지지 않도록 */
    padding: 10px 0 0;
    box-sizing: border-box; /* 패딩 포함 크기 계산 */
}

.ec-base-table table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}
.ec-base-table .message {
    border: 1px solid #e9e9e9;
}

.ec-base-table td {
    border-top: 1px dashed #e9e9e9;
	vertical-align: middle;
	text-align: center;
}

.ec-base-table thead th {
    border-bottom: 0;
    padding: 24px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #1a1a1a;
    background-color: #F5F5F5;
}

.ec-base-table {
    clear: both;
	border: 0;
}

.ec-base-table .subject img {
    margin: 0 1px;
}

.ec-base-table .thumb a {
    overflow: hidden;
}

.ec-base-table .thumb img {
    width: 46px;
    float: left;
}

.ec-base-table .thumb span {
    float: left;
    width: 80px;
    padding: 0 0 0 8px;
    text-align: left;
}


.ec-base-table.typeList tbody:first-of-type tr:first-child td {
    border-top: 0;
}

.ec-base-table.typeList tbody.xans-board-notice tr td:first-child {
    color: #E65550;
}

.ec-base-table.typeList td {
    padding: 28px 0;
    font-size: 16px;
    line-height: 24px;
    color: #1A1A1A;
    font-weight: 400;
    border-color: #e9e9e9 !important;
}

.ec-base-table.typeList td:first-child,.ec-base-table.typeList td.subject {
    color: #1a1a1a;
    text-align: left;
}

.ec-base-table.typeList td.subject strong {
    font-weight: 400;
}

.ec-base-table.typeList td .txtNum {
    color: #9a9a9a;
    font-size: 14px;
}

.ec-base-table.typeList .center td:not(.thumb).left {
    padding-left: 32px;
}

.ec-base-table.typeList .center td.thumb {
    padding-left: 24px;
}

.ec-base-table.typeList .center td.thumb img {
    width: 80px;
    height: 80px;
    border: 0;
    box-sizing: border-box;
    background-color: #f5f5f5;
    border-radius: 16px;
}

.ec-base-box.typeProduct {
    border-color: #e9e9e9;
    margin-bottom: 0px;
    padding: 32px 0;
    border-radius: 24px;
}

.ec-base-box.typeProduct .thumbnail {
    display: block;
    padding: 0;
    margin: 0 auto 24px;
    width: 80px;
}

.ec-base-box.typeProduct .thumbnail img {
    width: 80px;
    height: 80px;
    border: 0px;
    box-sizing: border-box;
    background-color: #f5f5f5;
    border-radius: 16px;
}

.ec-base-box.typeProduct .information {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
}

.ec-base-box.typeProduct .information h3 {
    margin: 0 0 8px;
}

.ec-base-box.typeProduct .information h3 a {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: #1a1a1a;
}

.ec-base-box.typeProduct .information .price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ec-base-box.typeProduct .information .icon img {
    margin: 16px 2px 0;
}

.ec-base-box.typeProduct + form .ec-base-table table {
    border-top: none;
}

.ec-base-table .bd_title {
    text-align: center;
}

.ec-base-table .bd_title td {
    padding: 48px 0;
}

.ec-base-table .bd_title .t01 {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.ec-base-table .bd_title .t01 span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #8A8A8A;
    margin-top: 8px;
}

.ec-base-table .bd_title .t02 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-base-table .bd_title .t02 span {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #8a8a8a;
}

.ec-base-table .bd_title .t02 span:not(:first-child):before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #ddd;
    margin: 0 12px;
}

.ec-base-table .bd_content td {
    padding: 40px 0 40px;
}

.ec-base-table .bd_content td p {
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    font-family: 'Montserrat','Pretendard',sans-serif !important;
}

.ec-base-table .bd_content td p span {
    font-size: 16px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    font-family: 'Montserrat','Pretendard',sans-serif !important;
}


/* 페이징 */

.ec-base-paginate {
    text-align: center;
    margin: 40px 0 40px !important;
}

.ec-base-paginate li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.02em;
    font-weight: 400;
}


.ec-base-paginate li {
    border: 0;
    display: inline-block;
    margin: 0 0 0 -1px;
    font-size: 12px;
    color: #757575;
    vertical-align: top;    
}

.ec-base-paginate li:first-child {
    margin-left: 8px;
}

.ec-base-paginate > ol {
    margin: 0 8px;
}

.ec-base-paginate > a {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
}

.ec-base-paginate > a img {
    display: none;
}

.ec-base-paginate > a:after {
    content: url('./imgs/page_prev.svg');
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.ec-base-paginate > a.first:after {
    content: url('./imgs/page_first.svg');
}

.ec-base-paginate > a.last:after {
    content: url('./imgs/page_last.svg');
}

.ec-base-paginate > ol + a:after {
    content: url('./imgs/page_next.svg');
}








/* 공지사항 리스트 */
.accordion{}
.accordion__li { border-bottom:1px solid #eee; }
.accordion__li .question{ position:relative; padding:20px; cursor:pointer; }
.accordion__li .question .listnum { margin-right:2%; } /* 리스트넘버 */
.accordion__li .question .date { float: right; margin-right:3.5%;} /* 게시일자 */
.accordion__li .answer { display:none; padding:20px 30px; background:#f5f5f5; color:#777; line-height:1.6; }
.accordion__li .ico-plus{ position:absolute; right:20px; width:13px; height:13px; top:24px; transition:transform 0.3s; }
.accordion__li .ico-plus:before { content:''; position:absolute; left:0; width:100%; height:2px; top:50%; margin-top:-1px; background:#000; transform:rotate(0deg); transition:transform 0.3s 0.3s;}
.accordion__li .ico-plus:after { content:''; position:absolute; left:0; width:100%; height:2px; top:50%; margin-top:-1px; background:#000; transform:rotate(90deg); transition:transform 0.3s 0.3s;}

.accordion__li.is-on .ico-plus{transform:rotate(-45deg)}
.accordion__li.is-on .ico-plus:before{transform:rotate(45deg)}
.accordion__li.is-on .ico-plus:after{transform:rotate(45deg)}


.imageye-selected {
    outline: 2px solid black !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}