@charset "utf-8";
/* s: 공통영역 */

*{box-sizing:border-box;}

body {
    position: relative;
    letter-spacing: -0.025em;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    word-break: keep-all;
    min-width: 280px;
    max-width:1920px;
}
a:active, a:hover, a:focus {text-decoration: none;}

/* visual */

.mainVisual{
    display:block;
    background-color: transparent;
    height: auto;
    width:100%;
    padding:30px 0 0;
    background-color: #e6f0ff;
    background-image: url(/resource/coupon/images/mainVisualBg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right bottom;
    overflow: hidden;
}
.mainVisual > .logoArea{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding:0 30px;
}
.mainVisual .logo{
    position:static;
}
.mainTitleArea{
    display: block;
    width:100%;
    max-width:1400px;
    margin:0 auto;
    background-image: url(/resource/coupon/images/mainContBg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right bottom;
    padding-bottom:108px;
}
.titleBx{
    display: block;
    font-family: var(--EsamanruB);
}
.titleBx > .subTitle{
    display: block;
    color:#d6163b;
    font-size:4rem;
    line-height:1.15em;
    margin-bottom:28px;
}
.titleBx > .mainTitle{
    color:#fff;
    font-size:7.8rem;
    padding:21px 20px;
    line-height:1em;
    display: inline-block;
    background:var(--couponMainC);
}


/* s: header */
header {
    width: 100%;
    position: sticky;
    top: 0;
    background: var(--couponMainC);
    z-index: 100;
}
header .gnb {
    display: flex;
}
header .gnb li {
    width: 25%;
    text-align: center;
    position: relative;
    border-right:1px solid rgba(221,221,221,0.3);
}
header .gnb li:last-child{
    border-right:0;
}
/* header .gnb li:first-child{
    border-left:1px solid rgba(221,221,221,0.3);
} */
header .gnb li a {
    position: relative;
    font-family: var(--EsamanruB);
    line-height:1em;
    font-size: 2.5rem;
    display: block;
    width: 100%;
    padding: 38px 0;
    transition: var(--time);
    color:#fff;
}
header .gnb li a:hover,
header .gnb li a.active {
    background: #fff;
    color: #121212;
    transition: var(--time);
}
header .gnb li a::before{
    display: block;
    content:'';
    width:0;
    height:5px;
    background:var(--couponOrg);
    position: absolute;
    top:0;
    left:1px;
    transition: var(--time);
    z-index: 2;
}
header .gnb li a:hover::before,
header .gnb li a.active::before {
    width:calc(100% - 2px);
    transition: var(--time);
}
header .mobileNav {display: none;}


/* s: footer */
footer {width: 100%; background-color: #353b45; color: var(--white); padding: 50px 0; text-align: center; letter-spacing: 0;}
footer .logo {display: inline-block; margin-bottom: 35px;}
footer .txt {margin-bottom: 20px; line-height: 1.2em; padding: 0 32px;}

/* s: topBtn */
button.topBtn {
    display: block; 
    position: fixed; 
    bottom: 40px; 
    right: 40px; 
    font-size: 0; 
    width: 63px; 
    height: 63px; 
    background-image: url('/resource/coupon/images/topArrow.png');
    background-repeat:  no-repeat;
    background-size: auto;
    background-color: var(--couponOrg);
    background-position: center;
    z-index: 2;
    border-radius: 40px;
}


/* container */

.container {
    width:100%;
    max-width:1400px;
    margin: 0 auto;
}
section{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:120px 0;
    border-bottom:1px solid #dddddd;
}

.contTitle{
    font-size: 4rem;
    font-family: var(--EsamanruB);
    color: #121212;
    margin-bottom: 60px;
    line-height: 1em;
}
.contSubTitle{
    padding-left: 13px;
    font-size: 3rem;
    color: #121212;
    font-family: var(--EsamanruB);
    line-height: 1em;
    position: relative;
    margin-bottom:40px;
}
.contSubTitle::before{
    display: block;
    content:'';
    width:5px;
    height:28px;
    border-radius: 2px;
    background:var(--couponLightC);
    position: absolute;
    top:50%;
    left:0;
    margin-top:-14px;
}
.descBx{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px 0;
    margin-bottom:100px;
}
.descBx:last-child{
    margin-bottom:0;
}
.contDl{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 0 40px;
}
.contDl > dt{
    display: block;
    width: 200px;
    background: var(--couponLightC);
    color: #fff;
    text-align: center;
    padding: 14px 0;
    font-size: 2rem;
    font-family: var(--EsamanruB);
    line-height: 1em;
    border-radius: 40px;
}
.contDl > dd{
    padding:14px 0;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px 0;
}
.contTxt{
    font-size: 2rem;
    font-weight: 600;
}
.contDTxt{
    font-size: 1.8rem;
    font-weight: 400;
    padding-left: 11px;
    line-height: 2rem;
    white-space: pre-line;
}
.descTxt{
    font-size: 1.8rem;
    font-weight: 400;
    padding-left: 20px;
    line-height: 1.6em;
    white-space: pre-line;
    position: relative;
}
.descTxt::before{
    display: inline-block;
    content:'※';

    position: absolute;
    top:4px;
    left:0;
}
.descTxt.mean::before{
    content:'*';
}
.descApply > .contTxt.leftLine{
    margin-top:20px;
}
.hLtxt{
    padding: 8px 20px;
    background: var(--couponLightB);
    border-radius: 40px;
    font-weight: 500;
    color: #121212;
    font-size: 1.8rem;
    line-height: 1em;
}
.txtBx{
    display: flex;
    width: 100%;
    padding: 11px 34px;
    line-height:1.6em;
    background: #f8f8f8;
    border-radius: 15px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px 0;
    line-height:1.5em;
}
.txtBx > .contTxt{
    font-size:1.8rem;
}
.iconList{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 25px;
    padding-top:15px;
}
.iconList > li > img{
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.14));
}
.contExpDl{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 18px;
    margin-top:-8px;
}
.contExpDl > dt{
    background-color: var(--couponLightB);
    padding:9px 17px;
    font-weight:600;
    border-radius: 40px;
}
.contExpDl > dd{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 8px;
    gap: 13px 0;
    flex:1 1 0;
}
.contExpDl > dd > p{
    font-weight: 500;
}
.contExpDl > dd > p > strong{
    font-weight: 600;
}
.tablewrap{
    display: block;
    width: 100%;
    overflow: hidden;
}
.tableBx{
    display: block;
    width: 100%;
}
.tableBx > table{
    width:100%;
    border-collapse: collapse;
}

.tableBx > table th,
.tableBx > table td{
    border: 1px solid rgba(18,18,18,0.2);
    text-align: center;
    padding:16px 0;
}
.tableBx > table th{
    background:#e9effa;
    border-top: 1px solid #000;
}
.tableBx > table td{
    border-top:0;
}
.tableBx > table td p{
    font-weight:600;
    text-align: center;
    width:100%;
    display: block;
    margin-bottom:7px;
    line-height:1em;
}
.tableBx > table thead tr th:first-child,
.tableBx > table tbody tr td:first-child{
    border-left:0;
}
.tableBx > table thead tr th:last-child,
.tableBx > table tbody tr td:last-child{
    border-right: 0;
}
.tableBx > table tbody tr:last-child td{
    background-color: var(--couponLYC);
    border-bottom: 1px solid #000;
}
.descUlT{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.descTitle{
    display: flex;
    padding: 14px 41px;
    color: #fff;
    background: var(--couponLightC);
    font-family: var(--EsamanruB);
    line-height: 1em;
    font-size: 2rem;
    border-radius: 40px;
    margin-bottom: 20px;
}
.descTable{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    width:100%;
    gap:0 10px;
}
.descApply{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap:10px 0;
    width:100%;
    margin-top:-14px;
}
.contBx{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 31px 40px;
    border-radius: 10px;
    background-color: var(--couponLightB);
    font-weight:600;
}
.contBx > p{
    white-space: normal;
}
.contBx > p:first-child{
    padding: 0 20px 0 58px;
    position: relative;
    margin-right:20px;
    white-space: nowrap;
}
.contBx > p:first-child::before{
    display: block;
    content:'';
    width:40px;
    height:40px;
    position:absolute;
    left:0;
    top:50%;
    transform: translateY(-50%);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.contBx > p.iconMb::before{
    background-image:url(/resource/coupon/images/iconApply01.png);
}
.contBx > p.iconCc::before{
    background-image:url(/resource/coupon/images/iconApply02.png);
}
.contBx > p.iconAcc::before{
    background-image:url(/resource/coupon/images/iconApply03.png);
}
.contBx > p:first-child::after{
    display: block;
    content:'';
    width:1px;
    height:14px;
    background:#afc4ee;
    position: absolute;
    top:50%;
    margin-top:-7px;
    right:0;
}
.contBx > p:last-child{
    font-weight:500;
}
.contBx > p.iconAcc{
    padding: 0 0 0 65px;
    font-weight:600;
    white-space: normal;
}
.dotLine{
    display: flex;
    flex: 1 1 0;
    border-top: 1px dashed #7a8ab2;
}
.descPer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width:400px;
    padding:0 20px;
    border-radius: 10px;
    background-color: #f8f8f8;
    font-weight:600;
    gap:10px 0;
}

.processArea{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    position: relative;
}
.processLeft{
    padding: 43px 60px 95px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    background: var(--couponLightB);
    border-radius: 15px;
    box-sizing: border-box;
}
.processLogo{
    padding-right: 115px;
}
.processDesc{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1 1 0;
    gap:40px 0;
}
.processTitle{
    width: 200px;
    text-align: center;
    border-radius: 10px;
    background: #6c92df;
    color: #fff;
    font-family: var(--EsamanruB);
    font-size: 2rem;
    line-height: 1em;
    padding: 14px 0;
}
.processDesc > .iconList{
    margin-bottom:50px;
}
.processList{
    margin-top: 30px;
    gap: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}
.processList > li{
    display: block;
    width:100%;
}
.processList > li:first-child{
    padding-bottom:30px;
    border-bottom:1px solid #cfcfcf;
}
.processList > li > .title{
    font-weight:700;
    margin-bottom:9px;
}
.processList > li > .txt{
    font-weight:400;
}
.processCenter{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 494px;
    margin-left: -40px;
    z-index: 2;
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
}
.arrowList{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.arrowList > li{
    padding: 17px 40px;
    width: 100%;
    background-position: left top;
    background-size: auto;
    background-repeat: no-repeat;
    color: #fff;
    font-weight: 700;
}
.arrowList > li:first-child{
    background-image: url(/resource/coupon/images/itemProcessArrow01.png);
}
.arrowList > li:last-child{
    background-image: url(/resource/coupon/images/itemProcessArrow02.png);
    text-align: right;
    background-position: right top;
}
.processRight{
    width: 225px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff4ed;
    border-radius: 15px;
}
.processRight > p{
    font-size: 2.2rem;
    font-weight: 600;
    padding-top: 76px;
    position: relative;
}
.processRight > p::before{
    display: block;
    content:'';
    width:102px;
    height:60px;
    position: absolute;
    top:0;
    left:50%;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    background-image: url(/resource/coupon/images/iconPeople.png);
}
.descList{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px 0;
}
.descList > li{
    padding-left: 24px;
    position: relative;
    font-weight:500;
}
.descList > li::before{
    display: block;
    content:'';
    width:4px;
    height:4px;
    background: #333333;
    border-radius: 4px;
    position: absolute;
    top:7px;
    left:10px;
}
.descList > li > .descTxt{
    margin-top:16px;
    display:block;
}
.contTxt.leftLine{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px 0;
    padding-left: 22px;
    position: relative;
}
.contTxt.leftLine::before{
    display: block;
    content:'';
    width:10px;
    height:3px;
    background:var(--couponLightC);
    position: absolute;
    left:0;
    top:8.5px;
}
.storeArea{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width:100%;
    padding: 55px 60px;
    border: 1px solid #ddd;
    border-radius: 25px;
    gap: 0 120px;
}
.storeWrap{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: calc(50% - 60px);
    position: relative;
}
.storeWrap > .title{
    width: 430px;
    font-size: 2rem;
    font-family: var(--EsamanruB);
    padding: 14px;
    text-align: center;
    color: var(--couponLightC);
    background-color: var(--couponLightB);
    border-radius: 40px;
    margin-bottom: 30px;
    position: relative;
}

.storeWrap > .title.no{
    color:var(--couponOrg);
    background:#feecea;
}
.storeWrap > .title::before{
    display: block;
    content:'';
    width:48px;
    height:56px;
    position: absolute;
    bottom:14px;
    left:60px;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    background-image: url(/resource/coupon/images/iconO.png);
}
.storeWrap > .title.no::before{
    background-image: url(/resource/coupon/images/iconX.png);
}
.storeList{
    display: block;
    width: 100%;
}
.storeList > li{
    border-bottom:1px dashed #ddd;
}
.storeList > li > p{
    padding: 24px 78px;
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1em;
}
.storeList > li > p::before{
    display:block;
    content:'';
    width:45px;
    height:45px;
    background-repeat: no-repeat;
    background-size:auto;
    background-position: center;
    position: absolute;
    top:13px;
    left:13px;
}
.storeList > li:nth-child(1) > p::before{
    background-image: url(/resource/coupon/images/iconStore01.png);
}
.storeList > li:nth-child(2) > p::before{
    background-image: url(/resource/coupon/images/iconStore02.png);
}
.storeList > li:nth-child(3) > p::before{
    background-image: url(/resource/coupon/images/iconStore03.png);
}
.storeList > li:nth-child(4) > p::before{
    background-image: url(/resource/coupon/images/iconStore04.png);
}
.storeList > li:nth-child(5) > p::before{
    background-image: url(/resource/coupon/images/iconStore05.png);
}
.storeList > li:nth-child(6) > p::before{
    background-image: url(/resource/coupon/images/iconStore06.png);
}
.storeList > li:nth-child(7) > p::before{
    background-image: url(/resource/coupon/images/iconStore07.png);
}
.storeList > li:nth-child(8) > p::before{
    background-image: url(/resource/coupon/images/iconStore08.png);
}

.storeList.no > li:last-child{
    border-bottom:0;
}
.storeList.no > li > p{
    padding:15px 16px 16px 47px;
}
.storeList.no > li > p::before{
    width:18px;
    height:18px;
    top:16px;
    left:10px;
    background-image: url(/resource/coupon/images/iconCheckStore.png);
}
.storeList.no > li > p > .expTxt{
    padding:0;
    font-weight:400;
    display: block;
    padding:11px 10px 0;
    position: relative;
    white-space: pre-line;
}
.storeList.no > li > p > .expTxt::before{
    display: block;
    content:'*';
    position: absolute;
    top:11px;
    left:0;
}
.storeNotice{
    padding-top: 18px;
    padding-left: 14px;
    font-weight: 500;
    letter-spacing: -0.06em;
    font-size: 1.8rem;
}
.stkBx{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background:#fff;
    padding:28px 34px;
    position: absolute;
    top:50%;
    right:0;
    transform: translateY(-50%);
}
.stkBx > p:first-child{
    font-family: var(--EsamanruB);
    font-size: 2.2rem;
    color: var(--couponLightC);
    margin-bottom: 7px;
}
.stkBx > p:nth-child(2){
    font-family: var(--EsamanruM);
    font-size:2.2rem;
    margin-bottom:19px;
}

@media screen and (max-width: 1460px) {
    .mainTitleArea{
        max-width:inherit;
        width:100%;
        padding:0 30px 108px;
    }
    section{
        max-width:inherit;
        width:100%;
        padding:120px 30px;
    }
}

@media screen and (max-width: 1360px) {
    .processLogo{
        padding-right:60px;
    }
    processCenter{
        margin-left:-90px;
    }
}

@media screen and (max-width: 1280px) {
    .mainVisual .logo{
        width:10rem;
    }
    .mainVisual > .logoArea > .pageLogo > a > img{
        width: 10rem;
    }
    .mainVisual > .titleBx{
        margin-top:-20px;
    }
    .mainVisual > .titleBx > img{
        height: 12rem;
    }
    .mainVisual > .titleBx::after{
        max-width:440px;
        background-size:100% auto;
        min-width: 280px;
    }
    section{
        max-width: inherit;
        padding: 60px 30px;
        box-sizing: border-box;
    }
    .conBox .title > h3 > img{
        height:10rem;
    }
    .processLeft{
        flex-direction: column;
        justify-content: flex-start;
        gap: 16px 0;
        width: 40%;
        padding: 43px 30px;
    }
    .processLogo{
        padding:0;
    }
    .processDesc{
        align-items: center;
        gap:40px 0;
    }
    .processDescBx{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .processCenter{
        left:40%;
    }
}

@media screen and (max-width: 1100px) {
    .processCenter{
        width:380px;
    }
}


@media screen and (max-width: 1024px) {
    /* s: header */
    header .container {width: 100%;}
    header .gnb {flex-wrap: wrap;}
    header .gnb li a {font-size: 1.9rem; padding: 25px 0; border-radius: 0;}
    .titleBx > .subTitle{
        font-size: 3.2rem;
    }
    .titleBx > .mainTitle{
        font-size: 6rem;
    }
    .mainTitleArea{
        background-size: auto 100%;
    }
    .processCenter {
        left: 38%;
        margin-left: 0;
    }
    .processRight{
        width:180px;
    }
    .contBx > p:first-child{
        white-space: normal;
    }
    .storeArea{
        flex-direction: column;
        gap: 60px 0;
        padding: 54px 30px;
    }
    .storeWrap{
        width:100%;
    }
    .storeWrap > .title{
        width:300px;
        text-indent: 16px;
    }
}

@media screen and (max-width: 900px) {
    .processCenter{
        width:320px;
    }
}

@media screen and (max-width: 830px) {
    .processCenter{
        width:290px;
    }
}

@media screen and (max-width: 768px) {
    .contTitle{
        font-size:3.2rem;
        margin-bottom: 48px;
    }
    .contSubTitle{
        font-size:2.4rem;
        margin-bottom: 32px;
    }
    .storeNotice,
    .storeList > li > p,
    .descTxt,
    .hLtxt,
    .contDTxt,
    .processRight > p,
    .processTitle,
    .storeWrap > .title,
    .contTxt,
    .contDl > dt{
        font-size:1.8rem;
        line-height:1.4em;
    }
    .descBx{
        gap:32px 0;
        margin-bottom:60px;
    }
    .contDl{
        gap: 0 20px;
    }
    .contDl > dt{
        width:120px;
        padding:10px 0;
    }
    .contDl > dd{
        padding:8px 0;
    }
    .contExpDl > dd{
        padding-top:12px;
    }
    .contBx{   
        padding: 24px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 16px 0;
    }
    .descTxt{
        padding-left:16px;
    }
    .txtBx{
        padding:16px;
    }
    .contBx > p:first-child{
        padding: 0 0px 10px 40px;
        margin-right: 0;
        width: 100%;
        margin-bottom: 0px;
    }
    .contBx > p.iconAcc:first-child{
        padding: 0 0px 0px 40px;
    }
    .contBx > p:first-child::after{
        width:100%;
        height:1px;
        top:inherit;
        left:0;
        bottom:0px;
    }
    .contBx > p.iconAcc:first-child::after{
        display: none;
    }
    .contBx > p:first-child::before{
        width:32px;
        height:32px;
        background-size: auto 100%;
        top: 7px;
    }
    .contBx > p.iconAcc:first-child::before{
        top:14px;
    }
    .processArea{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .processLeft,
    .processCenter,
    .processRight{
        width: 100%;
    }
    .processDesc{
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0 30px;
        width:100%;
    }
    .processDescBx:first-child{
        width:200px;
    }
    .processDescBx:last-child{
        flex:1 1 0;
    }
    .processTitle{
        width:100%;
    }
    .processList{
        flex-direction: row;
    }
    .processList > li:first-child{
        border:0;
        padding:0;
        border-right:1px solid #cfcfcf;
        padding-right:20px;
        margin-right:20px;
    }
    .iconList{
        max-width: 130px;
        flex-wrap: wrap;
        gap: 18px;
    }
    .processList > li > .txt{
        white-space: pre-line;
    }
    .processCenter{
        position:static;
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-start;
    }
    .arrowList.mob2{
        display: flex !important;
        flex-direction: row;
        height: 100%;
        gap: 0;
        margin:-40px auto 24px;
    }
    .arrowList.mob2 > li{
        height:334px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 50px;
        padding: 34px 18px;
    }
    .arrowList.mob2 > li:first-child {
        background-image: url(/resource/coupon/images/itemProcessArrowM01.png);
        background-position: center top;
    }
    .arrowList.mob2 > li:last-child {
        background-image: url(/resource/coupon/images/itemProcessArrowM02.png);
        background-position: center bottom;
        justify-content: flex-end;
    }
    .processRight{
        padding:24px 0;
    }
    .processRight > p{
        padding-top:68px;
    }
    .processRight > p::before{
        height: 52px;
        background-size: auto 100%;
    }
    .storeNotice{
        padding-left:0;
    }

    .stkBx{
        padding:16px 24px;
    }
    .stkBx > p:first-child,
    .stkBx > p:nth-child(2){
        font-size:1.9rem;
    }
    .stkBx > img{
        max-width:160px;
    }
    .storeWrap > .title::before{
        left:30px;
    }



    /* s: header */
    header .gnb li a {font-size: 1.8rem; padding: 20px 0;}


    /* s: topBtn */
    button.topBtn {right: 30px; bottom: 30px; width: 53px; height: 53px;}
    

    /* s: footer */
    footer .txt {padding: 0 16px;}
    footer>div>p.txt {display: none;}
    footer {padding: 25px 0;}
    footer .logo {height: 25px; margin-bottom: 19px;}
    footer>div>p {font-size: 1.4rem;}
}

@media screen and (max-width: 580px) {
    .mainTitleArea{
        background-size: auto 63%;
        background-position: center bottom -50px;
    }
    .titleBx > .subTitle{
        font-size: 3rem;
        margin-bottom:16px;
    }
    .titleBx > .mainTitle{
        font-size:4.8rem;
        padding: 12px;
    }
    .contDl{
        flex-direction: column;
    }
    .contDl > dd{
        width: 100%;
        padding:12px 6px;
    }
    .descBx{
        gap:16px 0;
    }
    .processList > li:first-child{
        padding-right:20px;
    }
    .arrowList.mob2{
        margin-top:-20px;
    }
    .contBx:first-child{
        margin:12px 0 0;
    }
}

@media screen and (max-width: 480px) {
    /* s: 공통영역 */
  

    /* s: header */
    /* header .gnb {display: none;} */
    /* header .mobileNav {display: block;}
    header .mobileNav li {width: 100%;}
    header .mobileNav li a {display: flex; align-items: center; justify-content: center; width: 100%; height: 70px; padding: 0 60px; box-sizing: border-box; background: var(--couponMainC); font-size: 2.2rem; font-weight: 600; text-align: center; color: var(--white);}
    header .mobileNav .slideBtn {background-repeat: no-repeat; background-position: center center; position: absolute; top: 0; margin-top: 0; width: 60px; height: 70px; padding: 0; font-size: 0;}
    header .mobileNav .slideBtn::after {display: none;}
    header .mobileNav .slideBtn.next {background-image: url('/resource/englishbusan/images/slideNext.png'); right: 0;}
    header .mobileNav .slideBtn.prev {background-image: url('/resource/englishbusan/images/slidePrev.png'); left: 0;} */

    .mainVisual > .logoArea{
        padding: 0 20px;
    }
    .mainTitleArea{
        padding: 0 20px 108px;
    }
    section{
        padding:60px 20px;
    }
    .stkBx{
        position: static;
        transform: inherit;
        padding-top: 32px;
    }
}

@media screen and (max-width: 440px) {
    .mainTitleArea{
        padding: 30px 20px 108px;
        background-size: auto 60%;
    }
    .titleBx{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .titleBx > .subTitle{
        font-size: 2.3rem;
        text-align: center;
    }
    .titleBx > .mainTitle{
        font-size: 3rem;
        margin: 0 auto;
    }
    .tableBx{
        overflow-x: auto; 
    }
    .tableBx > table{
        min-width:440px;
    }
    .processDescBx:first-child{
        width: 130px;
    }
    .processList{
        flex-direction: column;
        gap: 12px 0;
    }
    .processList > li:first-child{
        padding: 0;
        margin: 0;
        border-bottom: 1px solid #cfcfcf;
        padding-bottom: 8px;
        border-right: 0;
    }
    .processList > li > .txt{
        white-space: normal;
    }
    .storeList > li > p{
        word-break: break-all;
    }
}
@media screen and (max-width: 400px) {
    .processDesc{
        flex-direction: column;
        gap: 30px 0;
    }
    .processDescBx:first-child,
    .processDescBx:last-child{
        width:100%;
    }
    .iconList{
        max-width: inherit;
    }
    .contDl > dt{
        width:120px;
    }
}




/*-----------------자주묻는질문*/
#faqaWrap .faqaMenu.faqa > ul{
	
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    background: #e8e8e8;
}
.faqArea > li{
	border-bottom:1px solid #cfcfcf;
}
#faqaWrap .faqaMenu.faqa > ul > li > a{
    padding: 30px 63px 27px 40px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
	background:#fff;
}
#faqaWrap .faqaMenu.faqa > ul > li.active > a{
	background:#fff;
}
.faqArea .icoA,
.faqArea .icoQ{
    display: block;
    background: none;
    color: var(--couponLightC);
    text-indent: 0;
    font-size: 3rem;
    line-height: 1em;
    font-weight: 800;
    height: auto;
    width: auto;
    margin-right: 35px;
}
.faqArea .txt{
    width: calc(100% - 30px - 35px);
    float: inherit;
    font-size: 1.8rem;
    font-weight: 600;
	transition:0.3s;
}
#faqaWrap .faqaMenu.faqa > ul > li .btnMenuDropDown{ 
    top: 32px;
    right: 40px;
    width:20px;
    height:20px;
    transform:rotate(135deg);
    transition: 0.3s;
}
#faqaWrap .faqaMenu.faqa > ul > li .btnMenuDropDown::after{
	display:block;
	width:100%;
	height:4px;
	content:'';
	background:#000;
	position:absolute;
	top:0%;
	left:0;
	margin-top:0;
}
#faqaWrap .faqaMenu.faqa > ul > li .btnMenuDropDown::before{
	display:block;
	width:4px;
	height:100%;
	content:'';
	background:#000;
	position:absolute;
	left:inherit;
	right:0;
	top:0;
	margin:0;
}

#faqaWrap .faqaMenu.faqa > ul > li .btnMenuDropDown:hover,
#faqaWrap .faqaMenu.faqa > ul > li.active .btnMenuDropDown{
	transform:rotate(675deg);
    transition: 0.3s;
}
#faqaWrap .faqaMenu.faqa > ul > li .btnMenuDropDown:hover:before,
#faqaWrap .faqaMenu > ul > li .btnMenuDropDown:focus:before{
	width:4px;
	height:100%;
	margin:0;
}
#faqaWrap .faqaMenu.faqa > ul > li.active > .btnMenuDropDown:before{
    margin: 0;
    width: 4px;
    height: 100%;	
}
.faqArea > li:hover{
	background:inherit;
}
.faqArea > li:hover > a > .txt{
	text-decoration:underline;
	transition:0.3s;
}
#faqaWrap .faqaMenu.faqa > ul > li:hover > a,
#faqaWrap .faqaMenu > ul > li > a:focus {
	border-color:inherit;
	color:inherit;
}
#faqaWrap .faqaMenu.faqa > ul > li > ul.faqTxt{
    display: block;
	background-color:#fcfcfc;
    padding: 0 40px;
    height: 0;
    border: 0;
    transition:0.3s;
}
#faqaWrap .faqaMenu.faqa > ul > li.active > ul.faqTxt{
    padding: 40px 41px 35px;
    border:1px solid #dbdbdb;
    border-bottom:0;
    height:auto;
    transition:0.3s;
}
#faqaWrap .faqaMenu.faqa > ul > li > ul > li{
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.faqArea .faqTxt .txt{
    line-height: 1.5em;
    padding-top: 10px;
	word-break: break-all;
}


#faqaWrap .faqaMenu.faqa > ul > li > ul > li > .txt > div > p{
	font-size: 1.8rem !important;
    font-weight:500 !important;
    white-space: pre-line;
    line-height:1.4em;
}
#faqaWrap .tableBx{
    margin:16px auto;
}
#faqaWrap .tableBx > table tbody tr td,
#faqaWrap .tableBx > table tbody tr:last-child td{
    background-color: #fff;
}
@media all and (max-width:800px){
	#faqaWrap .faqaMenu.faqa > ul > li > a{
    	padding: 16px 24px;
	}
	.faqArea .icoA,
	.faqArea .icoQ{
	    font-size: 32px;
	    margin-right: 24px;
	}
	#faqaWrap .faqaMenu.faqa > ul > li .btnMenuDropDown{
	    width: 20px;
	    height: 20px;
	    right: 20px;
	    top: 16px;
	}
	#faqaWrap .faqaMenu.faqa > ul > li.active .btnMenuDropDown {
	    transform: rotate(675deg) translate(-8px, 8px);
	    transition: 0.3s;
	}
	#faqaWrap .faqaMenu.faqa > ul > li > ul{
	    display: block;
	    padding: 16px 24px 24px;
	}
}


@media all and (max-width:768px){
	.faqArea .icoA,
	.faqArea .icoQ{
	    font-size: 2.4rem;
	    margin-right: 16px;
	}
	.faqArea .faqTxt .txt{
    	padding-top:0;
        flex: 1 1 0;
        word-break: keep-all;
	}
	
    #faqaWrap .faqaMenu.faqa > ul > li.active > ul.faqTxt{
        padding:24px;
    }
    #faqaWrap .faqaMenu.faqa > ul > li > ul > li > .txt > div > p{
        line-height:1.6em;
    }

}

@media all and (max-width:440px){
    #faqaWrap .faqaMenu.faqa > ul > li .btnMenuDropDown{
        width:12px;
        height:12px;
    }
}