@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
@import "reset.css";
@import "nice-select.css";

*, *::before, *::after {box-sizing: border-box;}
html {
    -webkit-touch-callout: none;
     user-select: none;
     -moz-user-select: none;
     -ms-user-select: none;
}
body {
    margin-top: 80px;
	padding: 0;
    
    font-size: 10px;
	font-family: 'Pretendard Variable', Pretendard, sans-serif;
	text-decoration: none;
    letter-spacing: -0.7px;

    overflow-x: hidden;
}
a, button, ul, li {
    background: none;
    margin: 0;
    padding: 0;
    border: 0px;
    list-style: none;

    color: var(--main-black);
	text-decoration: none;
	font-family: 'Pretendard Variable', Pretendard, sans-serif;
}
[hidden] {display: none;}
.scroll::-webkit-scrollbar {display: none;}
.scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
:root {
    --main-yellow: #ffcc33;
    --main-black: #0e0e0e;
    --main-white: #ffffff;

    --bgGray: #f7f7f7;
    --lineGray: #cccccc;
    --midGray: #aaaaaa;
    --darkGray: #666666;

    --main-blue: #338BFF;
    --literacy-blue: #1E2C5F;
    --math-green: #2E8526;

    --font32: 2rem;
    --font20: 1.25rem;
    --font18: 1.125rem;
    --font16: 1rem;
    --font14: 0.88rem;
}
main {
    position: relative;
    color: var(--main-black);
}
.m-br {display: none;}
.hide, .hiding {display: none !important;}
span.stress {color: #D90000; text-decoration:underline;}

.mgl10 {margin-left:10px !important;}
.mgr10 {margin-right:10px !important;}
.mgt10 {margin-top:10px !important;}
.mgb10 {margin-bottom:10px !important;}

/* header */
header {
    position: fixed;
    top: 0;
    z-index: 99;

    width: 100%;
    background-color: #fff;
    transition: background-color .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 1316px;
    padding: 20px;
    margin: 0 auto;
    
    font-size: var(--font16);
}
header .inner a.title {
    display: block;
    width: 170px;
    height: 40px;
    cursor: pointer;
}
header .inner a.title h1 {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/img/logo.png');
    text-indent: -9999px;
}
header .inner .gnb ul {
    display: flex;
    align-items: center;
    gap: 20px;

    text-align: center;
}
header .inner .gnb ul li {
    padding: 8px 20px;
    font-weight: 600;
}
header .inner .gnb ul li:hover {cursor: pointer;}
header .inner .login, header .inner .mypage {
    padding: 8px 20px;
    transition: 0.2s ease-in-out;
    color: var(--main-black);
}
header .inner .login:hover, header .inner .mypage:hover {
    color: var(--main-yellow);
    font-weight: 500;
}

/* form */
section.form {
    width: 540px;
    margin: 0 auto;
}
section.form .inner {
    margin: 0 auto;
    padding: 60px 20px 120px;
    text-align: center;
}
section.form .logo {
    display: block;
    max-width: 120px;
    height: 60px;
    margin: 0 auto;

    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/img/logo.svg');

    text-indent: -9999px;
}
section.form h1 {
    margin: 40px auto 0px;

    font-size: var(--font32);
    font-weight: 700;
}
section.form .inner h2 {
    margin-bottom: 40px;
    font-size: var(--font32);
    font-weight: 700;
}
section.form .sub-txt {
    margin-top: 30px;
    font-size: var(--font16);
    line-height: 1.5;
    color: var(--darkGray);
}
section.form .content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px auto 40px;

    text-align: left;
}
section.form .sub-title {
    display: block;
    margin-bottom: 12px;

    font-size: var(--font20);
    font-weight: 600;
    line-height: 1;
}
section.form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--lineGray);
    
    text-align: left;
    font-size: var(--font16);
    line-height: 1;
}
section.form .fix {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--lineGray);
	background: var(--bgGray);
    text-align: left;
    font-size: var(--font16);
    line-height: 1;
}
section.form .notitle-tel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
section.form .id-box,
section.form .tel .number-box,
section.form .zip-code {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
section.form .password input, section.myinfo-edit .address input, section.myinfo-edit .deposit_bank_num input {margin-bottom: 12px;}
section.form .password input:last-child, section.myinfo-edit .address input:first-child, section.myinfo-edit .address input.address2 {margin-bottom: 0px;}
section.form .dupl-button,
section.form .auth-button,
section.form .code-button {
    height: auto;
    padding: 14px 36px;
    border-radius: 8px;
    background: var(--main-black);

    font-size: var(--font16);
    color: #fff;
    white-space: nowrap;
}
section.form li p {font-size: var(--font14);}
section.form li p.avail {
    margin-top: 10px;
    color: var(--darkGray);
	line-height: 1.2;
    word-break: keep-all;
}
section.form li p.unavail {
    margin-top: 10px;
    color: #D90000;
	line-height: 1.2;
}
section.form li {flex: 1;}
section.form li select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--lineGray);

    font-size: var(--font16);
}
section.form .equal-col,
section.form .equal-3col {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
section.form .equal-col button {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--lineGray);

    font-size: var(--font16);
} 
section.form .equal-col button.active {
    border: 2px solid var(--main-black);
    font-weight: 600;
}
section.form .terms {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
}
section.form .terms a {
    color: var(--midGray);
    text-decoration: underline;
    font-size: var(--font16);
}
section.form .select-box > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
section.form .select-box ul li {flex: 1;}
section.form .select-box ul li .nice-select {
    width: 100%;
    height: 48px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid var(--lineGray);
    text-align: left;
    font-size: var(--font16);
    line-height: 1.2;
}
section.form .select-box ul li .nice-select .list {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 8px;
}
section.form .select-box ul li .nice-select .list li {padding: 4px 16px;}
section.form .chk-box {
    display: flex;
    align-items: center;
}
section.form .chk-box input[type="checkbox"] {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0px 6px 0px 0px;
    border-radius: 4px;
    border: 1px solid var(--lineGray);
    cursor: pointer;
}
section.form .chk-box label {
    cursor: pointer;
    font-size: var(--font16);
}
section.form .final-button {
    width: 100%;
    height: 52px;
    padding: 16px 0px;
    border-radius: 8px;
    background: var(--main-yellow);

    color: var(--main-black);
    font-size: var(--font18);
}
section.form .find-pwd, section.form .find-id {
    margin-top: 20px;
    font-size: var(--font16);
    color: var(--main-black);
}
section.form .find-pwd a, section.form .find-id a {font-weight: 600;}
section.form .hint, section.form .hint {
    margin-top: 16px;
    font-size: var(--font16);
    color: var(--darkGray);
    line-height: 1.5;
}

/* board top, category */
section.top {
    width: 100%;
    height: auto;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/img/sub/sub_mypage.png);
}
section.top .inner {
    max-width: 1316px;
    height: auto;
    padding: 60px 20px;
    margin: 0 auto;
}
section.top .inner h1 {
    margin-bottom: 20px;

    font-size: 3rem;
    font-weight: 600;
    color: #fff;
}
section.top .inner p {
    font-size: var(--font20);
    font-weight: 400;
    color: rgba(255 255 255 / 75%);
}

section.board-category {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--lineGray);
}
section.board-category .inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    text-align: center;
}
section.board-category .inner ul li a {
    display: block;
    padding: 20px;

    color: var(--darkGray);
    font-size: var(--font16);
    line-height: 1;
}
section.board-category .inner ul li.active {
    margin-bottom: -1px;
    border-bottom: 2px solid var(--main-yellow);
}
section.board-category .inner ul li.active a {
    color: var(--main-black);
    font-weight: 500;
}

/* thumnail board */
section.thumnail-board {
    max-width: 932px;
    height: auto;
    margin: 0 auto;
}
section.thumnail-board .inner {margin: 40px 0px;}
section.thumnail-board .board-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 16px;

    margin-top: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--lineGray);
}
section.thumnail-board .board-list .content {
    padding-bottom: 1.25rem;
    text-align: center;
}
section.thumnail-board .board-list .content .thumnail {
    width: 100%;
    aspect-ratio: 1/ 1 ;
    margin-bottom: 12px;
}
section.thumnail-board .board-list .content .thumnail img {width:100%;}
section.thumnail-board .board-list .content p {
    font-size: var(--font16);
    color: var(--darkGray);
}

/* normal board */
section.normal-board {
    max-width: 932px;
    height: auto;
    margin: 0 auto;
}
section.normal-board .nodata, section.normal-board .nodata {padding:100px 0; text-align:center; font-size:1rem;}
section.normal-board .accent_color_r {color: #D90000;}
section.normal-board .inner {margin: 40px 0px;}
section.normal-board .inner .top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;
}
section.normal-board .inner .top h2 {
    font-size: var(--font32);
    font-weight: 700;
}
section.normal-board .inner .top .search-box input {
    min-width: 316px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--lineGray);
}
section.normal-board .board-list .list-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

    border-top: 2px solid var(--main-black);
    border-bottom: 1px solid var(--main-black);
    padding: 16px 0px;

    font-size: var(--font16);
    font-weight: 600;
}
section.normal-board .board-list .list-bottom li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

    padding: 16px 0px;
    border-bottom: 1px solid var(--lineGray);

    font-size: var(--font16);
    font-weight: 300;
}
section.normal-board .board-list .number,
section.normal-board .board-list .date, section.normal-board .board-list .view {
    width: 95px;
    text-align: center;
}
section.normal-board .board-list .title {
    width: 650px;
    text-align: left;
}
section.normal-board .board-view .view-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

    border-top: 1px solid var(--lineGray);
    padding: 16px 0px;
    font-size: var(--font16);
    font-weight: 600;
}
section.normal-board .board-view .view-top:nth-child(1) {border-top: 2px solid var(--main-black);}
section.normal-board .board-view .item {
    width: 15%;
    max-width: 100px;
    text-align: left;
    word-break: keep-all;
}
section.normal-board .board-view .title {
    width: 86%; 
    font-weight: 400;
}
section.normal-board .board-view .writer, section.normal-board .board-view .view
,section.normal-board .board-view .file, section.normal-board .board-view .date {
    width: 35%;
    font-weight: 300;
    line-height: 1.2;
}
section.normal-board .board-view .file a {
    line-height: 1.5;
    text-decoration: underline;
}
section.normal-board .board-view .view-bottom {
    border-top: 1px solid var(--main-black);
    border-bottom: 2px solid var(--main-black);
	min-height: 350px;
	padding: 20px 10px 40px;
}
section.normal-board .board-view .view-bottom .content {
    width: 100%;
    max-width: 910px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
}
section.normal-board .board-view .view-bottom img {max-width: 910px;}
section.normal-board .board-view .view-bottom li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

    padding: 16px 0px;
    border-bottom: 1px solid var(--lineGray);

    font-size: var(--font16);
}
section.normal-board .btn_wrap {
    width: 100%;
    margin: 50px auto 150px;
    text-align: center;
}
section.normal-board .btn_wrap .list-button {
	width: 100%;
	max-width: 500px;
	height: 52px;
	padding: 16px 0px;
	border-radius: 8px;
	background: var(--main-yellow);
	color: var(--main-black);
	font-size: var(--font18);
}
section.normal-board .upload-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    word-break: keep-all;

    font-weight: 400;
}
section.normal-board .upload-wrap .upload-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    background-color: var(--bgGray);
    white-space: nowrap;
    cursor: pointer;
}
section.normal-board .upload-wrap .up-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(/img/sub/up-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
}
section.normal-board .upload-wrap .file-name {line-height: 1.3;}

/* notice-board */
section.normal-board.notice-board .inner .top .search-box form {position: relative;}
section.normal-board.notice-board .inner .top .search-box input {font-size: 0.88rem;}
section.normal-board.notice-board .inner button.search-btn {
    position: absolute;
    top: 22%;
    right: 2%;
    width: 24px;
    height: 24px;
    background-image: url(/img/sub/icon_search.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
}
section.normal-board.notice-board .inner button.used-btn {
	width: 80px;
	padding: 6px 12px;
	margin: 0 0 0 5px;
	background: var(--darkGray);
	color: #fff;
	font-size: var(--font14);
}
section.normal-board .board-list .title .new {
    color:#D90000; 
    margin-left: 5px;
}

/* coupon-board */
section.normal-board.coupon-board .inner {padding:60px 20px; margin:0 auto;}
section.normal-board.coupon-board .inner .top .search-box {width:70%; text-align:right;}
section.normal-board.coupon-board .inner .top .search-box input {width:calc(100% - 110px); max-width:316px; min-width:100px; font-size:1rem;}
section.normal-board.coupon-board .inner button.search-btn {
	width: 100px;
	padding: 14px 20px;
	margin-left: 5px;
	border-radius: 8px;
	background: var(--main-black);
	color: #fff;
	font-size: var(--font14);
}
section.normal-board.coupon-board .inner button.used-btn {
	width: 80px;
	padding: 6px 12px;
	margin: 0 0 0 5px;
	background: var(--darkGray);
	color: #fff;
	font-size: var(--font14);
}			
section.normal-board.coupon-board .coupon-list .list-top span, section.normal-board .coupon-list .list-bottom span {text-align:center;}
section.normal-board.coupon-board .coupon-list .num {width:10%;}
section.normal-board.coupon-board .coupon-list .cnum {width:20%;}
section.normal-board.coupon-board .coupon-list .content {width:50%; line-height:1.2;}
section.normal-board.coupon-board .coupon-list .date {width:20%;}

/* tab status */
.tab-status {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    font-size: var(--font16);
}
.tab-status .tab-list {
    display: flex; 
    align-items: center; 
}
.tab-status .tab-list .tab-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    width: 100px;  
    padding: 16px 0px;
    box-sizing: border-box;
    background: var(--bgGray);
    border: 1px solid var(--bgGray);
    color: #aaa;
    white-space: nowrap;
}
.tab-status .tab-list .tab-item.active {
    background: #fff;
    border: 1px solid var(--main-black);
    color: var(--main-black);
}
.tab-status .tab-list .tab-item:last-child {border-left: 0px;}
.tab-status .tab-list .tab-item.active:last-child {border-left: 1px solid var(--main-black);}

/* pagenation */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;

    font-size: var(--font18);
}
.pagination .ico {
    display: block;
    width: 16px;
    height: 16px;
}
.pagination a {
    display: block;
    padding: 16px;
    line-height: 1;
    text-decoration: none;
    color: var(--lineGray);
}
.pagination a:hover {color: var(--darkGray);}
.pagination .active {
    font-weight: 600;
    color: var(--main-black)
}
.pagination .disabled {pointer-events: none;}

/* footer */
footer {
    width: 100%;
    margin: 0 auto;
    background: var(--bgGray);
}
footer .inner {
    max-width: 1316px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    font-size: 16px;
}
footer .inner a.title {
    display: block;
    width: 120px;
    height: 40px;
    cursor: pointer;
}
footer .inner a.title h1 {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('/img/logo.png');
    text-indent: -9999px;
}
footer .inner .container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}
footer .inner .terms-box {margin: 30px 0px 20px;}
footer .inner .terms-box li {
    display: inline-block;
    margin-right: 20px;
    font-weight: 600;
}
footer .inner .terms-box li a {color: var(--main-black);}
footer .inner .terms-box li:last-child {margin-right: 0px;}
footer .inner .sns-box ul {
    display: flex;
    gap: 16px;
}
footer .inner .sns-box li {
    flex: 1;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    text-indent: -9999px;

    background-color: rgba(0 0 0 / 5%);
    background-size: 22px 22px;
    background-position: center center;
    background-repeat: no-repeat;
}
footer .inner .sns-box li a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
footer .inner .sns-box li.cafe {background-image: url(/img/icon_info_cafe.png);}
footer .inner .sns-box li.instagram {background-image: url(/img/icon_info_instagram.png);}
footer .inner .sns-box li.youtube {background-image: url(/img/icon_info_youtube.png);}
footer .inner .sns-box li.blog {background-image: url(/img/icon_info_blog.png);}
footer .inner .info-box {word-break: keep-all;}
footer .inner .info-box span {
    position: relative;
    display: inline-block;
    margin: 0px 22px 10px 0px;
}
footer .inner .info-box span:after {
    position: absolute;
    display: inline-block;
    content: "";
    top: 3px;
    width: 1px;
    height: 12px;
    margin-left: 12px;
    background-color: rgba(0 0 0 / 20%);
}
footer .inner .info-box span:nth-child(5)::after,
footer .inner .info-box span:last-child::after {display: none;}

.back-to-top {
    display: none;
    position: fixed;
    right: 12%;
    bottom: 4%;
    width: 50px;
    height: 50px;
    z-index: 9;    
    border-radius: 25px;
    border: 1px solid #dbdbdb;

    background: url(/img/back_top.png);
    background-position: center;
    background-size: cover;

    font-size: 14px;
    font-weight: bold;
    color: #6e6e6e;
    text-align: center;
}

/* kakao */
.kakao-chat {
    display: block;
    position: fixed;
    right: 12%;
    bottom: 10%;
    width: 50px;
    height: 50px;
    z-index: 9;
}
.kakao-chat img {width: 100%;}

/* popup */
#promo-popup {
    position: fixed;
    inset: 0;
    overflow: auto;
    z-index: 9999;
}
.promo-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0 0 0 / 70%);
}
.promo-popup__content {
    position: relative;
    z-index: 1;
    width: min(92vw, 480px);
    max-height: min(85svh, 680px);
    margin: 8vh auto;
    padding: 0px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0 0 0 / 50%);
    overflow: auto;
}
.promo-popup__actions {
    display: flex;
    gap: 8px;
    padding: 8px;

    border-top: 1px solid var(--bgGray); 
}
.promo-popup__btn {
    flex: 1;
    padding: 16px 20px;
    border-radius: 100px;
    cursor: pointer;
    border: 0;

    font-size: var(--font18);
}
.promo-popup__btn:hover {background: rgba(0 0 0 / 4%);}
.promo-popup__btn--primary {color: var(--main-black);}
.promo-popup__btn--ghost {color: var(--main-black);}
.popup_img {border-radius: 16px;}
.popup_img img {width: 100%;}
.promo-popup__content.agree_modal {
    overflow:initial;
    width:min(100vw, 540px);
}
.promo-popup__content.agree_modal .popup_tit {
    margin: 0 auto;
    padding: 28px 20px;
    border-bottom: 1px solid var(--bgGray);
    
    text-align: center;
}
.promo-popup__content.agree_modal .popup_tit p {
    font-size: 1.6rem;
    font-weight: 600;
}
.promo-popup__content.agree_modal .popup_cont {
    width: 100%;
    max-height: 450px;
    overflow-y: auto;
}
.promo-popup__content.agree_modal .popup_cont .agree_wrap {
    padding: 28px 20px;
    font-size: 1rem;
    line-height: 1.5;
    word-break: keep-all;
}
.promo-popup__content.agree_modal .popup_cont .agree_wrap span.tit {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--main-black);
}
.promo-popup__content.agree_modal .popup_cont .agree_wrap table th,td {
    border: 1px solid var(--lineGray);
    padding: 4px;

    font-size: var(--font14);
}

.promo-popup__content.bankinfo_modal {
	overflow:initial;
	width:min(100vw, 540px);
}
.promo-popup__content.bankinfo_modal .popup_tit {
	margin: 0 auto;
	padding: 28px 20px;
	border-bottom: 1px solid var(--bgGray);
	text-align: center;
}
.promo-popup__content.bankinfo_modal .popup_tit p {
	font-size: 1.6rem;
	font-weight: 600;
}
.promo-popup__content.bankinfo_modal .popup_cont {
	width: 100%;
	min-height: 200px;
	padding: 40px;
}
.promo-popup__content.bankinfo_modal .popup_cont .hint {
	margin-top: 10px;
	color: var(--darkGray);
	font-size: var(--font14);
	line-height: 1.5;				
}
.promo-popup__content.bankinfo_modal .popup_cont .vbank_info {
	font-size: 1rem;
	line-height: 2;
}
.promo-popup__content.bankinfo_modal .vbank_info li {
	display: inline-block;
	width: 49%;
}
.promo-popup__content.repayment_modal section.form {width:100%;}
.promo-popup__content.repayment_modal section.form input {margin-bottom:12px;}
.promo-popup__content.repayment_modal section.form input:last-child {margin-bottom:0px;}
.promo-popup__content.repayment_modal section.form input[type="file"] {height:48px; padding:7px 16px;}
.promo-popup__content.repayment_modal {
	overflow:initial;
	width:min(100vw, 540px);
}
.promo-popup__content.repayment_modal .popup_tit {
	margin: 0 auto;
	padding: 28px 20px;
	border-bottom: 1px solid var(--bgGray);
	text-align: center;
}
.promo-popup__content.repayment_modal .popup_tit p {
	font-size: 1.6rem;
	font-weight: 600;
}
.promo-popup__content.repayment_modal .popup_cont {
	width: 100%;
	max-height: 450px;
	overflow-y: auto;
	padding: 0 40px 40px;
}
.promo-popup__content.repayment_modal .popup_cont .hint {
	margin-top: 10px;
	color: var(--darkGray);
	font-size: var(--font14);
	line-height: 1.5;				
    word-break: keep-all;
}
.promo-popup__content.repayment_modal section.form .fix {
	width: calc(50% - 5px);
	float: left;
	height: 48px;
}
.promo-popup__content.repayment_modal section.form .equal-col {
	width: calc(50% - 5px);
	float: right;
	display: initial;
	align-items: initial;
}

@media (min-width: 1024px) and (max-width: 1279px) {
    footer {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .back-to-top {right: 2%;}
    .kakao-chat {right: 2%; bottom: 12%;}
}
@media (min-width: 768px) and (max-width: 1023px) {
    section.top {
        width: 100%;
        height: auto;
    
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(/img/sub/sub_mypage.png);
    }
    section.top .inner {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 60px 20px;
        margin: 0 auto;
    }
    header .inner .gnb ul {gap: 0px;}

    /* thumnail board */
    section.thumnail-board {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    section.thumnail-board .inner {
        margin: 40px 0px;
        padding: 0px 20px;
    }

    /* normal board */
    section.normal-board .inner {padding: 0px 20px;}   

    footer {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    .back-to-top {right: 2%;}
    .kakao-chat {right: 2%; bottom: 12%;}
}
@media (max-width: 539px) {
    footer.form {
        width: auto;
        max-width: 100%;
        border-radius: 20px !important;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .m-br {display: inline;}
    header .inner .gnb ul,
    header .inner .login, header .inner .mypage {display: none;}
    header .inner .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        width: 24px;
        height: 16px;

        cursor: pointer;
    }      
    header .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--main-black);
        transition: all 0.3s ease;
    }      
    header .hamburger.active span:nth-child(1) {transform: rotate(45deg) translate(4px, 6px);}
    header .hamburger.active span:nth-child(2) {opacity: 0;}
    header .hamburger.active span:nth-child(3) {transform: rotate(-45deg) translate(4px, -6px);}
    .mobile-menu {
        display: block;
        position: fixed; inset: 0;
        background: #fff;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 10;

        margin-top: 56px;
    }
    .mobile-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu .menu-inner {padding: 80px 20px;}
    .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile-menu li {border-bottom: 1px solid #ededed;}
    .mobile-menu a {
        display: block;
        padding: 20px 4px;

        color: var(--main-black);
        font-size: 1.25rem;
        text-decoration: none;
    }
    
    /* board top, category */
    section.top {
        width: 100%;
        height: auto;

        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(/img/sub/sub_mypage.png);
    }
    section.top .inner {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 40px 20px;
        margin: 0 auto;
    }
    section.top .inner h1 {
        margin-bottom: 20px;

        font-size: var(--font32);
        font-weight: 600;
        color: #fff;
    }
    section.top .inner p {
        font-size: var(--font20);
        font-weight: 400;
        color: rgba(255 255 255 / 75%);
        line-height: 1.5;
    }

    /* thumnail board */
    section.thumnail-board .inner {padding: 0px 20px;}    
    section.thumnail-board .board-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 16px;

        margin-top: 16px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--lineGray);
    }

    /* normal board */
    section.normal-board .inner {padding: 0px 20px;}    

    footer {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }
    footer .inner {padding: 60px 20px;}
    footer .inner .terms-box {margin: 30px 0px 28px;}
    footer .inner .terms-box li a {display: block; margin-bottom: 16px;}
    footer .inner .terms-box li:last-child a {margin-bottom: 0px;}
    footer .inner .container {margin-bottom: 28px;}
    footer .inner .info-box span {margin: 0px 22px 16px 0px;}
    .back-to-top {right: 2%;}
    .kakao-chat {right: 2%; bottom: 12%;}
}
@media (max-width: 479px) {
    .m-br {display: inline;}
    body {margin-top: 56px;}
    header .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    
        max-width: 1316px;
        padding: 12px 20px;
        margin: 0 auto;
        
        font-size: var(--font16);
    }
    header .inner a.title {
        display: block;
        width: 60px;
        height: 32px;
        cursor: pointer;
    }
    header .inner .gnb ul,
    header .inner .login, header .inner .mypage {display: none;}
    header .inner .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        width: 24px;
        height: 16px;

        cursor: pointer;
    }      
    header .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--main-black);
        transition: all 0.3s ease;
    }      
    header .hamburger.active span:nth-child(1) {transform: rotate(45deg) translate(4px, 6px);}
    header .hamburger.active span:nth-child(2) {opacity: 0;}
    header .hamburger.active span:nth-child(3) {transform: rotate(-45deg) translate(4px, -6px);}    
    .mobile-menu {
        display: block;
        position: fixed; inset: 0;
        background: #fff;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 10;
    }
    .mobile-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu .menu-inner {padding: 60px 20px;}
    .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .mobile-menu li {border-bottom: 1px solid #ededed;}
    .mobile-menu a {
        display: block;
        padding: 20px 4px;

        color: var(--main-black);
        font-size: var(--font16);
        text-decoration: none;
    }

    /* form */
    section.form {
        width: 100%;
        margin: 0 auto;
    }    
    section.form .chk-box input[type="checkbox"] {
        display: block;
        width: 16px;
        height: 16px;
        padding: 8px;
        margin: 0px 6px 0px 0px;
        border-radius: 4px;
        border: 1px solid var(--lineGray);
        cursor: pointer;
    }
    .promo-popup__content.agree_modal .popup_cont {word-break: break-word;}
	.promo-popup__content.bankinfo_modal .vbank_info li {
		display: block;
		width: 100%;
	}

    /* board top, category */
    section.top {
        width: 100%;
        height: auto;

        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(/img/sub/sub_mypage.png);
    }
    section.top .inner {
        width: 100%;
        height: auto;
        padding: 40px 20px;
        margin: 0 auto;
    }
    section.top .inner h1 {
        margin-bottom: 20px;

        font-size: var(--font32);
        font-weight: 600;
        color: #fff;
    }
    section.top .inner p {
        font-size: var(--font20);
        font-weight: 400;
        color: rgba(255 255 255 / 75%);
        line-height: 1.5;
    }

    section.board-category {
        width: 100%;
        height: auto;
        border-bottom: 1px solid var(--lineGray);
    }
    section.board-category .inner ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;

        text-align: center;
    }
    section.board-category .inner ul li a {
        display: block;
        padding: 20px;

        color: var(--darkGray);
        font-size: var(--font16);
        line-height: 1;
    }
    section.board-category .inner ul li.active {
        margin-bottom: -1px;
        border-bottom: 2px solid var(--main-yellow);
    }
    section.board-category .inner ul li.active a {
        color: var(--main-black);
        font-weight: 500;
    }

    /* thumnail board */
    section.thumnail-board {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }
    section.thumnail-board .inner {
        margin: 40px 0px;
        padding: 0px 20px;
    }
    section.thumnail-board .board-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 16px;

        margin-top: 16px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--lineGray);
    }

    /* normal board */
    section.normal-board .inner .top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    section.normal-board .inner {padding: 0px 20px;}
    
	/* notice-board */
	section.normal-board.notice-board .inner .top .search-box {width:100%;}
    section.normal-board.notice-board .inner .top .search-box input {
        width: 100%;
        min-width: 100%;
    }
	section.normal-board.notice-board .inner button.used-btn {margin: 5px 0 0 0;}
	section.normal-board.notice-board .board-list .list-top {padding:0px; border-bottom:0px;}
	section.normal-board.notice-board .list-top .title
	,section.normal-board.notice-board .board-list .number
	,section.normal-board.notice-board .board-list .date
	,section.normal-board.notice-board .board-list .view {display:none;}
	section.normal-board.notice-board .board-list .title {width:100%; padding:0 10px;}

	/* coupon-board */
	section.normal-board.coupon-board .inner .top .search-box {width:100%;}
	section.normal-board.coupon-board .inner button.used-btn {margin: 5px 0 0 0;}
	section.normal-board.coupon-board .coupon-list .list-bottom span.br {display:block; margin-top:5px;}
	section.normal-board.coupon-board .coupon-list .num {display:none;}

    footer {
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 0px;
    }
    footer .inner {padding: 40px 20px;}
    footer .inner .terms-box {margin: 30px 0px 12px;}
    footer .inner .terms-box li a {display: block; margin-bottom: 16px;}
    footer .inner .terms-box li:last-child a {margin-bottom: 0px;}
    footer .inner .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        margin-bottom: 28px;
    }
    footer .inner .info-box span {
        margin: 0px 22px 8px 0px;
        line-height: 1.5;
    }
    .back-to-top {right: 2%;}
    .kakao-chat {right: 2%; bottom: 12%;}
}