@charset "utf-8";

/*
@font-face {
    font-family: 'Gmarket_Sans';    font-style: normal;    font-weight: 700;
    url('https://www.alpha.co.kr/common/fonts/GmarketSansBold.woff2') format('woff2'), 
    url('https//www.alpha.co.kr/common/fonts//GmarketSansBold.woff') format('woff'); 
}
@font-face {
    font-family: 'Gmarket_Sans';    font-style: normal;    font-weight: 500;
    url('https//www.alpha.co.kr/common/fonts/GmarketSansMedium.woff2') format('woff2'), 
    url('https//www.alpha.co.kr/common/fonts/GmarketSansMedium.woff') format('woff'); 
@font-face {
    font-family: 'Gmarket_Sans';    font-style: normal;    font-weight: 300;
    url('https//www.alpha.co.kr/common/fonts/GmarketSansLight.woff2') format('woff2'), 
    url('https//www.alpha.co.kr/common/fonts/GmarketSansLight.woff') format('woff'); 
}
*/

/* 스크롤바 전체 영역 */
::-webkit-scrollbar {
  width: 8px;       /* 세로 스크롤바 너비 */
  height: 8px;      /* 가로 스크롤바 높이 */
}

/* 스크롤바 막대 */
::-webkit-scrollbar-thumb {
  background-color: #f68f02;     /* 색상 */
  border-radius: 0px;         /* 둥글게 */
}

/* 스크롤바 트랙 */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;  /* 트랙 색상 */
}

/* 마우스 오버 시 스크롤바 막대 색상 */
::-webkit-scrollbar-thumb:hover {
  background-color: #003d97;
}

/*a {
    all: unset;
    cursor: pointer;
    color: inherit !important;
}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1;
}


html, body {
    width: 100%;
    min-width: 1580px;
    /*font-family: 'Gmarket_Sans', sans-serif !important;*/
    font-family: 'Noto Sans', sans-serif;
    color: #666;
}

body.Plan_modal-open,
body.category-open {
    overflow: hidden;
}

/* 폰트 */
.serif_text {
    font-family: Georgia, "Times New Roman", serif;
}

.sans-serif_text {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300 !important;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: 900 !important;
}
/* 폰트 */

/* 여백 */
.empty_40 {
    margin-bottom: 40px !important;
}

.empty_60 {
    margin-bottom: 60px !important;
}

.empty_80 {
    margin-bottom: 80px !important;
}			

.empty_120 {
    margin-bottom: 120px !important;
}

.empty_140 {
    margin-bottom: 140px !important;
}

.empty_160 {
    margin-bottom: 160px !important;
}	
/* 여백 */


/*상단*/
/* GnB */
.GnB-warp {
    position: relative;
    width: 100%;
    min-width: 1580px;
    height: 120px;
    padding: 10px 45px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    z-index: 999;
    flex-direction:row;
    flex-wrap: wrap;
    border-bottom: 1px solid #e2e2e2;}

.GnB-warp div {
    box-sizing: border-box;
    text-align: left;}


.GnB-warp > div:nth-of-type(1) {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}  

.GnB-warp div:nth-of-type(1) div {
}

.GnB-warp div:nth-of-type(1) img {
    width: 100%;}                 

.GnB-warp div:nth-of-type(1) .serch {
    position: relative;
    padding: 0 10px 0 0;
    width: 70%;}                    

.GnB-warp div:nth-of-type(1) .serch input {
    border: 1px solid #1e5895;
    padding: 25px 20px;
    width: 100%;
    text-align: left;
    background-color: #fff;
    border-radius: 50px;
    box-sizing: border-box;
}

.GnB-warp div:nth-of-type(1) .serch input:focus {
    outline: none;}            

.serch input::placeholder {
  color: #ccc;        /* 원하는 색상 */
  opacity: 1;         /* 일부 브라우저에서 투명도 적용 방지 */
}

.GnB-warp div:nth-of-type(1) .serch .serch_bu {
    position: absolute;
    bottom: 16px;
    right: 24px;
    width: 20px;} 		

.GnB-warp > div:nth-of-type(2) {
    width: 40%;
    text-align: right;} 	

.GnB-warp > div:nth-of-type(2) span {
    display: inline-block;
    font-size: 0.8rem;
    padding: 0 0 0 10px;}	
/* GnB */
    

/* 서브브랜드 드랍다운 */
.other_brand_dropdown {
    position: relative;
    display: inline-block;
    width: 20%;
}

.other_brand_dropdown-button {
    padding: 14px 20px;
    background: linear-gradient(45deg, #fc4a1a, #f7b733);
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 50px;
}

.other_brand_dropdown-button:hover {
    background-color: #ee4323;
}

.other_brand_dropdown-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px); 
    transition: all 0.3s ease;
    position: absolute;
    top: 130%;
    left: 0;
    background-color: white;
    width: 106px;
    border: 1px solid #ccc;
    border-radius: 10px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
}

.other_brand_dropdown.open .other_brand_dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* 자연스럽게 아래로 */
    pointer-events: auto;
}

.other_brand_dropdown-content span {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    cursor: pointer;
}

.other_brand_dropdown-content span:hover {
    background-color: #f2f2f2;
}

.other_brand_dropdown-content span:last-of-type {
    border-bottom: 0px;
}

.other_brand_dropdown-button .arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 10px;
}

.other_brand_dropdown.open .arrow-icon {
    transform: rotate(90deg); 
}	
/* 서브브랜드 드랍다운 */


/*인기검색어*/
.keyword-rolling-wrap {
    position: relative;
    width: max-content;
    font-family: sans-serif;
    width: 20%;
    padding: 7px 20px;		
}

.keyword-rolling {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.keyword-rolling span {
    padding: 0 !important;
}

.keyword-rolling .arrow {
    width: 10%;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.keyword-rolling.open .arrow {
    transform: rotate(90deg);
}

.keyword-rolling-wrap .word {
    width: 90%;
    transition: opacity 0.3s ease;
}

.keyword-rolling.open + .dropdown-list {
    display: block;
}

.keyword-rolling-wrap .dropdown-list {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px); 
    transition: all 0.3s ease;
    position: absolute;
    top: 130%;
    left: 0;
    background-color: white;
    min-width: 160px;
    border: 1px solid #ccc;
    border-radius: 10px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
    z-index: 1000;
    pointer-events: none;
    overflow: hidden;
    box-sizing: border-box;
}

.keyword-rolling.open + .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* 자연스럽게 아래로 */
    pointer-events: auto;
}

.keyword-rolling-wrap .dropdown-list  span {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #ccc;
    font-size: 12px;
    cursor: pointer;
}

.keyword-rolling-wrap .dropdown-list  span:hover {
    background-color: #f2f2f2;
}

.keyword-rolling-wrap .dropdown-list  span:last-of-type {
    border-bottom: 0px;
}	

.keyword-rolling-wrap .dropdown-list .title {
    background-color: #f12711;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}	
/*인기검색어*/


/*로고*/
.logo {
    width: 200px;
    padding-right: 20px;
    cursor: pointer;
}
/*로고*/

/*상단띠배너*/
.top-line_banner {
    width: 100%;
    min-width: 1580px;
    height: 30px;
    padding: 0 45px;
    background: linear-gradient(270deg, #f12711, #f5af19);
    background-size: 400% 400%;
    animation: top-line_gradientAnimation 10s ease infinite;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    box-sizing: border-box;
    z-index: 999;
}

.top-line_banner .close-btn {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

@keyframes top-line_gradientAnimation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}	
/*상단띠배너*/


/*서브 GnB*/
.sub_GnB {
    width: 100%;
    min-width: 1580px;
    height: 50px;
    padding: 0 45px;
    background-color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    top: 0;    
    font-size: 14px;
    font-weight: bold;
    box-sizing: border-box;
    border-bottom: 1px solid #e2e2e2;
    z-index: 99;
}

.sub_GnB_menu {
    margin: 0 auto;
    width: 80%; 
    display: flex;
    justify-content: center;
}

.sub_GnB_menu span {
    padding: 0 50px;
    cursor: pointer;
}	

.sub_GnB .serch {
    display: none;
}

.is-sticky {
    background-color:#f68f02;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.is-sticky .serch {
    display:block;
}

.is-sticky .sub_GnB_menu {
    width: 70% !important;
    color: #fff;
}

.is-sticky .sub_GnB_menu span {
    padding: 0 30px;
}

.is-sticky img {
    width: 100%;}                 

.is-sticky .serch {
    position: relative;
    padding: 0 10px 0 0;
    width: 15%;}                    

.is-sticky .serch input {
    border: 1px solid #e2e2e2;
    padding: 10px 20px;
    width: 100%;
    text-align: left;
    background-color: #f5f5f5;
    border-radius: 50px;
    box-sizing: border-box;
}

.is-sticky .serch input:focus {
    outline: none;}            


.is-sticky .serch .serch_bu {
    position: absolute;
    bottom: 7px;
    right: 24px;
    width: 20px;} 	

.is-sticky #categoryBtn {
    position:relative;
    top: 0;
    width: 15%;
    left: 0;
    color: #fff;
}    

.is-sticky #categoryBtn span img  {
  filter: invert(100%) brightness(1000%);
}
/*서브 GnB*/


/*전체카테고리*/
#categoryOverlay {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 98;
}

#categoryOverlay.show {
    opacity: 1;
    visibility: visible;
}	

#categoryBtn {
    position: absolute;
    top: 0;
    left: 45px;
    height: 100%;		
    /*padding: 10px 20px;
    background-color: #333;
    color: #fff;*/
    cursor: pointer;
    display: flex;
    align-items: center;
}

#categoryBtn span {
    display: flex;
    align-items: center;
}

#categoryBtn span img {
    width: 20%;
}	

#categoryBox {
    width: 100%;
    height: 600px;
    position: absolute;
    top: 46px;
    left: 0;
    background: #f9f9f9;
    border-bottom: 1px solid #e2e2e2;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#categoryBox.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.depth1, .depth2, .depth3 {
    padding: 20px;
    overflow-y: auto;
}

.depth1 {
    width: 15%;
    background: #e6e6e6;
    border-right: 1px solid #ccc;
}

.depth2 {
    width: 15%;
    background: #f5f5f5;
    border-right: 1px solid #ccc;
}

.depth3 {
    padding: 30px 40px;
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    background: #f9f9f9;
}

.depth1 li, .depth2 li {
    list-style: none;
    padding: 8px 10px;
    cursor: pointer;
}

.depth1 li.active, .depth2 li.active {
    background-color: #ffebcc;
    font-weight: bold;
}

.depth3 ul {
    flex-shrink: 0;         /* 줄어들지 않도록 */
    width: 16.66%;           /* 고정 너비 (조절 가능) */
    padding-right: 10px;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.depth3 h5 {	
    font-size: 14px;
    margin-bottom: 5px;
}

.depth3 h5::before {
    content: "▪️ ";
    margin-right: 2px;
    font-size: 8px;
    list-style: 13px;
}			

.depth3 li {
    list-style: none;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
    padding-left: 30px;
    color: #9e9e9e;
}

.depth3 li a {
    text-decoration: none;
}

.depth2 ul,
.depth3 > div {
    display: none;
}

.depth2 ul.active,
.depth3 > div.active {
    display: block;
    width: 100%;
}

.depth3 > div.active {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}    
/*전체카테고리*/
/*상단*/

/* 하단 */
.Alpha_footer {
    width: 100%;
    margin: 0 auto;
    padding: 45px 45px 120px 45px;
    box-sizing: border-box;
    background-color: #f5f5f5;
    overflow: hidden;		
}

.Alpha_footer span {
    display: block;
    width: 100%;
    font-size: 12px;
}	

.Alpha_footer .menu {
    padding-bottom: 40px;
    margin-bottom: 60px;
    border-bottom: 1px solid #d0d0d0;
}

.Alpha_footer .menu,
.Alpha_footer .info	 {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;		
}	

.Alpha_footer .menu dl {
    width: 20%;
}

.Alpha_footer .menu dl p {
    padding-bottom: 15px;
    font-weight: 900;
    font-size: 20px;
}

.Alpha_footer .menu dt {
    display: block;
    font-size: 14px;
    padding-left: 10px;
    padding-bottom: 3px;
}	
    
.Alpha_footer .menu > div:nth-of-type(1),
.Alpha_footer .info > div:nth-of-type(1)	 {
    width: 20%;
}

.Alpha_footer .menu > div:nth-of-type(2),
.Alpha_footer .info > div:nth-of-type(2)	 {
    width: 55%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;		
}

.Alpha_footer .menu > div:nth-of-type(3),
.Alpha_footer .info > div:nth-of-type(3)	 {
    width: 25%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    text-align: right;
    flex-direction: column;
}

.Alpha_footer .menu > div:nth-of-type(1) span:nth-of-type(1) {
    font-size: 24px;
    font-weight: 500;	
}

.Alpha_footer .menu > div:nth-of-type(1) span:nth-of-type(2) {
    font-size: 50px;
    font-weight: 900;	
}

.Alpha_footer .menu > div:nth-of-type(1) span:nth-of-type(3) {
    padding: 6px 0;
    font-size: 12px;
}	

.Alpha_footer .menu > div:nth-of-type(1) span:nth-of-type(4) {
    font-size: 16px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 10px;
    background-color: #d2d2d2;
    width:fit-content;
}

.Alpha_footer .menu > div > div {
    text-align: center;
    position: relative;
} 	

.Alpha_footer .menu > div > div span:nth-of-type(1) {
    padding-top: 5px;
    font-size: 16px;
    font-weight: 700;
}
.Alpha_footer .menu > div > div span:nth-of-type(2) {
    font-size: 12px;
}

.Alpha_footer .menu span:nth-of-type(4):hover {
    background-color: #ccc;
}	

.Alpha_footer .SNS_Icons {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;}

.Alpha_footer .SNS_Icons img {
    display:inline;
    width: 30px;
    padding: 0 2px;
}	
/* 하단 */


/*매인 레이어 배너*/
.Alpha_layer-banner {
    position: fixed;
    top: 110px;
    right: 50px;
    width: 350px;
    background-color: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.5s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.Alpha_layer-banner .img {
    border-radius: 10px 10px 0 0;
    /*min-height: 400px;*/    
    overflow: hidden;
}   

.Alpha_layer-banner img { 
    width: 100%;
    display: block;
}

.Alpha_layer-banner.Alpha_hide {
    opacity: 0;
    pointer-events: none;
}

.Alpha_layer-banner .Alpha_buttons {
    position: relative;
}

.Alpha_layer-banner button {
    width: 100%;
    padding: 15px 0;
    border: none;
    cursor: pointer;
    background: #333;
    color: #fff;
    border-radius: 0 0 10px 10px;
}

#Alpha_hideTodayBtn {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 0;
    width: 100px;
    color: #666;
    background-color: inherit;
    font-size: 12px;
}
/*매인 레이어 배너*/


/* 날개 배너 */
#wingBanner {
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 70px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 9999;
}

#wingBanner.show {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1580px) {
    #wingBanner {
        display: none !important;
    }
}

#wingBanner .Thumbnail {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;		
}

#wingBanner .Thumbnail span {
    display: block;
    background-color: #ccc;
    border-radius: 10px;
    margin-bottom: 5px;
    overflow: hidden;
}    

#wingBanner .Thumbnail span:last-of-type {
    margin-bottom: 0px;
}

#wingBanner .Thumbnail span img {
    width: 100%;
    opacity: 0.8;
    display: block;
}    

#goTopBtn {
    margin-top: 10px;
    width: 100%;
    height: 70px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;   
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;		
}

#goTopBtn:hover {
    background-color: #f68f02;
    color: #fff;
}

#wingBanner .ad {
    width: 100%;
    margin-bottom: 15px;
    /*padding: 5px;*/
    padding: 0;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    text-align: center;
}
#wingBanner .ad span {    
    display: block;
    background-color: #ccc;
    border-radius: 10px;
    /*margin-bottom: 5px;*/
    overflow: hidden;}

#wingBanner .ad span img {
    width: 100%;
    display: block;
} 

#wingBanner .ad p {
    display: block;
    padding-bottom: 5px;
    font-size: 12px;
    line-height: 13px;
}

#wingBanner .ad font {
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 10px;
    color: #ccc;
}
/* 날개 배너 */


/*매인배너*/
.Alpha_mainBanner {
    min-width:1580px;		
    position:relative;
    border-bottom: 0px solid #dadada;
    padding:30px 0 60px 0;}

.Alpha_mainBanner .main_Banner {
    width: -webkit-calc(100% + 0px);
    width: calc(100% + 0px);
    min-width:1280px;
    margin: 0 auto;
    position:relative;
    overflow:hidden}
    
.Alpha_mainBanner .main_Banner .slider{
    overflow: hidden;}

.Alpha_mainBanner .main_Banner .slick-list {
    padding:0 !important;}

.Alpha_mainBanner .main_Banner .slick-slide {
    position: relative;
    top: 0;
    left: 0;
    padding: 0px;
    margin: 0 5px;
    width: 750px !important;
    height:450px;
    gap: 10px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #ccc;
    box-sizing: border-box;
    overflow: hidden;}
    
.Alpha_mainBanner .main_Banner .slick-slide img {
    display: block;
    width: 100%;
    margin: 0 auto;}

.Alpha_mainBanner .main_Banner .main_title{
    position: absolute !important;
    bottom: 10%;
    left:10%;
    width: auto;
    height: auto !important;
    color: #000;}

.Alpha_mainBanner .main_Banner	.main_title span{
    display: block;}

.Alpha_mainBanner .main_Banner	.main_title span:nth-child(1){
    font-size: 12px;
    padding-bottom: 0px;}

.Alpha_mainBanner .main_Banner	.main_title span:nth-child(2){
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 20px;}

.Alpha_mainBanner .main_Banner	.main_title span:nth-child(3){
    font-size: 14px;}
/*매인배너*/


/*매인배너 컨트롤*/
.Alpha_mainBanner .control_warp {
    position:absolute;
    bottom:16px;
    left: 50%;
    transform: translate(-50%);
}

.Alpha_mainBanner .control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index:1;}

.Alpha_mainBanner .control span {
    margin: 0 6px;
    padding: 5px;
    width: 30px;
    height: 30px;
    line-height: 19px;
    background-color:#FFF;
    border-radius:50px;
    border: 1px solid #dadada;		
    color:#000;
    font-size:18px;
    text-align:center;
    box-sizing: border-box;
    cursor:pointer;}

.Alpha_mainBanner .control span:hover {
    background-color:#f68f02;
    color:#FFF;
    border-radius:50px;}

.Alpha_mainBanner .control span:nth-of-type(4):hover {
    background-color:#FFF;
    color:inherit;}					

.Alpha_mainBanner .control .pagingInfo {
    margin: 0 0 0 0;		
    color:#000;
    font-weight:normal;
    text-align:center;
    width:80px;
    position: absolute;
    top: 0;
    right: -277px;
    border: 0;}	

.Alpha_mainBanner .control .pagingmore {
    color:#000;
    font-weight:900;
    font-size: 14px;
    text-align:center;
    width:140px;
}			

.Alpha_mainBanner .control .prev {
    letter-spacing: 4px;
}

.Alpha_mainBanner .control .next {
    letter-spacing: -4px;
}    
/*매인배너 컨트롤*/


/*매인배너 기획전 모아보기*/
#Plan_openBanner {
    cursor: pointer;
}

.Plan_modal-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.Plan_modal-content {
    background: #fff;
    padding: 30px;
    width: 800px;   /* 가로 크기 조절 가능 */
    height: 700px;  /* 세로 크기 조절 가능 */
    position: relative;
    border-radius: 10px;
    animation: Plan_fadeIn 0.5s ease; 
}

.Plan_modal-content dl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;        
    box-sizing: border-box;

    max-height: 600px; /* 원하는 높이로 조절 */
    overflow-y: auto;  /* 내용이 넘치면 스크롤 */
    padding-right: 5px; /* 스크롤바 때문에 잘리는 것 방지용 여백 (선택) */ 
    scrollbar-width: none;  /* Firefox */
    -ms-overflow-style: none;  /* IE, Edge */       
}    

.Plan_modal-content dt {
    margin-top: 20px;
    width: 32%;
    border-radius: 10px;
    background-color: #f5f5f5;
    overflow: hidden;
}    

.Plan_modal-content dt img {
    display: block;
    width: 100%;
}	

.Plan_modal-title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dadada;    
}

.Plan_modal-close {
    cursor: pointer;
    background: none;
    border: none;
}

@keyframes Plan_fadeIn {
    from {
    opacity: 0;
    transform: translateY(0);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}
/*매인배너 기획전 모아보기*/


/*바로가기*/
.Shortcut_Menu {
    max-width: 1580px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    /*overflow: hidden;*/
}

.Shortcut_Menu dl {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}		

.Shortcut_Menu dt {
    width: 123px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* 부드러운 이동 애니메이션 */
}

.Shortcut_Menu dt:hover {
    transform: translateY(-8px); /* 위로 5px 이동 */
}

.Shortcut_Menu dt span {
    display: block;
}

.Shortcut_Menu dt span img {
    width: 100%;
}	

.Shortcut_Menu dt span:nth-of-type(1) {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f5f5f5;
    overflow: hidden;
}

.Shortcut_Menu dt span:nth-of-type(2) {
    font-size: 14px;
    padding-top: 10px;
}	
/*바로가기*/


/*가로형 배너*/
.Alpha_item_row {
    max-width: 1580px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    overflow: hidden;
}		

.Alpha_item_row .itme {
    position: relative;
    width: 100%;
    height: 140px;
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}	

.Alpha_item_row .itme img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}	

.Alpha_item_row .itme .text {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(20%, -50%);
    z-index: 1;
}

.Alpha_item_row .itme .text span {
    display: block;
}

.Alpha_item_row .itme .text span:nth-of-type(1) {
    font-size: 24px;
    font-weight: 600;
    padding-bottom: 10px;
}

.Alpha_item_row .itme .text span:nth-of-type(2) {
    font-size: 18px;
    font-weight: 300;
}
/*가로형 배너*/


/*상품롤링 배너*/
.Alpha_itme {
    max-width: 1580px;
    min-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    overflow: hidden;
}
            
.Alpha_itme dl {
    font-size: 0;
    margin-left: 0px;
    padding-top: 30px;
    width: -webkit-calc(100% + 0px);
    width: calc(100% + 0px);
}
    
.Alpha_itme dt {
    width:100% !important;
    display: inline-block;
    padding:0 15px;
    vertical-align: top;
    box-sizing: border-box;
    border:0px solid #000;
    position: relative;
    font-size:12px;
    cursor:pointer;
}	
        
.Alpha_itme dt span {
    display: block;
}	

.Alpha_itme_box {
    margin:0;
    padding:0 45px;
    width:100%;
    box-sizing:border-box; 
    position:relative;
    border:0px solid #0F0;
    overflow:hidden;
}
                    
.Alpha_itme_box .image {
    width:100%; 
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 137%;
    background-color: #f5f5f5;
}

.Alpha_itme_box .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
    
.Alpha_itme_box .code {
    display: none;
    padding-top: 5px;
    padding-bottom:0px;
    color: #999;
    font-size: 10px;
    letter-spacing:-0.5px;
    width: 90%;
    margin:0 auto;
    border-bottom:0px solid #CCC;
}		
            
.Alpha_itme_box .name {
    font-size: 17px;
    width: 90%;
    height: 60px;
    line-height: 20px;
    font-weight: normal;
    margin: 10px auto 0 auto;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}    

.Alpha_itme_box .name font {
    display: inline-block;
    color: #f68f02;
    padding-right: 5px;
    margin-right: 10px;
    border-right: 1px solid #ccc;
}

.Alpha_itme_box .cost {
    width: 90%;
    margin: 0px auto;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    padding: 0px 0 0 0px;
}    
            
.Alpha_itme_box .cost .font2 {
    padding:0;
    font-size:30px;
    letter-spacing:-1px;
}		
        
.Alpha_itme_box .slick-prev, 
.Alpha_itme_box .slick-next {
    font-size: 0;
    line-height: 0;
    width:40px;
    height:40px;
    position: absolute;
    top: 50%;
    display: block;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: 0 !important;
    outline: none;
    background: transparent;
    z-index: 99;
} 	

.Alpha_itme_box .slick-prev {
    background-image:url(https://www.alpha.co.kr/common/img/Alpha/left_arr2.png);
    left:-45px;
    right: inherit;
}
    
.Alpha_itme_box .slick-next {
    background-image:url(https://www.alpha.co.kr/common/img/Alpha/right_arr2.png);
    right:-45px;
    left: inherit;
}			

.Alpha_itme_box .slick-prev:before, 
.Alpha_itme_box .slick-next:before {
    font-size: 0px;
}	

.Alpha_itme .title {
    display: flex;
    justify-content: space-between;
    align-items: center;		
    padding-top:0px;
    padding-bottom: 0px;
    font-size: 40px;
    font-weight: 700;
}

.Alpha_itme .title font {
    display: block;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 2px 10px;
    background-color: #344375;
    border-radius: 25px;
}

.Alpha_itme .title .more {
    display: flex;
    align-items: center;
    padding: 0;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
}		   

.Alpha_itme .title .more span {
    margin-left: 5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #f68f02;
    border-radius: 50%;
    line-height: 22px;
}		

.Alpha_itme .title .more:hover span {
    background-color:#344375;
}		
/*상품롤링 배너*/


/*기획전 리스트*/
.Alpha_itme_3row {
    max-width: 1580px;
    width: 100% ;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    overflow: hidden;
}
            
.Alpha_itme_3row dl {
    font-size: 0;
    margin-left: 0px;
    padding-top: 30px;
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-end;
}
    
.Alpha_itme_3row dt {
    width: 33.33%;
    padding:0 30px 0 0;
    vertical-align: top;
    box-sizing: border-box;
    border:0px solid #000;
    position: relative;
    font-size:12px;
    cursor:pointer;
}	
        
.Alpha_itme_3row dt span {
    display: block;
}

.Alpha_itme_3row dt:nth-of-type(4) {
    padding-top: 50px;
}

.Alpha_itme_3row dt span:nth-of-type(2) {
    padding: 20px 0 10px 0;
    font-size: 22px;
    font-weight: 700;
}	

.Alpha_itme_3row dt span:nth-of-type(3) {
    width: 90%;
    font-size: 16px;
    font-weight: 500;
}	

.Alpha_itme_3row .image {
    width:100%; 
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 40%;
    border-radius: 10px;
    background-color: #f5f5f5;
}

.Alpha_itme_3row .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}	

.Alpha_itme_3row .title {
    display: flex;
    justify-content: space-between;
    align-items: center;		
    padding-top:0px;
    padding-bottom: 0px;
    font-size: 40px;
    font-weight: 700;
}

.Alpha_itme_3row .title font {
    display: block;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 2px 10px;
    background-color: #344375;
    border-radius: 25px;
}

.Alpha_itme_3row .title .more {
    display: flex;
    align-items: center;
    padding: 0;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
}		   

.Alpha_itme_3row .title .more span {
    margin-left: 5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #f68f02;
    border-radius: 50%;
    line-height: 22px;
}		

.Alpha_itme_3row .title .more:hover span {
    background-color:#344375;
}	/*기획전 리스트*/		


/*필기구*/
.Alpha_Pen {
    width:100%;
    min-width: 1580px;
    margin: 0 auto;
    padding: 50px 0 0 0;
    box-sizing: border-box;
    overflow: hidden;
    border-top: 1px solid #f1f1f1;
    border-bottom: 0px solid #f1f1f1;}

.Alpha_Pen dl {
    font-size: 0;
    margin-left: 0px;
    padding-top: 0px;
    width: -webkit-calc(100% + 0px);
    width: calc(100% + 0px);}
    
.Alpha_Pen dt {
    width:100% !important;
    display: inline-block;
    margin-bottom: 20px;
    padding-right:15px;
    padding-left:15px;
    vertical-align: top;
    text-align: center;
    box-sizing: border-box;
    border:0px solid #000;
    position: relative;
    font-size:12px;
    cursor:pointer;}	
        
.Alpha_Pen dt span {
    display: block;}	

.Alpha_Pen_box {
    margin:0;
    padding:60px 0 0 0;
    width:100%;
    box-sizing:border-box; 
    position:relative;
    border:0px solid #0F0;
    overflow:hidden;}
                    
.Alpha_Pen_box .image {
    width:100%; 
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 155%;
    transform:scale(1.0);        
    transition: transform .5s;
    background-color: #f5f5f5;}

.Alpha_Pen_box .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;}

.Alpha_Pen_box .image .text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 90%;
    border-radius: 10px;
    background-color: #FAF6ED;
    padding: 10px;
    box-sizing: border-box;
    opacity: 0.8;
    z-index: 1;
}    

.Alpha_Pen_box .image .text p {
    padding: 0;
    margin: 0;
    font-size: 14px;
    text-align: left;
}

.Alpha_Pen_box .image .text p:nth-of-type(1) {
    font-size: 16px;
    font-weight: 900;
    padding-bottom: 10px;
}
    
.Alpha_Pen_box .code {
    padding-top: 5px;
    padding-bottom:0px;
    color: #999;
    font-size: 10px;
    letter-spacing:-0.5px;
    width: 90%;
    margin:0 auto;
    display: none;}		
            
.Alpha_Pen_box .name {
    font-size: 17px;
    width: 90%;
    line-height: 20px;
    font-weight: normal;
    margin: 10px auto 0 auto;
    padding-bottom: 20px;
    white-space: normal;
    overflow: hidden;
    /*display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;*/}    

.Alpha_Pen_box .cost {
    width: 90%;
    margin: 0px auto;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    padding: 0px;}    
            
.Alpha_Pen_box .cost .font2 {
    padding:0;
    font-size:30px;
    letter-spacing:-1px;}

.Alpha_Pen .control {
    margin:0 auto;
    text-align:center;
    width:30%;}

.Alpha_Pen .control span {
    width:40px;
    height:41px;
    line-height:40px;
    display:inline-block;
    box-sizing:border-box;
    color:#000;
    text-align:center;
    vertical-align: middle;
    cursor:pointer;}
    
.Alpha_Pen .control span:nth-of-type(2) {
    width:inherit;
    border:0px;
    pointer-events:none;}		

.Alpha_Pen .control .text {
    text-align:center;
    margin:0 auto;
    font-size:12px;}
    
.Alpha_Pen .control .left_Arr {
    position:absolute;
    top:0;
    left:0;}		
                
.Alpha_Pen .control .right_Arr {
    position:absolute;
    top:0;
    right:0;}	

    
/*.Alpha_Pen .slick-center .image {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);}*/	

.Alpha_Pen .slick-center .code {
    padding-top:40px;}

    .Alpha_Pen .slick-list {
    padding-top:25px !important;}

.Alpha_Pen .title {
    width: 1580px;
    margin: 0 auto;
    padding: 0 40px;		
    display: flex;
    justify-content: space-between;
    align-items: center;		
    padding-top:0px;
    padding-bottom: 0px;
    font-size: 40px;
    font-weight: 700;
}

.Alpha_Pen .title font {
    display: block;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 2px 10px;
    background-color: #344375;
    border-radius: 25px;
}

.Alpha_Pen .title .more {
    display: flex;
    align-items: center;
    padding: 0;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
}		   

.Alpha_Pen .title .more span {
    margin-left: 5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #f68f02;
    border-radius: 50%;
    line-height: 22px;
}		

.Alpha_Pen .title .more:hover span {
    background-color:#344375;
}

/*@media screen and (min-width: 1920px) {
    .Alpha_Pen .slick-center .image {
        -webkit-transform: scale(1.10);
        -moz-transform: scale(1.10);
        transform: scale(1.10);}
    }*/			
/*필기구*/


/*특가상품*/
.Promotional_Item_warp {
    padding-top:40px;
    width:100%;
    position:relative;
    background-image: linear-gradient(to bottom, #0872be 200px, #FFF 201px);}

.Promotional_Item {
    max-width: 1580px;
    min-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    overflow: hidden;
}
            
.Promotional_Item dl {
    font-size: 0;
    margin-left: 0px;
    padding-top: 0px;
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}
    
.Promotional_Item dt {
    width: 33.33%;
    padding:30px 30px 0 0;
    vertical-align: top;
    box-sizing: border-box;
    border:0px solid #000;
    position: relative;
    font-size:12px;
    cursor:pointer;
}	
        
.Promotional_Item dt span {
    display: block;
}

.Promotional_Item .image {
    width:100%; 
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 40%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.Promotional_Item .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
    
.Promotional_Item .code {
    padding-top: 5px;
    padding-bottom:0px;
    color: #999;
    font-size: 10px;
    letter-spacing:-0.5px;
    width: 90%;
    margin:0 auto;
    border-bottom:0px solid #CCC;
}		
            
.Promotional_Item .name {
    font-size: 13px;
    width: 90%;
    font-weight: normal;
    margin: 10px auto 0 auto;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}    

.Promotional_Item .cost {
    width: 90%;
    margin: 0px auto;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    padding: 15px 0 0 0px;
}    
            
.Promotional_Item .cost .font2 {
    padding:0;
    font-size:30px;
    letter-spacing:-1px;
}			

.Promotional_Item .title {
    display: flex;
    justify-content: space-between;
    align-items: center;		
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 40px;
    font-family: 'Gmarket+Sans', sans-serif;
    font-weight: 700;
    color: #fff;
}

.Promotional_Item .title .more {
    display: flex;
    align-items: center;
    padding: 0;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}		   

.Promotional_Item .title .more span {
    margin-left: 5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #000;
    background-color: #fff;
    border-radius: 50%;
    line-height: 22px;
}		

.Promotional_Item .title .more:hover span {
    background-color:#344375;
}		
/*특가상품*/


/*브랜드*/
.Alpha_Brand {
    max-width: 1580px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.Alpha_Brand_box {
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);		
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
}

.Alpha_Brand_box > div {
    padding-right: 30px;
    width: 50%;
}

.Alpha_Brand dl {
    margin-left: 0px;
    padding-top: 30px;
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;		
}
    
.Alpha_Brand dt {
    padding-right: 30px;
    width:33.33%;
    box-sizing: border-box;
    border:0px solid #000;
    position: relative;
    font-size:12px;
    cursor:pointer;
}

.Alpha_Brand span {
    display: block;
}	

.Alpha_Brand .image {
    width:100%; 
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 100%;
    background-color: #f5f5f5;
}

.Alpha_Brand .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
    
.Alpha_Brand .code {
    padding-top: 5px;
    padding-bottom:0px;
    color: #999;
    font-size: 10px;
    letter-spacing:-0.5px;
    width: 90%;
    margin:0 auto;
    border-bottom:0px solid #CCC;
}		
            
.Alpha_Brand .name {
    font-size: 13px;
    width: 90%;
    font-weight: normal;
    margin: 10px auto 0 auto;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}    

.Alpha_Brand .cost {
    width: 90%;
    margin: 0px auto;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    position: relative;
    padding: 15px 0 0 0px;
}    
            
.Alpha_Brand .cost .font2 {
    padding:0;
    font-size:30px;
    letter-spacing:-1px;
}		

.Alpha_Brand .title_banner {
    margin-bottom: 20px;
    padding: 0 40px;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    height: 187px;
    border-radius: 10px;
    background-color: #f5f5f5;
    /*color: #fff;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-size: cover;		
}

.Alpha_Brand .bg01 {
    background-image: url(https://www.alpha.co.kr/common/img/Alpha/Brand_item01.png);
}

.Alpha_Brand .bg02 {
    background-image: url(https://www.alpha.co.kr/common/img/Alpha/Brand_item02.png);
}

.Alpha_Brand .bg03 {
    background-image: url(https://www.alpha.co.kr/common/img/Alpha/Brand_item03.png);
}

.Alpha_Brand .title_banner span:nth-of-type(1) {
    padding-bottom: 20px;
    font-weight: 700;
    font-size: 16px;
}

.Alpha_Brand .title_banner span:nth-of-type(2) {
    font-weight: 500;
    font-size: 20px;
}

.Alpha_Brand .title {
    display: flex;
    justify-content: space-between;
    align-items: center;		
    padding-top:0px;
    padding-bottom: 0px;
    font-size: 40px;
    font-weight: 700;
}

.Alpha_Brand .title font {
    display: block;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    padding: 2px 10px;
    background-color: #344375;
    border-radius: 25px;
}

.Alpha_Brand .title .more {
    display: flex;
    align-items: center;
    padding: 0;
    width: max-content;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
}		   

.Alpha_Brand .title .more span {
    margin-left: 5px;
    width: 20px;
    height: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #f68f02;
    border-radius: 50%;
    line-height: 22px;
}		

.Alpha_Brand .title .more:hover span {
    background-color:#344375;
}	
/*브랜드*/

/*할인쿠폰*/
.Coupon {
    max-width: 1580px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    overflow: hidden;
}

.coupon-row {
    display: flex;
    justify-content: space-between;
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
}

.coupon-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;		
}

.coupon-left span {
    display: block;
}	

.coupon-left span:nth-of-type(1) {	
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(45deg, #fc4a1a, #f7b733);
    color: #fff;
    border-radius: 50px;
}

.coupon-left span:nth-of-type(2) {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    padding-top: 20px;
}
    
    
.coupon-right {
    width: 69.5%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.coupon-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.coupon-inner div {
    position: relative;
    width: 25%;
    margin-right: 30px;
    cursor: pointer;
}	

.coupon-inner div dl {
    margin: 0;
    padding: 15px 0 0 0;
    border-radius: 10px;
    border: 2px solid #dc2f2f;
    text-align: center;	
    overflow: hidden;	
}	

.coupon-inner div dl dt {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
}	

.coupon-inner div dl dt:nth-of-type(2) {
    font-weight: 900;
    font-size: 60px;
    line-height: 1;
}	

.coupon-inner div dl dt:nth-of-type(2) font {
    display: inline-block;
    font-size: 30px;
}

.coupon-inner div dl dt:nth-of-type(3) {
    background-color: #dc2f2f;
    color: #fff;
    padding: 5px 10px;
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;		
}	

.coupon-inner div img {
    display: block;
}

.coupon-inner div p {
    padding: 5px;
    margin: 10px auto 0 auto;
    width: fit-content;
    text-align: center;
    font-size: 12px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
}

.coupon-inner .todayBg {
    background-color: #fb6819 !important;
}	

.coupon-inner .todayLine {
    border-color: #fb6819 !important;
}	

.coupon-inner .endBg {
    background-color: #999 !important;
}	

.coupon-inner .endLine {
    border-color: #999 !important;
    opacity: 0.5;
}

.coupon-inner .endNoshow {
    display: none;
}	
/*할인쿠폰*/


/*타임특가 상품*/
	.time_item {
		max-width: 1580px;
		width: 100%;
		margin: 0 auto;
		padding: 0 40px;
		display: flex;
	    justify-content: space-between;
    	align-items: flex-start;	
		box-sizing: border-box;
		overflow: hidden;
	}

	.time_item span {
		display: block;
	}	

	.time_item > div:nth-of-type(1) {
		width: 40%;
	}

	.time_item div:nth-of-type(1) span:nth-of-type(1) {
		font-size: 40px;
		font-weight: 500;
	}

	.time_item div:nth-of-type(1) span:nth-of-type(3) {
		font-size: 14px;
		color: #CCC;
	}
		
	.time_item .countdown-text {
		padding: 50px 0;
		font-size: 70px;
		letter-spacing: -3px;
		font-weight: 900;
		color: #fb6819;
	}	
		
	.time_item > div:nth-of-type(2) {
		width: 58.5%;
	}			

	.time_item .image {
		width:100%; 
		position: relative;
		height: 0;
		overflow: hidden;
		padding-top: 50%;
		border-radius: 10px;
		overflow: hidden;		
		background-color: #f5f5f5;}

	.time_item .image img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;}

	.time_item .image .overlay {
		position: absolute;
		top: 0; left: 0;
		width: 100%; height: 100%;
		background: rgba(0,0,0,0.6);
		color: #fff;
		font-size: 30px;
		font-weight: bold;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}		
		
	.time_item .code {
		padding-top: 5px;
		padding-bottom:0px;
		color: #999;
		font-size: 10px;
		letter-spacing:-0.5px;
		width: 90%;
		margin:0 auto;}		
				
	.time_item .name {
		font-size: 17px;
		width: 90%;
		height: 40px;
		line-height: 20px;
		font-weight: normal;
		margin: 10px auto 0 auto;
		white-space: normal;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
}   
	
	.time_item .cost {
		width: 90%;
		margin: 0px auto;
		text-decoration: none;
		font-size: 14px;
		font-weight: bold;
		position: relative;
		padding: 0px;}    
				
	.time_item .cost .font2 {
		padding:0;
		font-size:30px;
		letter-spacing:-1px;
	}

/*타임특가 상품*/








