/* Bootstrap modal custom START*/
@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}
@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}
.spinner-border{
    display:inline-block;
    width:2rem;
    height:2rem;
    vertical-align:text-bottom;
    border:.25em solid currentColor;
    border-right-color:transparent;
    border-radius:50%;
    -webkit-animation:spinner-border .75s linear infinite;
    animation:spinner-border .75s linear infinite}
.spinner-border-sm{
    width:1rem;
    height:1rem;
    border-width:.2em}
@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}
@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0)}50%{opacity:1}}


/* 최근 본 상품 */
.recently_viewed {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(278px);
    transition: .3s ease-in-out;
    display: flex;
    align-items: center;
    width: 278px;
    height: 100vh;
    z-index: 2;
}

.recently_viewed.on {
    transform: translateX(0);
    transition: .3s ease-in-out;
    z-index: 10;
}

.recently_viewed button {
    position: absolute;
    top: 50%;
    left: -126px;
    width: 150px;
    height: 50px;
    background: #000;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    transform: rotate(90deg) translateY(-50%);
}

.recently_viewed .view_wrap {
    width: 100%;
    height: 100vh;
    padding: 192px 80px 0 30px;
    background: #fff;
}

.recently_viewed.on .view_wrap {
    box-shadow: 0 -5px 6px rgba(0, 0, 0, 0.2);
}

.recently_viewed .view_wrap p {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.recently_viewed .view_list {
    position: absolute;
    top: 220px;
    height: 78vh;
    overflow: auto;
}

.recently_viewed .view_list::-webkit-scrollbar {
    display: none;
}

.recently_viewed .view_list li {
    width: 168px;
    height: 168px;
    margin-bottom: 28px;
    border: 1px solid #DDDDDD;
}

.loading-custom {
    position: absolute;
    display: none;
    top: 45%;
    left: 35%;
    z-index: 1001;
    width: 10rem;
    height: 3rem;

}

.loading-custom > div{
    display: block;
    width: calc(100vw*(150/428));
    height: calc(100vw*(40/428));
    line-height: calc(100vw*(40/428));
    text-align: center;
    color:#fff;
    border-radius: calc(100vw*(8/428));
    font-size:calc(100vw*(10/428));
}

.boot_modal_custom {
    display: block;
    width: calc(100vw*(60/428));
    height: calc(100vw*(35/428));
    line-height: calc(100vw*(35/428));
    background-color: #00A9AB;
    border: 1px solid #00A9AB;
    text-align: center;
    color:#fff;
    border-radius: calc(100vw*(8/428));
    font-size:calc(100vw*(15/428));
}
.modal{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1050;
    display:none;
    overflow:hidden;
    outline:0
}
.modal-open .modal{
    overflow-x:hidden;
    overflow-y:auto
}
.modal-dialog{
    position:relative;
    width:auto;
    margin:.5rem;
    pointer-events:none
}
.modal-dialog-centered{
    display:-ms-flexbox;
    display:flex;
    -ms-flex-align:center;
    align-items:center;
    min-height:calc(100% - (.5rem * 2))}
.modal.fade .modal-dialog{
    transition:-webkit-transform .5s ease-out;
    transition:transform .5s ease-out;
    transition:transform .5s ease-out,-webkit-transform .5s ease-out;
    -webkit-transform:translate(0,-100%);
    transform:translate(0,-100%)
}
.modal.show .modal-dialog{
    -webkit-transform:translate(0,0);
    transform:translate(0,0)
}
.modal-content{
    position:relative;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:vertical;
    -webkit-box-direction:normal;
    -ms-flex-direction:column;
    flex-direction:column;
    width:100%;
    pointer-events:auto;
    background-color:#fff;
    border:1px solid rgba(0,0,0,.2);
    border-radius:.6rem;outline:0;
}
.modal-header{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:start;
    -ms-flex-align:start;
    align-items:flex-start;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    padding:1rem;
    border-bottom:1px solid #e9ecef;
    border-top-left-radius:.3rem;
    border-top-right-radius:.3rem
}
.modal-header .close{
    padding:1rem;
    margin:-1rem -1rem -1rem auto
}
.modal-body{
    position:relative;
    -webkit-box-flex:1;
    -ms-flex:1 1 auto;
    flex:1 1 auto;
    padding:1rem
}
.modal-footer{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -webkit-box-pack:end;
    -ms-flex-pack:end;
    justify-content:flex-end;
    padding:1rem;
    border-top:1px solid #e9ecef
}
.modal-footer>:not(:first-child){
    margin-left:.25rem
}
.modal-footer>:not(:last-child){
    margin-right:.25rem
}
@media (min-width:576px){
    .modal-dialog{max-width:500px;margin:1.75rem auto}}
/* Bootstrap modal custom END */

/* -------- header -------- */
/* pc */
.mobile_header {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 11;
}

.header.on {
    border: none;
    background: #fff;
}

.header .inner {
    display: flex;
    align-items: center;
    width: 1520px;
    height: 94px;
    padding: 20px 0 13px;
    margin: 0 auto;
}

.header .top_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header .logo {
    width: 160px;
    height: 41px;
}

.header .logo img {
    object-fit: contain;
}

.header .util {
    display: flex;
    align-items: center;
}

.header .logo a {
    display: inline-block ;
    width: 100%;
    height: 100%;
}

.header .wrap_util {
    display: flex;
    align-items: center;
}

.header .img {
    display: inline-block;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.header .img.cart {
    position: relative;
}

.header .img.cart img {
    width: 80%;
    margin: 0 auto;
    object-fit: contain;
}

.header .img.cart .num {
    position: absolute;
    top: -1px;
    right: -6px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.header .list {
    margin-left: 30px;
    font-size: 18px;
}

.header .list.login {
    display: none;
}

.header .nav {
    position: fixed;
    top: 94px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    width: 100%;
    height: 0;
    padding: 5px;
    background: #fff;
}

.header .nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 1520px;
    margin: 0 auto;
}

.header .nav li {
    font-size: 22px;
}

.header .nav li a:hover {
    text-decoration: underline;
}

.header .nav li::before {
    content: '|';
    margin: 0 45px;
}

.header .nav li:first-child::before {
    display: none;
}

.header .btn_list {
    margin-left: 30px;
}

.header .btn_list .btn_box {
    z-index: 10;
}

.header .btn_box button {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    font-size: 18px;
}

.header .btn_box button::after {
    content: '';
    display: inline-block;
    width: 13px;
    height: 18px;
    margin-left: 0.2rem;
    vertical-align: middle;
    background: url('/img/icon/triangle-474727a203fbd5c4e9a6e2b9bca0611e.png') no-repeat center / 65%;
    transition: all .3s;
}

.header .btn_box ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 0 20px;
    background: #fff;
}

.header .btn_box li {
    margin: 0 0 5px;
    text-align: right;
    line-height: 40px;
    font-size: 17px;
    color: #000;
    white-space: nowrap;
}

.header .btn_box li:hover {
    text-decoration: underline;
    text-underline-position: under;
}

/* btn_box.on */
.header .btn_list .btn_box.on {
    position: relative;
}

.header .btn_list .btn_box.on button {
    text-align: right;
}

.header .btn_list .btn_box.on ul {
    display: block;
    border: 1px solid #eee;
}

/* 스크롤 내렸을때 */
.header .nav.active {
    visibility: visible;
    height: 50px;
    border-bottom: 1px solid #eee;
    opacity: 1;
    z-index: 1;
}

/* 검색창 */
.search_bar {
    position: fixed;
    top: 94px;
    transition: all .3s ease-out;
    width: 100%;
    height: 0;
    visibility: hidden;
}

.search_bar .overlay {
    display: none;
}

.search_bar .form_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

.search_bar.on .form_wrap {
    transition: all .3s ease-out;
    width: 100%;
    height: 100%;
    padding: 96px 0 20px;
    visibility: visible;
    background: #fff;
}

.search_bar.on::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
}

.search_bar .input_box {
    display: flex;
    align-items: center;
}

.search_bar .input_wrap {
    display: flex;
    align-items: center;
    width: 700px;
    height: 60px;
    padding: 0 20px;
    margin-right: 10px;
    border: 1px solid #000;
}

.search_bar .img {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.search_bar input {
    width: 100%;
    height: 100%;
    font-size: 18px;
}

.search_bar input::placeholder {
    color: #777;
}

.search_bar .btn_search {
    width: 150px;
    height: 60px;
    background: #000;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.search_bar .btn_close {
    display: none;
}

.search_bar.on .btn_close {
    display: flex;
    align-items: center;
    margin: 47px auto 0;
    font-size: 16px;
}

.search_bar .btn_close span {
    width: 12px;
    height: 12px;
    margin-left: 8px;
}

.search_bar .related_search {
    height: 190px;
    margin: 20px 0 0;
}

.search_bar .related_search p {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.search_bar .related_search ul {
    display: none;
    overflow: auto;
    height: 150px;
}

.search_bar .related_search li {
    width: 100%;
    list-style-type: '˙';
    list-style-position: inside;
    font-size: 18px;
    color: #777777;
}

.search_bar .related_search li + li {
    margin-top: 5px;
}

.search_bar.on {
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    z-index: 1;
    height: 460px;
}

.search_bar::before {
    opacity: 0;
    transition: .3s ease-out;
}

.search_bar.on .form_wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 94px;
    left: 0;
    opacity: 1;
    z-index: -1;
    transition: .3s ease-out;
    width: 100vw;
    height: calc(100vh - 94px);
    background: rgba(0, 0, 0, 0.5);
}

.search_bar fieldset {
    width: 860px;
}

/* -------- footer -------- */
.footer {
    width: 100%;
    background: #14151d;
}

.footer .inner {
    width: 1520px;
    margin: 0 auto;
    padding: 20px 0 30px;
}

.footer .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 50px;
}

.footer .top ul {
    display: flex;
    align-items: center;
}

.footer .top li {
    padding: 0 30px;
    border-right: 1px solid #777;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.footer .top li span {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.footer .top li:first-child {
    padding: 0 40px 0 25px;
}

.footer .top li:last-child {
    border: none;
}

.footer .top .icon {
    display: inline-block;
    vertical-align: sub;
    width: 8px;
    filter: invert(100%);
}

.footer .top button {
    position: relative;
    width: 191px;
    height: 50px;
    padding: 0 30px;
    background: rgba(255, 255, 255, 0.1);
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.footer .top button::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url('/img/icon/next_arrow_2-12d0bbfcb21931933103e5fdb47ca6f2.svg') no-repeat center / cover;
    filter: invert(100%) sepia(0%) saturate(3586%) hue-rotate(88deg) brightness(101%) contrast(101%);
}

.footer .middle {
    display: flex;
    justify-content: space-between;
    padding: 0 0 60px;
    margin: 0 0 20px;
    border-bottom: 1px solid #333333;
}

.footer .logo_wrap {
    display: flex;
}

.footer .logo {
    width: 506px;
    height: 221px;
    padding: 80px;
    margin-right: 23px;
}

.footer .logo img {
    object-fit: contain;
    filter: invert(0%) sepia(4%) saturate(11%) hue-rotate(325deg) brightness(81%) contrast(85%);
}

.footer .info_text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer .info_text>div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 515px;
}

.footer .info_text p {
    width: 100%;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 500;
    color: #ccc;
}

.footer dl {
    display: flex;
    margin: 0 30px 8px 0;
}

.footer dt {
    margin-right: 10px;
    font-size: 13px;
    color: #777;
}

.footer dd {
    font-size: 13px;
    color: #ccc;
}

.footer dd span {
    font-size: 13px;
    color: #ccc;
}

.footer .info_text p.copyright {
    margin: 0;
    letter-spacing: -0.3px;
    font-size: 14px;
    font-weight: normal;
    color: #777;
}

.footer .list_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer .icon_wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-direction: column;
}

.footer .icon_wrap a {
    display: block;
    width: 28px;
    height: 28px;
}

.footer .icon_wrap .icon {
    width: 94px;
    height: 67px;
}

.footer .ismsp {
    position: relative;
}

.footer .ismsp:hover .hover_box {
    display: block;
}

.footer .hover_box {
    display: none;
    position: absolute;
    top: -100%;
    left: -80%;
    width: 270px;
    padding: 12px;
    margin-top: -10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.footer .hover_box::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -11px;
    left: 114px;
    width: 0;
    border-style: solid;
    border-width: 11px 11px 0;
    border-color: rgba(255, 255, 255, 0.1) transparent;
}

.footer .hover_box dl {
    margin: 0 0 5px;
}

.footer .hover_box dl:last-child {
    margin: 0;
}

.footer .hover_box dt,
.footer .hover_box dd {
    font-size: 11px;
}

.footer .site_list {
    display: flex;
    align-items: center;
}

.footer .site_list li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 254px;
    height: 131px;
}

.footer .site_list li:first-child img {
    display: block;
    width: 80%;
    margin: 0 auto;
}

/* -------- 공통CSS -------- */
.pc { display: block; }
/*.mobile { display: none; }*/

/* -------- scroll_disable -------- */
body.scroll_disable {
    overflow: hidden;
}

/* -------- inner -------- */
.inner {
    width: 1520px;
    margin: 0 auto;
}

/* -------- font -------- */
/* noto sans */
/* @font-face {
    font-family: 'Noto Sans KR';
    src: url(../font/NotoSansKR-Thin.otf) format('opentype');
    font-weight: 100;
}

@font-face {
    font-family: 'Noto Sans KR';
    src: url(../font/NotoSansKR-Light.otf) format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Noto Sans KR';
    src: url(../font/NotoSansKR-Regular.otf) format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Noto Sans KR';
    src: url(../font/NotoSansKR-Medium.otf) format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Noto Sans KR';
    src: url(../font/NotoSansKR-Bold.otf) format('opentype');
    font-weight: bold;
}

@font-face {
    font-family: 'Noto Sans KR';
    src: url(../font/NotoSansKR-Black.otf) format('opentype');
    font-weight: 900;
} */

* {
    font-family: 'Noto Sans KR';
    /*color: #111;*/
}

/* -------- scrollbar -------- */
/*::-webkit-scrollbar {*/
/*    width: 5px;*/
/*    height: 5px;*/
/*}*/

/*::-webkit-scrollbar-thumb {*/
/*    background: #000;*/
/*}*/

/*::-webkit-scrollbar-track {*/
/*    background: #EEE;*/
/*}*/

/* -------- modal -------- */
.pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.pop_content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 40px;
    border-radius: 10px;
    background: #fff;
}

.pop_content .title {
    padding: 0 0 20px;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
}

.pop_content .title h3 {
    font-size: 22px;
    font-weight: 500;
}

.pop_content .btn_wrap {
    display: flex;
    align-items: center;
}

.pop_content .btn_wrap button {
    width: 215px;
    height: 60px;
    font-size: 20px;
    font-weight: 500;
}

.pop_content .btn_wrap button:first-child {
    margin-right: 10px;
    border: 1px solid #000;
    color: #000;
}

.pop_content .btn_wrap button:last-child {
    background: #000;
    color: #fff;
}

/* one_option */
.one_option {
    display: none;
}

.one_option .pop_content {
    width: 520px;
}

.one_option .pop_content .prd_title {
    height: auto;
    margin: 0 0 56px;
}

.one_option .prd_title p {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

.one_option .prd_title span {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

.one_option .count_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 14px;
    border-bottom: 1px solid #DDDDDD;
}

.one_option .count_wrap label {
    font-size: 20px;
}

.one_option .count_wrap div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #BBBBBB;
}

.one_option .count_wrap button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.one_option .count_wrap input {
    width: 100%;
    background: transparent;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.one_option .total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 35px;
}

.one_option .total p {
    font-size: 20px;
}

.one_option .total span {
    font-size: 22px;
    font-weight: bold;
}

/* more_option */
.more_option {
    display: none;
}

.more_option .pop_content {
    width: 520px;
}

.more_option .pop_content .title {
    padding: 0 0 30px;
}

.more_option ul {
    overflow: auto;
    height: 330px;
    padding-bottom: 30px;
}

.more_option ul::-webkit-scrollbar {
    display: none;
}

.more_option li {
    padding: 20px 0 10px;
    border-bottom: 1px solid #DDDDDD;
}

.more_option li:last-child {
    border: none;
}

.more_option .prd_title {
    height: auto;
    font-size: 18px;
    font-weight: normal;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.more_option li div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.more_option li>div {
    align-items: flex-start;
}

.more_option div label {
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

.more_option .input_wrap {
    width: 150px;
    height: 40px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #BBBBBB;
}

.more_option .input_wrap button {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
}

.more_option .input_wrap input {
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.more_option .total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 35px;
}

.more_option .total p {
    font-size: 20px;
    font-weight: 500;
}

.more_option .total span {
    font-size: 22px;
    font-weight: bold;
}

/* 품절일때 .more_option li.sold_out */
.more_option li.sold_out {
    pointer-events: none;
}

.more_option li.sold_out label {
    color: #ACACAC;
}

.more_option li.sold_out .input_wrap {
    opacity: 0.5;
}

.more_option li.sold_out .input_wrap button,
.more_option li.sold_out .input_wrap input {
    opacity: 0.5;
}

/* delete_pop */
.delete_pop .pop_content {
    width: 520px;
    padding: 60px 40px 40px;
}

.delete_pop .pop_content p {
    margin: 0 0 51px;
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    color: #333;
}

/* -------- top_btn -------- */
/*.top_btn {*/
/*    position: fixed;*/
/*    bottom: 50px;*/
/*    right: 80px;*/
/*    transition: all .3s ease-out;*/
/*    z-index: 2;*/

/*    width: 80px;*/
/*    height: 80px;*/
/*    border-radius: 40px;*/
/*    border: 2px solid #000;*/
/*    background: #000;*/
/*    cursor: pointer;*/
/*}*/

/*.top_btn img {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    transition: all .3s ease-out;*/
/*    width: 25px;*/
/*    height: 31px;*/
/*}*/

/*.top_btn:hover {*/
/*    transition: all .3s ease-out;*/
/*    border: 2px solid #000;*/
/*    background: #fff;*/
/*}*/

/*.top_btn:hover img {*/
/*    transform: translate(-50%, -70%);*/
/*    transition: all .3s ease-out;*/
/*    filter: invert(150%) sepia(0%) saturate(0%) hue-rotate(18deg) brightness(103%) contrast(101%);*/
/*}*/

/* -------- select -------- */
.select_box {
    position: relative;
    height: 60px;
}

.select {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 1px solid #BCBCBC;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    color: #ACACAC;
}

.select.on {
    color: #333333;
}

.select.border.on {
    z-index: 2;
    border-color: #000;
}

.select.border.active {
    z-index: 2;
    border-color: #000;
}

.select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%) rotate(90deg);
    transition: .3s;

    width: 26px;
    height: 26px;
    background: url('/img/icon/next_arrow_2-12d0bbfcb21931933103e5fdb47ca6f2.svg') no-repeat center / contain;
    filter: invert(0%) sepia(100%) saturate(0%) hue-rotate(21deg) brightness(0%) contrast(999%);
}

.select.active::after {
    transform: translateY(-50%) rotate(-90deg);
    transition: .3s;
}

.select_list {
    display: none;
    overflow: hidden auto;
    position: absolute;
    top: 100%;
    width: 100%;
    max-height: 202px;
    margin-top: -1px;
    border: 1px solid #DDDDDD;
    border-top: 1px solid #BCBCBC;
    background: #fff;
}

.select_list.on {
    z-index: 2;
    display: block;
}

.select_list li {
    line-height: 60px;
    font-size: 18px;
    color: #333;
}

.select_list span {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: inline-block;
    cursor: pointer;
}

/* 품절일때 */
.select_list li.sold_out span {
    color: #ACACAC;
    pointer-events: none;
}

/* wrap_content */
#wrap_content {
    padding: 144px 0 0;
}

/* pagination */
.pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.pagination .img a {
    display: block;
    width: 100%;
    height: 100%;
}

.pagination .next img {
    transform: rotate(180deg);
}

.pagination li:last-child .img {
    margin: 0;
}

.pagination li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

.pagination li.mobile {
    display: block;
}

.pagination li:nth-last-child(3) {
    margin: 0;
}

.pagination li.active {
    background: #000;
    color: #fff;
}

.pagination .next:nth-last-child(2) {
    margin-left: 50px;
}

.pagination .img:nth-child(2) {
    margin-right: 50px;
}

.pagination .img.disable {
    opacity: 0.3;
}

/* prd_text */
.text_box {
    margin: 15px 0 0;
    cursor: default;
}

.prd_title {
    height: 64px;
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 500;
    color: #333;

    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ex_price {
    font-size: 20px;
    font-weight: 500;
    color: #999999;
}

.now_price_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.now_price {
    display: flex;
    align-items: flex-end;
    font-size: 22px;
    font-weight: bold;
}

.now_price span {
    margin-right: 8px;
}

.discount {
    display: inline-block;
    padding: 0 10px;
    margin-left: 10px;
    border: 1px solid #FF6900;
    border-radius: 7px;
    line-height: 1.5;
    font-size: 20px;
    font-weight: bold;
    color: #FF6900;
}

.sub_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    font-size: 18px;
}

.sub_price p {
    font-weight: bold;
    color: #AC775E;
}

.sub_price span {
    font-weight: 500;
    color: #AC775E;
}

/* checkbox */
.check {
    display: flex;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"] {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    position: relative;
}

input[type="checkbox"]::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 1px solid #BBBBBB;
    background: #fff;
    cursor: pointer;
}

input[type="checkbox"]:checked::after {
    background: #fff url('/img/icon/check-cac87298a980209dd78a3a59ac17bcfa.svg') no-repeat center / 80%;
    border-color: #000;
    cursor: pointer;
}

/* round_check */
.round_check {
    display: flex;
    align-items: center;
}

.round_check input::after {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.round_check input:checked::after {
    border-color: #fff;
    background-size: 60%;
    filter: invert(100%);
}

.round_check label {
    padding-left: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

/* dot_check */
.dot_check {
    display: flex;
    align-items: center;
}

.dot_check input[type="radio"] {
    position: relative;
    width: 24px;
    height: 24px;
}

.dot_check input[type="radio"]::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);

    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid#BCBCBC;
    background: #fff;
    cursor: pointer;
}

.dot_check input[type="radio"]:checked::before {
    border-color: #000;
    cursor: pointer;
}

.dot_check input[type="radio"]:checked::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 14px;
    height: 14px;
    margin-left: 5px;
    border-radius: 50%;
    background: #000;
}

.dot_check input[type="radio"]+label {
    padding-left: 10px;
    cursor: pointer;
}

/*.mobile {
    display: none;
}*/

/* textarea */
textarea::placeholder {
    color: #ACACAC;
}

textarea::-webkit-scrollbar {
    background: #EEEEEE;
}

textarea::-webkit-scrollbar-thumb {
    background: #000;
}

textarea:valid {
    border-color: #000;
}

.count {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 15px;
    right: 20px;
    width: fit-content;
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #ACACAC;
}

.count span {
    width: fit-content;
    margin-right: 5px;
    font-size: 18px;
    font-weight: 500;
    color: #ACACAC;
}

.count span::after {
    content: '/';
    margin-left: 5px;
}

textarea:valid+.count,
textarea:valid+.count span {
    color: #000;
}

/* input */
input::placeholder {
    color: #ACACAC;
}

/* 상품 이미지 호버 */
/*.img_wrap img {*/
/*    transition: all .4s ease-out;*/
/*    margin: 0;*/
/*}*/

/*.img_wrap .img {*/
/*    border: 1px solid #ddd;*/
/*    overflow: hidden;*/
/*}*/

/*.img_wrap:hover img:not(span img, .top_head img) {*/
/*    transform: scale(1.1);*/
/*    cursor: pointer;*/
/*}*/

/* input date */
.date_empty:before {
    content: attr(data-placeholder);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}

/* sold_out */
/*.sold_out .img_wrap {*/
/*    position: relative;*/
/*}*/

/*.sold_out .img_wrap::after {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/

/*    content: 'Coming Soon';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/

/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*    font-size: 25px;*/
/*    font-weight: bold;*/
/*    color: #fff;*/
/*}*/

/*.sold_out .top_text {*/
/*    z-index: 1;*/
/*}*/

/*.sold_out .btn_wrap {*/
/*    z-index: 1;*/
/*}*/


/* ------------------------------------------------------- */
/* ------------------------ media ------------------------ */
/* ------------------------------------------------------- */

/* ------------------------ 와이드모니터 ------------------------ */
@media all and (min-width: 1921px) {
    .header .inner{
        max-width: 1880px;
        margin: 0 auto;
    }

    .header .nav ul {
        max-width: 1880px;
        margin: 0 auto;
        padding: 0 80px;
    }
}

/* ------------------------ 태블릿 ------------------------ */
@media all and (max-width:1600px) {
    /* 최근 본 상품 */
    .recently_viewed {
        width: calc(100vw * (278 / 1600));
        transform: translateX(calc(100vw * (278 / 1600)));
    }

    .recently_viewed button {
        left: calc(100vw * (-125 / 1600));
        width: calc(100vw * (150 / 1600));
        height: calc(100vw * (50 / 1600));
        margin-right: calc(100vw * (-50 / 1600));
        font-size: calc(100vw * (18 / 1600));
    }

    .recently_viewed .view_wrap {
        padding: calc(100vw * (192 / 1600)) calc(100vw * (80 / 1600)) 0 calc(100vw * (30 / 1600));
    }

    .recently_viewed.on .view_wrap {
        box-shadow: 0 calc(100vw * (-5 / 1600)) calc(100vw * (6 / 1600)) rgba(0, 0, 0, 0.2);
        -webkit-overflow-scrolling: touch;
    }

    .recently_viewed .view_wrap p {
        margin-bottom: calc(100vw * (10 / 1600));
        font-size: calc(100vw * (16 / 1600));
    }

    .recently_viewed .view_list {
        top: calc(100vw * (220 / 1600));
    }

    .recently_viewed .view_list li {
        width: calc(100vw * (168 / 1600));
        height: calc(100vw * (168 / 1600));
        margin-bottom: calc(100vw * (28 / 1600));
    }

    /* header */
    .header .inner {
        width: calc(100vw * (1520/1600));
        height: calc(100vw * (94/1600));
        padding: calc(100vw * (20/1600)) 0 calc(100vw * (13/1600));
    }

    .header .logo {
        width: calc(100vw * (160/1600));
        height: calc(100vw * (41/1600));
    }

    .header .img {
        width: calc(100vw * (32/1600));
        height: calc(100vw * (32/1600));
    }

    .header .img.cart .num {
        top: calc(100vw * (-1/1600));
        right: calc(100vw * (-6/1600));
        width: calc(100vw * (20/1600));
        height: calc(100vw * (20/1600));
        font-size: calc(100vw * (11/1600));
    }

    .header .list {
        margin-left: calc(100vw * (30/1600));
        font-size: calc(100vw * (18/1600));
    }

    .header .nav {
        top: calc(100vw * (94/1600));
        width: 100%;
        padding: 0;
    }

    .header .nav ul {
        width: calc(100vw * (1520/1600));
    }

    .header .nav li {
        display: flex;
        align-items: center;
        line-height: calc(100vw * (50/1600));
        font-size: calc(100vw * (22/1600));
    }

    .header .nav li::before {
        margin: 0 calc(100vw * (45/1600));
    }

    .header .nav li a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .header .nav.active {
        height: calc(100vw * (50/1600));
        border: none;
    }

    .header .btn_list {
        margin-left: calc(100vw * (30/1600));
    }

    .header .btn_box button {
        font-size: calc(100vw * (18/1600));
    }

    .header .btn_box button::after {
        width: calc(100vw * (13/1600));
        height: calc(100vw * (18/1600));
    }

    .header .btn_box ul {
        padding: 0 calc(100vw * (20/1600));
    }

    .header .btn_box li {
        margin: 0 0 calc(100vw * (5/1600));
        line-height: calc(100vw * (40/1600));
        font-size: calc(100vw * (17/1600));
    }


    /* -------- footer -------- */
    .footer .inner {
        width: calc(100vw * (1520/1600));
        padding: calc(100vw * (20/1600)) 0 calc(100vw * (30/1600));
    }

    .footer .top {
        margin: 0 0 calc(100vw * (50/1600));
    }

    .footer .top li {
        padding: 0 calc(100vw * (30/1600));
        font-size: calc(100vw * (16/1600));
    }

    .footer .top li:first-child {
        padding: 0 calc(100vw * (40/1600)) 0 calc(100vw * (25/1600));
    }

    .footer .top li span {
        font-size: calc(100vw * (16/1600));
    }

    .footer .top .icon {
        width: calc(100vw * (8/1600));
    }

    .footer .top button {
        width: calc(100vw * (191/1600));
        height: calc(100vw * (50/1600));
        padding: 0 calc(100vw * (30/1600));
        font-size: calc(100vw * (15/1600));
    }

    .footer .top button::after {
        right: calc(100vw * (20/1600));
        width: calc(100vw * (24/1600));
        height: calc(100vw * (24/1600));
    }

    .footer .middle {
        padding: 0 0 calc(100vw * (60/1600));
        margin: 0 0 calc(100vw * (20/1600));
    }

    .footer .logo {
        width: calc(100vw * (506/1600));
        height: calc(100vw * (221/1600));
        margin-right: calc(100vw * (23/1600));
        padding: calc(100vw * (80/1600));
    }

    .footer .info_text>div {
        width: calc(100vw * (600/1600));
    }

    .footer .info_text p {
        margin: 0 0 calc(100vw * (10/1600));
        font-size: calc(100vw * (16/1600));
    }

    .footer dl {
        margin: 0 calc(100vw * (30/1600)) calc(100vw * (8/1600)) 0;
    }

    .footer dt {
        margin-right: calc(100vw * (10/1600));
        font-size: calc(100vw * (13/1600));
    }

    .footer dd,
    .footer dd span {
        font-size: calc(100vw * (13/1600));
    }

    .footer .info_text p.copyright {
        letter-spacing: calc(100vw * (-0.3/1600));
        font-size: calc(100vw * (14/1600));
    }

    .footer .icon_wrap a {
        width: calc(100vw * (28/1600));
        height: calc(100vw * (28/1600));
    }

    .footer .icon_wrap .icon {
        width: calc(100vw * (94/1600));
        height: calc(100vw * (67/1600));
    }

    .footer .hover_box {
        top: -100%;
        left: auto;
        right: 0;
        width: calc(100vw * (306/1600));
        padding: calc(100vw * (12/1600));
        margin-top: calc(100vw * (-10/1600));
        border-radius: calc(100vw * (5/1600));
    }

    .footer .hover_box::after {
        bottom: calc(100vw * (-11/1600));
        left: auto;
        right: calc(100vw * (10/1600));
        border-width: calc(100vw * (11/1600)) calc(100vw * (11/1600)) 0;
    }

    .footer .hover_box dl {
        margin: 0 0 calc(100vw * (5/1600));
    }

    .footer .hover_box dt,
    .footer .hover_box dd {
        font-size: calc(100vw * (11/1600));
    }

    .footer .site_list li {
        width: calc(100vw * (254/1600));
        height: calc(100vw * (131/1600));
    }

    .footer .store dl:nth-child(3) {
        width: 50%;
    }


    /* wrap_content */
    #wrap_content {
        padding: calc(100vw * (144/1600)) 0 0;
    }

    /* search_bar 검색창 */
    .search_bar {
        top: calc(100vw * (94/1600));
    }

    .search_bar.on .form_wrap {
        padding: calc(100vw * (96/1600)) 0 calc(100vw * (20/1600));
    }

    .search_bar .input_wrap {
        width: calc(100vw * (700/1600));
        height: calc(100vw * (60/1600));
        padding: 0 calc(100vw * (20/1600));
        margin-right: calc(100vw * (10/1600));
    }

    .search_bar .img {
        width: calc(100vw * (32/1600));
        height: calc(100vw * (32/1600));
        margin-right: calc(100vw * (15/1600));
    }

    .search_bar input {
        font-size: calc(100vw * (18/1600));
    }

    .search_bar .btn_search {
        width: calc(100vw * (150/1600));
        height: calc(100vw * (60/1600));
        font-size: calc(100vw * (20/1600));
    }

    .search_bar.on .btn_close {
        margin: calc(100vw * (47/1600)) auto 0;
        font-size: calc(100vw * (16/1600));
    }

    .search_bar .btn_close span {
        width: calc(100vw * (12/1600));
        height: calc(100vw * (12/1600));
        margin-left: calc(100vw * (8/1600));
    }

    .search_bar .related_search {
        margin: calc(100vw * (20/1600)) 0 0;
        height: calc(100vw * (190/1600));
    }

    .search_bar .related_search p {
        margin: 0 0 calc(100vw * (10/1600));
        font-size: calc(100vw * (20/1600));
    }

    .search_bar .related_search ul {
        height: calc(100vw * (150/1600));
    }

    .search_bar .related_search li {
        line-height: calc(100vw * (30/1600));
        font-size: calc(100vw * (18/1600));
    }

    .search_bar .related_search li + li {
        margin-top: calc(100vw * (5/1600));
    }

    .search_bar.on {
        height: calc(100vw * (460/1600));
    }

    .search_bar fieldset {
        width: calc(100vw * (860/1600));
    }

    /* -------- inner -------- */
    .inner {
        width: calc(100vw * (1520/1600));
    }

    /* -------- top_btn -------- */
/*    .top_btn {*/
/*        bottom: calc(100vw * (50/1600));*/
/*        right: calc(100vw * (80/1600));*/
/*        width: calc(100vw * (80/1600));*/
/*        height: calc(100vw * (80/1600));*/
/*        border-radius: 50%;*/
/*        border: calc(100vw * (2/1600)) solid #000;*/
/*    }*/

/*    .top_btn img {*/
/*        width: calc(100vw * (25/1600));*/
/*        height: calc(100vw * (31/1600));*/
/*    }*/

/*    .top_btn:hover {*/
/*        border: calc(100vw * (2/1600)) solid #000;*/
/*    }*/

    /* prd_text */
    .text_box {
        margin: calc(100vw * (15/1600)) 0 0;
    }

    .prd_title {
        height: calc(100vw * (64/1600));
        margin: 0 0 calc(100vw * (6/1600));
        font-size: calc(100vw * (22/1600));
    }

    .ex_price {
        font-size: calc(100vw * (20/1600));
    }

    .now_price {
        font-size: calc(100vw * (22/1600));
    }

    .now_price span {
        margin-right: calc(100vw * (8/1600));
    }

    .discount {
        padding: 0 calc(100vw * (10/1600));
        font-size: calc(100vw * (20/1600));
    }

    .sub_price {
        margin-top: calc(100vw * (4/1600));
        font-size: calc(100vw * (18/1600));
    }

    /* -------- modal -------- */
    .pop_content {
        padding: calc(100vw * (30/1600)) calc(100vw * (40/1600));
        border-radius: calc(100vw * (10/1600));
    }

    .pop_content .title {
        padding: 0 0 calc(100vw * (20/1600));
        border-bottom: calc(100vw * (2/1600)) solid #000;
    }

    .pop_content .title h3 {
        font-size: calc(100vw * (22/1600));
    }

    .pop_content .btn_wrap button {
        width: calc(100vw * (215/1600));
        height: calc(100vw * (60/1600));
        font-size: calc(100vw * (20/1600));
    }

    .pop_content .btn_wrap button:first-child {
        margin-right: calc(100vw * (10/1600));
    }

    /* one_option */
    .one_option .pop_content {
        width: calc(100vw * (520/1600));
    }

    .one_option .prd_title {
        margin: 0 0 calc(100vw * (56/1600));
    }

    .one_option .prd_title p {
        margin: 0 0 calc(100vw * (5/1600));
        font-size: calc(100vw * (22/1600));
    }

    .one_option .prd_title span {
        font-size: calc(100vw * (22/1600));
    }

    .one_option .count_wrap {
        padding: 0 0 calc(100vw * (14/1600));
    }

    .one_option .count_wrap label {
        font-size: calc(100vw * (20/1600));
    }

    .one_option .count_wrap div {
        width: calc(100vw * (150/1600));
        height: calc(100vw * (40/1600));
        padding: 0 calc(100vw * (10/1600));
        border-radius: calc(100vw * (4/1600));
    }

    .one_option .count_wrap button {
        width: calc(100vw * (24/1600));
        height: calc(100vw * (24/1600));
    }

    .one_option .count_wrap input {
        font-size: calc(100vw * (18/1600));
    }

    .one_option .total {
        padding: calc(100vw * (15/1600)) 0 calc(100vw * (35/1600));
    }

    .one_option .total p {
        font-size: calc(100vw * (20/1600));
    }

    .one_option .total span {
        font-size: calc(100vw * (22/1600));
    }

    /* more_option */
    .more_option .pop_content {
        width: calc(100vw * (520/1600));
    }

    .more_option .pop_content .title {
        padding: 0 0 calc(100vw * (30/1600));
    }

    .more_option ul {
        height: calc(100vw * (330/1600));
        padding-bottom: calc(100vw * (30/1600));
    }

    .more_option li {
        padding: calc(100vw * (20/1600)) 0 calc(100vw * (10/1600));
    }

    .more_option .prd_title {
        font-size: calc(100vw * (18/1600));
    }

    .more_option div label {
        font-size: calc(100vw * (22/1600));
    }

    .more_option .input_wrap {
        width: calc(100vw * (150/1600));
        height: calc(100vw * (40/1600));
        padding: 0 calc(100vw * (10/1600));
        border-radius: calc(100vw * (4/1600));
    }

    .more_option .input_wrap button {
        width: calc(100vw * (24/1600));
        height: calc(100vw * (24/1600));
    }

    .more_option .input_wrap input {
        font-size: calc(100vw * (18/1600));
    }

    .more_option .total {
        margin: 0 0 calc(100vw * (35/1600));
    }

    .more_option .total p {
        font-size: calc(100vw * (20/1600));
    }

    .more_option .total span {
        font-size: calc(100vw * (22/1600));
    }

    /* delete_pop */
    .delete_pop .pop_content {
        width: calc(100vw * (520/1600));
        padding: calc(100vw * (60/1600)) calc(100vw * (40/1600)) calc(100vw * (40/1600));
    }

    .delete_pop .pop_content p {
        margin: 0 0 calc(100vw * (51/1600));
        font-size: calc(100vw * (20/1600));
    }

    /* pagination */
    .pagination .img {
        width: calc(100vw * (24/1600));
        height: calc(100vw * (24/1600));
        margin-right: calc(100vw * (15/1600));
    }

    .pagination li {
        width: calc(100vw * (28/1600));
        height: calc(100vw * (28/1600));
        margin-right: calc(100vw * (20/1600));
        font-size: calc(100vw * (24/1600));
    }

    .pagination .next:nth-last-child(2) {
        margin-left: calc(100vw * (50/1600));
    }

    .pagination .img:nth-child(2) {
        margin-right: calc(100vw * (50/1600));
    }

    /* -------- select -------- */
    .select_box {
        height: calc(100vw * (60/1600));
    }

    .select {
        padding: 0 calc(100vw * (20/1600));
        font-size: calc(100vw * (18/1600));
    }

    .select::after {
        right: calc(100vw * (15/1600));
        width: calc(100vw * (26/1600));
        height: calc(100vw * (26/1600));
    }

    .select_list {
        max-height: calc(100vw * (202/1600));
        margin-top: calc(100vw * (-1/1600));
    }

    .select_list li {
        line-height: calc(100vw * (60/1600));
        font-size: calc(100vw * (18/1600));
    }

    .select_list span {
        padding: 0 calc(100vw * (20/1600));
    }

    /* checkbox */
    input[type="checkbox"] {
        width: calc(100vw * (24/1600));
        height: calc(100vw * (24/1600));
    }

    input[type="checkbox"]::after {
        width: calc(100vw * (24/1600));
        height: calc(100vw * (24/1600));
    }

    /* dot_check */
    .dot_check input[type="radio"] {
        width: calc(100vw * (24/1600));
        height: calc(100vw * (24/1600));
    }

    .dot_check input[type="radio"]::before {
        width: calc(100vw * (22/1600));
        height: calc(100vw * (22/1600));
    }

    .dot_check input[type="radio"]:checked::after {
        width: calc(100vw * (14/1600));
        height: calc(100vw * (14/1600));
        margin-left: calc(100vw * (5/1600));
    }

    .dot_check input[type="radio"]+label {
        padding-left: calc(100vw * (10/1600));
    }

    /* textarea */
    .count {
        bottom: calc(100vw* (15/1600));
        right: calc(100vw* (20/1600));
        font-size: calc(100vw* (18/1600));
    }

    .count span {
        margin-right: calc(100vw* (5/1600));
        font-size: calc(100vw* (18/1600));
    }

    /* sold_out */
    .sold_out .img_wrap::after {
        font-size: calc(100vw * (32/1600));
    }
}

/* ------------------------ 모바일 ------------------------ */
@media all and (max-width:900px) {

    .pc { display: none; }
    .mobile { display: block; }

    /* 최근 본 상품 */
    .recently_viewed {
        display: none;
    }

    /* mobile_header */
    .mobile_header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        width: 100%;
        height: calc(100vw* (60/428));
        background: #fff;
    }

    .mobile_header .inner {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .mobile_header .go_back {
        width: calc(100vw * (40/428));
        height: calc(100vw * (40/428));
        margin-right: calc(100vw * (5/428));
        background: url(/img/icon/left_arrow_short-13945273d75b480a125aab5c97932722.svg) no-repeat center center / cover;
    }

    .mobile_header p {
        font-size: calc(100vw * (20/428));
        margin-right: calc(100vw * (20/428));
        font-weight: bold;
        color: #333;
    }

    .mobile_header span {
        font-size: calc(100vw * (16/428));
    }

    .mobile_header .make_arrow {
        position: relative;
    }

    .mobile_header .make_arrow::after {
        content: '';
        display: inline-block;
        width: calc(100vw * (16/428));
        height: calc(100vw * (16/428));
        margin: 0 calc(100vw * (8/428));
        background: url(/img/icon/next_arrow_2-12d0bbfcb21931933103e5fdb47ca6f2.svg) no-repeat center / cover;
    }

    .mb_header {
        display: none;
    }

    .pagination li.mobile {
        display: none;
    }

    /* header */
    .header {
        border-bottom: 1px solid #EEEEEE;
    }

    .header .inner {
        width: 100%;
        height: calc(100vw * (60/428));
        padding: calc(100vw * (9/428)) calc(100vw * (25/428));
    }

    .header .logo {
        width: calc(100vw * (109/428));
        height: calc(100vw * (30/428));
    }

    .header .util_box {
        position: absolute;
        top: 0;
        right: 0;
        transform: translateX(100%);
        transition: all .3s ease-out;
        width: 100%;
        height: 100vh;
    }

    .header .list {
        margin-left: 0;
        font-size: calc(100vw * (18/428));
    }

    .header .icon_util .list + .list {
        margin-left: calc(100vw * (15/428));
    }

    .header .img {
        width: calc(100vw * (32/428));
        height: calc(100vw * (32/428));
    }

    .header .util li.mobile:last-of-type {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header .btn_menu {
        position: relative;
        width: calc(100vw * (32/428));
        height: calc(100vw * (32/428));
        margin-left: calc(100vw * (20/428));
    }

    .header .btn_menu span {
        display: block;
        position: absolute;
        top: calc(100vw * (8/428));
        left: 50%;
        transform: translateX(-50%);

        width: calc(100vw * (22/428));
        height: 2px;
        background: #000;
    }

    .header .btn_menu span:nth-child(2) {
        top: calc(100vw * (15.5/428));
    }

    .header .btn_menu span:nth-child(3) {
        top: calc(100vw * (24/428));
    }

    .header .dim_bg {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: all .3s ease-out;
        z-index: -1;
    }

    .header .util_box {
        width: calc(100vw * (380/428));
        padding: calc(100vw * (14/428)) calc(100vw * (25/428));
        background: #fff;
    }

    .header .util_box .btn_wrap {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-bottom: calc(100vw * (30/428));
    }

    .header .btn_menu_close {
        position: relative;
        width: calc(100vw * (32/428));
        height: calc(100vw * (32/428));
    }

    .header .btn_menu_close span {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        width: calc(100vw * (22/428));
        height: calc(100vw * (2/428));
        background: #000;
    }

    .header .btn_menu_close span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .header .list.login {
        display: none;
        align-items: baseline;
        order: -1;
        width: 100%;
        margin-bottom: calc(100vw * (15/428));
        font-size: calc(100vw * (24/428));
        font-weight: 500;
    }

    .header .list.login span:not(.mobile) {
        font-size: calc(100vw * (32/428));
        font-weight: bold;
    }

    .header .list.login span.mobile {
        margin-left: calc(100vw * (10/428));
    }

    .header .sub_util {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header .btn {
        width: 100%;
        height: calc(100vw * (60/428));
        margin-bottom: calc(100vw * (10/428));
        border: 1px solid #000;
    }

    .header .btn.half {
        width: calc(100vw * (160/428));
    }

    .header .btn.bg {
        background: #000;
        color: #fff;
    }

    .header .btn a {
        display: block;
        width: 100%;
        height: 100%;
        line-height: calc(100vw * (60/428));
        text-align: center;
        font-size: calc(100vw * (20/428));
        font-weight: 500;
    }

    .header .btn_list {
        width: 100%;
        margin: 0 0 calc(100vw * (10/428));
        border: none;
    }

    .header .btn_list .btn_box {
        width: 100%;
        height: 100%;
    }

    .header .btn_box button {
        padding: 0;
        text-align: center;
        font-size: calc(100vw * (18/428));
        font-weight: 500;
        border: 1px solid #111;
    }

    .header .btn_box button::after {
        position: absolute;
        top: 50%;
        right: 10%;
        width: calc(100vw * (15/428));
        height: calc(100vw * (15/428));
        transform: translateY(-50%);
    }

    .header .btn_box ul {
        width: 100%;
    }

    .header .btn_box li {
        margin: 0 0 calc(100vw * (5/428));
        padding-right: 0;
        line-height: normal;
        text-align: center;
    }

    .header .btn_box li a {
        line-height: calc(100vw * (50/428));
        font-size: calc(100vw * (18/428));
    }

    /* select_box.on */
    .header .btn_list .btn_box.on {
        right: 0;
        width: 100%;
    }

    .header .btn_list .btn_box.on button {
        padding: 0;
        text-align: center;
    }

    /* btn_list.small */
    .header .btn_list.small {
        width: 100%;
    }

    .header .btn_list.small .btn_box button {
        padding: 0;
        text-align: center;
    }

    .header .btn_list.small .btn_box.on {
        right: 0;
        width: 100%;
    }

    .header .login {
        order: 1;
    }

    .header .sub_util .link {
        order: 3;
        width: 50%;
        height: calc(100vw * (60/428));
        border-top: 1px solid #EEEEEE;
        border-bottom: 1px solid #EEEEEE;
    }

    .header .sub_util .link.mobile {
        border-right: 1px solid #eee;
    }

    .header .sub_util .link:first-child {
        border-right: 1px solid #EEEEEE;
    }

    .header .sub_util .link a {
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        text-align: center;
        line-height: calc(100vw * (60/428));
        font-size: calc(100vw * (17/428));
    }

    .header .nav {
        visibility: visible;
        position: initial;
        opacity: 1;
        height: fit-content;
        padding: 0;
        margin: calc(100vw * (30/428)) 0 0;
    }

    .header .nav.active {
        height: auto;
    }

    .header .nav ul {
        display: block;
        overflow: auto;
        width: 100%;
        max-height: calc(100vh - calc(100vw * (500/428)));
    }

    .header .nav li {
        position: relative;
        width: 100%;
        height: calc(100vw * (70/428));
        border-bottom: 1px solid #EEEEEE;
        text-align: left;
        line-height: calc(100vw * (70/428));
        font-size: calc(100vw * (20/428));
    }

    .header .nav li a:hover {
        text-decoration: none;
    }

    .header .nav li::before {
        display: none;
    }

    .header .nav li::after {
        content: '';
        position: absolute;
        top: 50%;
        right: calc(100vw * (10/428));
        transform: translateY(-50%);
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
        background: url('/img/icon/next_arrow_2-12d0bbfcb21931933103e5fdb47ca6f2.svg') no-repeat center/ contain;
        filter: contrast(999%);
    }

    .header .btn_logout {
        float: right;
        margin: calc(100vw * (15/428)) 0 0;
        font-size: calc(100vw * (16/428));
        color: #999999;
    }

    .header .util_wrap.on .util_box {
        transform: translateX(0);
        transition: all .3s ease-out;
    }

    .header .util_wrap.on .dim_bg {
        transition: all .3s ease-out;
        opacity: 1;
        z-index: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
    }

    /* wrap_content */
    #wrap_content {
        padding: calc(100vw * (60/428)) 0;
    }

    /* search_bar 검색창 */
    .search_bar {
        top: calc(100vw * (59/428));
    }

    .search_bar.on .form_wrap {
        padding: calc(100vw * (20/428)) 0;
    }

    .search_bar .input_box {
        width: calc(100vw * (378/428));
        height: calc(100vw * (60/428));
    }

    .search_bar .input_wrap {
        width: calc(100vw * (299/428));
        height: 100%;
        padding: 0 calc(100vw * (15/428));
        margin-right: 0;
    }

    .search_bar .img {
        width: calc(100vw * (32/428));
        height: calc(100vw * (32/428));
        margin: 0 calc(100vw * (10/428)) 0 0;
    }

    .search_bar input {
        font-size: calc(100vw * (17/428));
    }

    .search_bar .btn_search {
        width: calc(100vw * (80/428));
        height: 100%;
        font-size: calc(100vw * (18/428));
    }

    .search_bar.on .btn_close {
        margin: calc(100vw * (30/428)) auto 0;
        font-size: calc(100vw * (16/428));
    }

    .search_bar .btn_close span {
        width: calc(100vw * (12/428));
        height: calc(100vw * (12/428));
        margin-left: calc(100vw * (8/428));
    }

    .search_bar .related_search {
        margin: calc(100vw * (10/428)) 0 0;
        max-height: calc(100vw * (200/428));
        min-height: calc(100vw * (70/428));
        height: auto;
    }

    .search_bar .related_search p {
        margin: 0 0 calc(100vw * (10/428));
        font-size: calc(100vw * (17/428));
    }

    .search_bar .related_search ul {
        height: calc(100vw * (154/428));
    }

    .search_bar .related_search li {
        padding-left: calc(100vw * (5/428));
        line-height: calc(100vw * (30/428));
        font-size: calc(100vw * (17/428));
    }

    .search_bar .related_search li + li {
        margin-top: calc(100vw * (5/428));
    }

    .search_bar.on {
        z-index: -3;
        height: unset;
    }
    
    .search_bar.on .form_wrap {
        height: calc(100vw * (234/428));
    }

    .search_bar.on::before {
        top: calc(100vw * (60/428));
        height: calc(100vh - calc(100vw * (94/428)));
    }

    .search_bar fieldset {
        width: calc(100vw * (378/428));
    }

    /* -------- footer -------- */
    .footer .inner {
        width: calc(100vw * (378/428));
        padding: calc(100vw * (20/428)) 0 calc(100vw * (100/428));
    }

    .footer .top {
        flex-wrap: wrap;
        margin: 0;
    }

    .footer .top ul {
        flex-wrap: wrap;
    }

    .footer .top li {
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100vw * (126/428));
        height: calc(100vw * (40/428));
        padding: 0;
        border: none;
        font-size: calc(100vw * (14/428));
    }

    .footer .top li:first-child {
        padding: 0;
    }

    .footer .top li span {
        display: none;
    }

    .footer .top a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .footer .top li:not(:nth-child(3n)) a {
        border-right: 1px solid #333333;
    }

    .footer .top li:last-child a {
        border: none;
    }

    .footer .top .icon {
        vertical-align: middle;
        width: calc(100vw * (8/428));
        height: auto;
        margin: 0;
    }

    .footer .top button {
        width: 100%;
        height: calc(100vw * (45/428));
        padding: 0 calc(100vw * (20/428));
        margin: calc(100vw * (15/428)) 0 calc(100vw * (30/428));
        font-size: calc(100vw * (14/428));
        color: #ccc;
    }

    .footer .top button::after {
        right: calc(100vw * (5/428));
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
    }

    .footer .middle {
        position: relative;
        flex-wrap: wrap;
        padding: 0;
        margin: 0 0 calc(100vw * (30/428));
        border: none;
    }

    .footer .logo {
        display: none;
    }

    .footer .info_text>div {
        width: 100%;
    }

    .footer .info_text p {
        margin: 0 0 calc(100vw * (12/428));
        font-size: calc(100vw * (17/428));
        font-weight: bold;
    }

    .footer .info_text p.mobile {
        position: relative;
        width: calc(100vw * (398/428));
        margin: 0 0 0 calc(100vw * (-10/428));
        padding: calc(100vw * (12/428)) calc(100vw * (10/428));
        border-top: 1px solid #333333;
        border-bottom: 1px solid #333333;
    }

    .footer .info_text p.mobile::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: calc(100vw * (10/428));
        transform: translateY(-50%) rotate(90deg);
        transition: all .3s ease-out;

        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
        background: url('/img/icon/next_arrow_2-12d0bbfcb21931933103e5fdb47ca6f2.svg') no-repeat center / cover;
        filter: invert(94%) sepia(0%) saturate(1%) hue-rotate(260deg) brightness(90%) contrast(86%);
    }

    .footer .info_text p.mobile.on {
        border-bottom: none;
    }

    .footer .info_text p.mobile.on::after {
        transform: translateY(-50%) rotate(-90deg);
    }

    .footer dl {
        width: 100%;
        margin: 0 0 calc(100vw * (10/428));
    }

    .footer dt {
        margin-right: calc(100vw * (15/428));
        font-size: calc(100vw * (14/428));
    }

    .footer dd {
        font-size: calc(100vw * (14/428));
    }

    .footer dd span {
        display: block;
        margin: 0 0 calc(100vw * (10/428));
        font-size: calc(100vw * (14/428));
    }

    .footer .info_text p.mobile.on+.list_wrap {
        display: flex;
    }

    .footer .hotel_info .list_wrap {
        display: none;
        flex-direction: column;
        width: calc(100vw * (398/428));
        padding: calc(100vw * (5/428)) calc(100vw * (10/428)) calc(100vw * (20/428));
        margin-left: calc(100vw * (-10/428));
        border-bottom: 1px solid #333333;
    }

    .footer .hotel_info dl:last-child {
        order: -1;
    }

    .footer .hotel_info dl:nth-last-child(2) {
        margin: 0;
    }

    .footer .info_text .store {
        margin: calc(100vw * (10/428)) 0 0;
    }

    .footer .info_text .store p {
        height: calc(100vw * (40/428));
        margin: 0;
        line-height: calc(100vw * (40/428));
    }

    .footer .info_text .store dl:nth-last-child(2) {
        margin: 0;
    }

    .footer .info_text p.copyright {
        width: calc(100vw * (398/428));
        height: auto;
        padding: calc(100vw * (20/428)) calc(100vw * (10/428)) 0;
        margin: calc(100vw * (20/428)) calc(100vw * (-10/428)) 0;
        border-top: 1px solid #333;
        letter-spacing: normal;
        line-height: calc(100vw * (18/428));
        font-size: calc(100vw * (14/428));
    }

    .footer .icon_wrap a {
        position: absolute;
        bottom: calc(100vw * (2/428));
        right: 0;
        width: calc(100vw * (28/428));
        height: calc(100vw * (28/428));
    }

    .footer .site_list {
        flex-wrap: wrap;
        margin: 0 0 calc(100vw * (15/428));
    }

    .footer .site_list li {
        width: calc(100vw * (126/428));
        height: calc(100vw * (65/428));
        background: rgba(255, 255, 255, 0.1);
    }

    .footer .site_list li a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer .site_list li:nth-child(1) img {
        width: calc(100vw * (88/428));
        height: calc(100vw * (19/428));
    }

    .footer .site_list li:nth-child(2) img {
        width: calc(100vw * (89/428));
        height: calc(100vw * (31/428));
    }

    .footer .site_list li:nth-child(3) img {
        width: calc(100vw * (57/428));
        height: calc(100vw * (30/428));
    }

    .footer .site_list li:nth-child(4) img {
        width: calc(100vw * (39/428));
        height: calc(100vw * (31/428));
    }

    .footer .site_list li:nth-child(5) img {
        width: calc(100vw * (56/428));
        height: calc(100vw * (29/428));
    }

    .footer .site_list li:nth-child(6) img {
        width: calc(100vw * (96/428));
        height: calc(100vw * (33/428));
    }

    .footer .site_list li:nth-child(7) img {
        width: calc(100vw * (86/428));
        height: calc(100vw * (13/428));
    }

    .footer .ismsp:not(.pc) {
        display: flex;
        align-items: center;
        justify-content: center;
        position: initial;
    }

    .footer .icon {
        flex: 0 0 auto;
        width: calc(100vw * (38/428));
        height: calc(100vw * (27/428));
        margin-right: calc(100vw * (18/428));
    }

    .footer .hover_box {
        display: block;
        position: initial;
        width: fit-content;
        padding: 0;
        margin: 0 0 0 0;
        border-radius: 0;
        background: transparent;
    }

    .footer .hover_box::after {
        display: none;
    }

    .footer .hover_box dl {
        margin: 0 0 calc(100vw * (2/428));
    }

    .footer .hover_box dt,
    .footer .hover_box dd {
        font-size: calc(100vw * (11/428));
        color: #ccc;
    }

    .footer .hover_box dt {
        margin-right: calc(100vw * (7/428));
    }

    /* prd_text */
    .prd_title {
        height: calc(100vw * (50/428));
        margin: 0 0 calc(100vw * (6/428));
        font-size: calc(100vw * (17/428));
    }

    .ex_price {
        font-size: calc(100vw * (13/428));
    }

    .now_price {
        font-size: calc(100vw * (15/428));
    }

    .now_price span{
        font-size: calc(100vw * (15/428));
    }

    .discount {
        margin: 0;
        font-size: calc(100vw* (18/428));
    }

    .discount {
        padding: 0 calc(100vw * (8/428));
        font-size: calc(100vw * (13/428));
    }

    .sub_price {
        margin-top: calc(100vw * (5/428));
        font-size: calc(100vw * (15/428));
    }

    /* -------- modal -------- */
    .pop_content {
        padding: calc(100vw * (20/428)) calc(100vw * (25/428)) calc(100vw * (30/428));
        border-radius: calc(100vw * (12/428));
    }

    .pop_content .title {
        padding: 0 0 calc(100vw * (11/428));
        border-bottom: calc(100vw * (2/428)) solid #000;
    }

    .pop_content .title h3 {
        font-size: calc(100vw * (20/428));
    }

    .pop_content .btn_wrap button {
        width: calc(100vw * (164/428));
        height: calc(100vw * (55/428));
        font-size: calc(100vw * (19/428));
    }

    .pop_content .btn_wrap button:first-child {
        margin-right: calc(100vw * (10/428));
    }

    /* one_option */
    .one_option .pop_content {
        top: auto;
        bottom: 0;
        left: 0;
        transform: translate(0, 100%);
        transition: all .3s ease-out;
        width: 100%;
        padding: calc(100vw * (30/428)) calc(100vw * (25/428)) calc(100vw * (60/428));
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .one_option.on .pop_content {
        transform: translate(0, 0);
    }

    .one_option .pop_content.on {
        transform: translate(0, 0);
    }

    .one_option .prd_title {
        max-height: fit-content;
        margin: 0 0 calc(100vw * (30/428));
    }

    .one_option .prd_title p {
        margin: 0 0 calc(100vw * (5/428));
        font-size: calc(100vw * (18/428));
    }

    .one_option .prd_title span {
        font-size: calc(100vw * (18/428));
    }

    .one_option .count_wrap {
        padding: 0 0 calc(100vw * (20/428));
    }

    .one_option .count_wrap label {
        font-size: calc(100vw * (16/428));
    }

    .one_option .count_wrap div {
        width: calc(100vw * (128/428));
        height: calc(100vw * (40/428));
        padding: 0 calc(100vw * (10/428));
        border-radius: calc(100vw * (4/428));
    }

    .one_option .count_wrap button {
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
    }

    .one_option .count_wrap input {
        font-size: calc(100vw * (16/428));
    }

    .one_option .total {
        padding: calc(100vw * (15/428)) 0 calc(100vw * (40/428));
    }

    .one_option .total p {
        font-size: calc(100vw * (16/428));
    }

    .one_option .total span {
        font-size: calc(100vw * (20/428));
    }

    .one_option .pop_content .btn_wrap button {
        width: calc(100vw * (184/428));
    }

    /* more_option */
    .more_option .pop_content {
        top: auto;
        bottom: 0;
        left: 0;
        transform: translate(0, 100%);
        transition: all .3s ease-out;
        width: 100%;
        padding: calc(100vw * (30/428)) calc(100vw * (25/428)) calc(100vw * (60/428));
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .more_option.on .pop_content {
        transform: translate(0, 0);
    }

    .more_option .pop_content.on {
        transform: translate(0, 0);
    }

    .more_option .pop_content .title {
        padding: 0 0 calc(100vw * (25/428));
    }

    .more_option ul {
        height: calc(100vw * (277/428));
        padding-bottom: calc(100vw * (30/428));
    }

    .more_option li {
        padding: calc(100vw * (20/428)) 0;
    }

    .more_option .prd_title {
        margin: 0 0 calc(100vw * (5/428));
        font-size: calc(100vw * (16/428));
    }

    .more_option div label {
        font-size: calc(100vw * (18/428));
    }

    .more_option .input_wrap {
        width: calc(100vw * (128/428));
        height: calc(100vw * (40/428));
        padding: 0 calc(100vw * (10/428));
        border-radius: calc(100vw * (4/428));
    }

    .more_option .input_wrap button {
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
    }

    .more_option .input_wrap input {
        font-size: calc(100vw * (16/428));
    }

    .more_option .total {
        margin: 0 0 calc(100vw * (40/428));
    }

    .more_option .total p {
        font-size: calc(100vw * (16/428));
    }

    .more_option .total span {
        font-size: calc(100vw * (20/428));
    }

    .more_option .pop_content .btn_wrap button {
        width: calc(100vw * (184/428));
    }

    /* delete_pop */
    .delete_pop .pop_content {
        width: calc(100vw * (388/428));
        padding: calc(100vw * (50/428)) calc(100vw * (25/428)) calc(100vw * (30/428));
        border-radius: calc(100vw * (10/428));
    }

    .delete_pop .pop_content p {
        margin: 0 0 calc(100vw * (40/428));
        font-size: calc(100vw * (17/428));
    }

    /* -------- inner -------- */
    .inner {
        width: calc(100vw * (378/428));
    }

    /* top_btn */
/*    .top_btn {*/
/*        bottom: calc(100vw * (60/428));*/
/*        right: calc(100vw * (25/428));*/
/*        width: calc(100vw * (60/428));*/
/*        height: calc(100vw * (60/428));*/
/*        border: calc(100vw * (2/428)) solid #000;*/
/*    }*/

/*    .top_btn img {*/
/*        width: calc(100vw * (21/428));*/
/*        height: calc(100vw * (26/428));*/
/*    }*/

/*    .top_btn.mb_top {*/
/*        bottom: calc(100vw * (90/428));*/
/*    }*/

    /* -------- select -------- */
    .select_box {
        height: calc(100vw * (50/428));
    }

    .select {
        padding: 0 calc(100vw * (15/428));
        font-size: calc(100vw * (18/428));
    }

    .select::after {
        right: calc(100vw * (15/428));
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
    }

    .select_list {
        max-height: calc(100vw * (202/428));
        margin-top: calc(100vw * (-1/428));
    }

    .select_list li {
        line-height: calc(100vw * (50/428));
        font-size: calc(100vw * (18/428));
    }

    .select_list span {
        padding: 0 calc(100vw * (20/428));
    }

    /* pagination */
    .pagination .img {
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
        margin-right: calc(100vw * (10/428));
    }

    .pagination li {
        width: calc(100vw * (28/428));
        height: calc(100vw * (28/428));
        margin-right: calc(100vw * (20/428));
        font-size: calc(100vw * (20/428));
    }

    .pagination li:nth-child(7) {
        margin: 0;
    }

    .pagination .next:nth-last-child(2) {
        margin-left: calc(100vw * (25/428));
    }

    .pagination .img:nth-child(2) {
        margin-right: calc(100vw * (25/428));
    }

    .pagination .img:last-child {
        margin: 0;
    }

    /* checkbox */
    input[type="checkbox"] {
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
    }

    input[type="checkbox"]::after {
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
    }


    /* dot_check */
    .dot_check input[type="radio"] {
        width: calc(100vw * (24/428));
        height: calc(100vw * (24/428));
    }

    .dot_check input[type="radio"]::before {
        width: calc(100vw * (22/428));
        height: calc(100vw * (22/428));
    }

    .dot_check input[type="radio"]:checked::after {
        width: calc(100vw * (14/428));
        height: calc(100vw * (14/428));
        margin-left: calc(100vw * (5/428));
    }

    .dot_check input[type="radio"]+label {
        padding-left: calc(100vw * (10/428));
    }

    /* textarea */
    .count {
        bottom: calc(100vw* (15/428));
        right: calc(100vw* (20/428));
        font-size: calc(100vw* (16/428));
    }

    .count span {
        margin: 0 calc(100vw* (5/428)) 0 0;
        font-size: calc(100vw* (16/428));
    }

    /* sold_out */
    .sold_out .img_wrap::after {
        width: 100%;
        text-align: center;
        font-size: calc(100vw * (20/428));
    }
}


/* 진짜 작은 모바일 */
@media all and (max-width: 375px) {
    .pc_footer .right li {
        width: 100%;
    }

    .pc_footer .right span {
        width: calc(100vw * (30 / 428));
    }
}

.text-right {
    text-align: right !important;
}