﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans KR', sans-serif;
    height: 100%;
    color: #323232;
}

/* 체크박스 숨기기 */
.custom-checkbox input[type="checkbox"] {
    display: none;
}


.swiper-wrapper {
    transition-timing-function: linear;
}

/*요소(element) 여백 초기화 */
html, body, div, span, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, blockquote, p, address, pre, cite,
form, fieldset, input, textarea, select, table, th, td {
    margin: 0;
    padding: 0;
}

/* 제목요소 */
hl, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
}

/* 테두리 없애기 */
fieldset, img, abbr, acronym {
    border: 0 none;
}


/* 목록 */
ol, ul {
    list-style: none;
    
}

/* 테이블 - 마크업에 'cellspacing="0" 지정 함께 필요 */
table {
    border-collapse: separate;
    border-spacing: 0;
    border: 0 none;
}

.td_left {
    text-align: left;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}

/* 텍스트 관련 요소 초기화 */
address, caption, strong, em, cite {
    font-weight: normal;
    font-style: normal;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

/*링크*/

a {
    color: inherit;
    text-decoration: none;
}

*:focus {
    outline: none !important;
}

/* qrcode img */
/** 각 항목 링크에 대한 크기 지정 */
.gallery .item .modal {
    display: block;
    margin: 10px;
    width: auto;
}

/** 이미지에 대한 테두리 제거 및 여백 지정 */
.modal img {
    width: 100%;
    height: 100%;
}

/** 화면 전체를 덮는 배경 레이어의 위치, 크기, 투명도 지정 > 기본적으로 표시되지 않도록 설정 */
.gray_layer {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: black;
    opacity: 1.00;
    display: none;
}

/** 이미지가 표현될 레이어를 화면 중앙에 배치 > 기본적으로 표시되지 않도록 설정 */
.over_layer {
    /* 요소의 좌측상단 꼭지점이 화면 중앙에 위치하게 된다. */
    position: fixed;
    top: 50%;
    left: 50%;
    /* 요소의 크기/2 만큼 왼쪽,상단 방향으로 이동시켜 가운데 배치한다 */
    margin-top: -120px;
    margin-left: -130px;
    display: none;
}

/*기본 PC버전CSS 1024*/
/*데스크탑 일반*/
@media (min-width: 1200px) {

    /*커스텀 라디오*/
    radio-buttons-custom {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .radio-buttons-custom .radio-button {
        cursor: pointer;
        position: relative;
        padding-left: 40px;
        padding-right: 20px;
        font-size: 20px;
    }

    /* 기존 라디오 버튼 삭제 */
    .radio-button input[type="radio"] {
        position: absolute;
        opacity: 0;
        height: 0;
        width: 0;
    }

    /* 1번 그룹 라디오 버튼, 외부 원 */
    .radio-buttons-custom .radio-button .custom-radio {
        position: absolute;
        top: 0;
        left: 0;
        height: 30px;
        width: 30px;
        border-radius: 50%;
        background-color: #eee;
    }

    /* 1번 그룹 라디오 버튼 선택 시 배경 색상 변경, 외부 원 */
    .radio-buttons-custom .radio-button input[type="radio"]:checked ~ .custom-radio {
        background-color: rgb(19, 167, 157);
    }

    /* 1번 그룹 라디오 버튼, 내부 원 */
    .radio-buttons-custom .custom-radio:after {
        content: "";
        position: absolute;
        /* 최초 display none */
        display: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: white;
    }

    /* 1번 그룹 라디오 버튼 선택 시 화면 표출, 내부 원 */
    .radio-buttons-custom .radio-button input[type="radio"]:checked ~ .custom-radio:after {
        display: block;
    }

    /* 커스텀 체크박스 스타일 */
    .custom-checkbox label {
        display: flex;
        align-items: baseline;
        width: 30px;
        height: 30px;
        background-color: #fff;
        border: 1px solid #5c6266;
        cursor: pointer;
        position: relative;
    }

    .custom-checkbox input[type="checkbox"]:checked + label:before {
        content: "";
        position: absolute;
        left: 2px; /* 여기서 패딩 값을 조정 */
        top: 2px; /* 여기서 패딩 값을 조정 */
        width: 26px;
        height: 26px;
        background-color: rgb(19, 167, 157);
    }

    .custom-select {
        position: relative;
        width: 50%; /* 필요한 너비로 설정 */
    }

        .custom-select select {
            width: 100%;
            height: 64px;
            padding-left: 10px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-color: #b4b4b4;
            ;
        }

        .custom-select::after {
            content: ">";
            position: absolute;
            top: 50%;
            right: 6px;
            transform: translateY(-50%) rotate(90deg);
            pointer-events: none;
            width: 54px;
            height: 54px;
            color: #b4b4b4;
            background: rgb(231, 231, 231);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


    /*main*/
    #wrap {
        width: 1024px;
        height: 100%;
        margin: 0px auto;
    }

    header, footer, .center {
        margin: 0px auto;
    }

    /*header*/
    .TopBox {
        height: 128px;
    }

    .Logo {
        float: left;
        padding-top: 30px;
        padding-left: 38px;
    }

    .top-logo {
        /*width:242px;*/
        height:70px;
    }

    .menu {
        float: right;
        padding-top: 60px;
        padding-right: 32px;
    }

    .homeicon {
        width: 45px;
        margin-left: 10px;
    }

    /*center*/

    .mainBN {
        height: 100%;
    }

    .mainBoard, .BestPro {
        padding: 46px 32px 0 32px;
    }

        .mainBoard table {
            border-top: 1px solid #b4b4b4;
        }

    .Product01 {
        float: left;
        margin-bottom: 30px;
    }

    .Product02 {
        float: right;
        margin-bottom: 30px;
    }

    .productBox {
        /*border: 1px solid #b4b4b4;*/
        width: auto;
        height: auto;
        text-align: center;
    }

        .productBox img {
            height: 100%;
        }

    .BestPro {
        height: 460px;
    }

    .board {
        width: 960px;
    }

        .board td {
            line-height: 96px;
            border-bottom: 1px solid #b4b4b4;
        }
    /*footer*/
    footer {
        
        margin-top: 50px;
        padding-top: 10px;
        
    }

    

    .footer_logo, .footer_info {
        padding: 10px 32px;
    }

    .footer_logo > img
    {
        width:146px;
        padding-right:50px;
    }

    .footer_menu {
        font-size: 22px;
        color: #323232;
        padding: 24px 0px;
    }

    .lineH {
        padding: 0px 10px;
        font-size: 18px;
    }


    /*text*/
    .subtit_bold {
        font-weight: 500;
        font-size: 42px;
        padding: 0px 5px 20px 0px;
    }

        .subtit_bold img {
            padding-bottom: 30px;
            padding-right: 4px;
        }

    .textB {
        font-size: 34px;
    }

    .textP {
        font-size: 25px;
    }

    .textPO {
        font-size: 25px;
    }

    .textPg {
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .textB2 {
        font-size: 90px;
        text-align: center;
        padding-bottom: 30px;
    }

    .textP2 {
        font-size: 34px;
        text-align: center;
        padding-bottom: 60px;
    }

    .textP3 {
        font-size: 30px;
        padding-bottom: 60px;
        margin-top: 50px;
    }

    .textP4 {
        font-size: 25px;
        margin-top: 16px;
        padding-bottom: 20px;
        padding-left: 30px;
    }

    .date {
        font-size: 25px;
        float: right;
        letter-spacing: -1px;
        width: 310px;
    }

    .boardTXT {
        font-size: 30px;
        width: 630px;
    }

    .BT {
        padding-left: 20px;
        width: 50px;
    }

        .BT img {
            vertical-align: middle;
        }

    /*sub*/
    .SubTop-line {
        border-bottom: 8px solid #8dc63f;
    }

    .navi {
        font-size: 24px;
        height: 50px;
        padding-left: 32px;
        padding-top: 26px;
        padding-bottom: 10px;
    }

    .bottomBT {
        color: #ffffff;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 40px;
    }

    .bottomBTL, .bottomBTR {
        width: 50%;
        font-size: 46px;
        padding: 30px 0px;
        border-top: 8px solid #f5f5f5;
        margin-bottom: 30px;
    }

    .bottomBTL {
        float: left;
        background-color: #5c6266;
    }

    .bottomBTR {
        float: right;
        background-color: #13a79d;
    }

    .bottomBTL2, .bottomBTR2 {
        width: 50%;
        font-size: 46px;
        padding: 30px 0px;
        border-top: 8px solid #f5f5f5;
    }

    .bottomBTL2 {
        float: left;
        background-color: #5c6266;
    }

    .bottomBTR2 {
        float: right;
        background-color: #13a79d;
    }

    .bottomBTL3 {
        background-color: #13a79d;
        font-size: 46px;
        padding: 30px 0px;
        border-top: 8px solid #f5f5f5;
    }

    .center_sub {
        padding: 0px 32px 0 32px;
    }

    .TKList thead th {
        border-top: 1px solid #5c6266;
        border-bottom: 1px solid #5c6266;
        text-align: center;
        font-size: 30px;
        padding: 10px 0px;
    }

    .TKList table {
        width: 100%;
    }

    .TKList tr td {
        border-bottom: 1px solid #e1e1e1;
        padding: 14px 0px;
    }

    .TKList table:last-child {
        border-bottom: 1px solid #5c6266
    }

    .td_center {
        text-align: center;
    }

    .productInfo {
        height: 464px;
        margin-bottom: 30px;
    }

    .text28 {
        font-size: 28px;
        margin-top: -16px;
    }

    .productBox2 {
        border: 1px solid #b4b4b4;
        width: 462px;
        height: 462px;
        text-align: center;
        float: left;
        margin-bottom: 30px;
        margin-right: 40px;
    }

        .productBox2 img {
            height: 100%;
        }

    ul li {
        font-size: 24px;
    }

    .li-spotlight {
        font-weight: 600;
    }

    .TXTPay {
        font-size: 34px;
        padding: 60px 0px;
        width: 100%;
        text-align: right;
    }

    .TXTPay2 {
        font-size: 36px;
        padding: 10px 0px;
        width: 100%;
        text-align: right;
    }

    .TXTMint {
        font-weight: 700;
        color: #13a79d;
    }

    .TXTRed {
        font-weight: 700;
        color: #d10716;
    }

    .BT_sm, .BT_sg {
        margin: 6px 0px;
        font-size: 26px;
        color: #ffffff;
        text-align: center;
        padding: 12px 0px;
    }

    .BT_sm {
        background-color: #13a79d;
    }

    .BT_sg {
        background-color: #5c6266;
    }

    .BTBox {
        width: 18%;
    }

    /*상세페이지*/
    .detailBox img {
        width: 100%;
        text-align: center;
    }



    /*장바구니 리스트*/
    .basketBD table {
        width: 100%;
        border-top: 1px solid #e1e1e1;
        padding: 14px 0px;
    }

        .basketBD table:last-child {
            border-bottom: 2px solid #5c6266;
            margin-bottom: 30px;
        }

        .basketBD table tr td {
            padding: 10px 0px;
        }

    .total {
        width: 100%;
        padding-bottom: 60px;
    }

        .total td {
            text-align: right;
            padding: 0px 10px;
        }


    .CenterBox {
        width: 70%;
        margin: auto;
        margin-top: 5%;
    }

    .BT_sm2 {
        background-color: #13a79d;
        font-size: 48px;
        color: #fff;
        text-align: center;
        padding: 18px 0px;
        margin: 6px 0px;
    }


    label.tit {
        font-size: 28px;
        font-weight: 400;
        padding-top: 20px;
        float: left;
        width: 150px;
    }

    label.tit2 {
        font-size: 28px;
        font-weight: 500;
        padding-top: 20px;
        float: left;
        width: 180px;
    }

    input {
        border: 1px solid #5c6266;
        padding: 16px;
        font-size: 28px;
        margin: 10px;
    }

    textarea {
        border: 1px solid #5c6266;
        width:93%;
        height: 80px;
        padding: 16px;
        font-size: 28px;
        margin: 10px;
    }

    .adr {
        width: 93%;
    }

    .adr_BT {
        background-color: #5c6266;
        color: #fff;
        font-size: 26px;
        border: 0px;
        padding: 20px 50px;
    }

    .search {
        width: 93%;
    }

    .NB {
        width: 50px;
    }

    .S_Box {
        border: 1px solid #5c6266;
        padding: 16px;
        font-size: 28px;
        margin: 10px;
        /*width: 280px;*/
        color: #323232;
    }

    .S_S_Box {
        border: 1px solid #5c6266;
        padding: 16px;
        font-size: 16px;
        margin: 10px;
        /*width: 280px;*/
        color: #323232;
    }

    .PRO_Sel li {
        vertical-align: middle;
    }

    .loginP li {
        border-bottom: 1px solid #b4b4b4;
        margin-bottom: 50px;
    }

        .loginP li input {
            width: 400px;
            border: 0px solid #fff;
        }

    .TXT_BT li {
        float: left;
        font-size: 32px;
        margin-top: 30px;
        margin-right: 60px;
    }

    .info_l li {
        float: left;
        font-size: 26px;
        padding-right: 10px;
    }

    .info_l {
        padding-bottom: 20px;
    }

    .tapMenu {
        margin-left: 30px;
        width: 100%;
    }

        .tapMenu li {
            font-size: 38px;
            float: left;
            padding-right: 10px;
        }

    .mypageData {
        font-size: 28px;
        color: #13a79d;
        font-weight: 500;
    }

    .searchT {
        width: 76%;
    }

    .search {
        padding: 20px 0px 20px 20px;
    }

    .search_BT {
        background-color: #5c6266;
        color: #fff;
        font-size: 26px;
        border: 0px;
        padding: 15px 50px;
        float: right;
    }

    /*상위속성제거*/
    .mainBoard:after, .BestPro:after, .center:after, .bottomBT:after, .center_sub:after {
        content: "";
        clear: both;
        display: block;
    }

    /*추가작업1210YHJ---굿즈상품 상세*/

    .payment {
        width: 100%;
        padding: 20px 0px;
        border-top: 1px solid #5c6266;
        border-bottom: 1px solid #5c6266;
        font-size: 28px;
    }

    .TXT24 {
        font-size: 20px;
        padding-bottom: 20px;
    }

    .PROdetail {
        background-color: #f5f5f5;
        margin: 10px 30px;
    }

        .PROdetail img {
            max-width: 100%;
        }

    .dBT {
        width: 48%;
        float: right;
    }

        .dBT ul {
            display: inline-block;
        }

    .dBT_s li {
        width: 220px;
        float: left;
    }

    /*수정1210YHJ*/
    .text28 {
        font-size: 28px;
        padding: 20px 0px;
    }

    .tapMenu {
        margin-left: 30px;
        width: 100%;
        display: inline-block;
        margin-bottom: 20px;
    }

    /*이용약관 개인정보이용방침2024-04-06 */

    .policy-h2 {
        font-size: 30px;
        font-weight: 600;
        padding-bottom: 16px;
    }

    .policy-h3 {
        font-size: 20px;
        font-weight: 600;
    }

    .TK p {
        padding: 20px 0px;
        font-size: 16px;
    }

    .policy-ul, .policy-ul ul {
        padding-top: 20px;
    }

        .policy-ul li {
            padding-left: 24px;
            padding-bottom: 16px;
            font-size: 16px;
        }

    .policy-h4 {
        font-size: 16px;
        font-weight: 600;
        padding-top: 12px;
    }

    .privacy_T {
        width: 100%;
        margin: 10px;
        border-top: #b4b4b4 solid 1px;
        border-left: #b4b4b4 solid 1px;
    }

        .privacy_T td {
            border-bottom: #b4b4b4 solid 1px;
            border-right: #b4b4b4 solid 1px;
            padding: 10px 10px;
            text-align: center;
        }

    .privacy_txt01 {
        font-weight: 800;
    }

    /*메인추천상품 20240411*/
    .product-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; /* Distribute items evenly with space between */
    }

    .product {
        flex: 1 1 auto; /* Each product grows equally */
        max-width: calc(33.3% - 20px); /* Adjust the maximum width as needed */
        margin-bottom: 20px; /* Spacing between rows */
        display: flex;
        flex-direction: column; /* Stack child elements vertically */
        border: 1px solid #b4b4b4;
    }

        .product img {
            width: 100%; /* Image fills its container */
            height: auto; /* Maintains aspect ratio */
        }

    .product-info {
        padding: 10px;
        /*background-color: #f0f0f0;*/
    }
}



/*모바일수직*/
@media (max-width: 767px) {

    /*메인추천상품 20240411*/
    .product-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; /* Distribute items evenly with space between */
    }

    .product {
        flex: 1 1 auto; /* Each product grows equally */
        max-width: calc(50% - 10px); /* Adjust the maximum width as needed */
        margin-bottom: 20px; /* Spacing between rows */
        display: flex;
        flex-direction: column; /* Stack child elements vertically */
        border: 1px solid #b4b4b4;
    }

    .product img {
        width: 100%; /* Image fills its container */
        height: auto; /* Maintains aspect ratio */
    }

    .product-info {
        padding: 10px;
        /*background-color: #f0f0f0;*/
    }

    /* 커스텀 체크박스 스타일 */
    .custom-checkbox label {
        display: flex;
        align-items: baseline;
        width: 15px;
        height: 15px;
        background-color: #fff;
        border: 1px solid #5c6266;
        cursor: pointer;
        position: relative;
    }

    .custom-checkbox input[type="checkbox"]:checked + label:before {
        content: "";
        position: absolute;
        left: 2px; /* 여기서 패딩 값을 조정 */
        top: 2px; /* 여기서 패딩 값을 조정 */
        width: 11px;
        height: 11px;
        background-color: rgb(19, 167, 157);
    }

    .custom-select {
        position: relative;
        width: 50%; /* 필요한 너비로 설정 */
    }

        .custom-select select {
            width: 100%;
            height: 64px;
            padding-left: 10px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-color: #b4b4b4;
            ;
        }

        .custom-select::after {
            content: ">";
            position: absolute;
            top: 50%;
            right: 6px;
            transform: translateY(-50%) rotate(90deg);
            pointer-events: none;
            width: 54px;
            height: 54px;
            color: #b4b4b4;
            background: rgb(231, 231, 231);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    /*커스텀 라디오*/
    radio-buttons-custom {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .radio-buttons-custom .radio-button {
        cursor: pointer;
        position: relative;
        padding-left: 40px;
        padding-right: 20px;
        font-size: 14px;
    }

    /* 기존 라디오 버튼 삭제 */
    .radio-button input[type="radio"] {
        position: absolute;
        opacity: 0;
        height: 0;
        width: 0;
    }

    /* 1번 그룹 라디오 버튼, 외부 원 */
    .radio-buttons-custom .radio-button .custom-radio {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        background-color: #eee;
    }

    /* 1번 그룹 라디오 버튼 선택 시 배경 색상 변경, 외부 원 */
    .radio-buttons-custom .radio-button input[type="radio"]:checked ~ .custom-radio {
        background-color: rgb(19, 167, 157);
    }

    /* 1번 그룹 라디오 버튼, 내부 원 */
    .radio-buttons-custom .custom-radio:after {
        content: "";
        position: absolute;
        /* 최초 display none */
        display: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: white;
    }

    /* 1번 그룹 라디오 버튼 선택 시 화면 표출, 내부 원 */
    .radio-buttons-custom .radio-button input[type="radio"]:checked ~ .custom-radio:after {
        display: block;
    }

    img {
        width: 100%;
    }

    /*main*/
    #wrap {
        width: 100%;
        height: 100%;
        margin: 0px auto;
    }

    header, footer, .center {
        margin: 0px auto;
    }

    /*header*/
    .TopBox {
        height: 64px;
    }

    .Logo {
        float: left;
        padding-top: 5px;
        padding-left: 19px;
    }

        .Logo img {
            width: 120px;
        }

    .menu {
        float: right;
        padding-top: 15px;
        padding-right: 14px;
    }

    .homeicon {
        width: 35px;
        /*margin-left: 5px;*/
    }

    .center {
        max-width: 100%;
        width: 100%;
    }

    .mainBN {
        height: 100%;
    }


    .mainBoard, .BestPro {
        padding: 11px 13px 0 13px;
    }

        .mainBoard table {
            border-top: 1px solid #b4b4b4;
        }

        .mainBoard img {
            width: 5px;
        }

    .Product01 {
        float: left;
        margin-bottom: 15px;
        width: 160px;
    }

    .Product02 {
        float: right;
        margin-bottom: 15px;
        width: 160px;
    }

    .productBox {
        border: 1px solid #b4b4b4;
        width: 160px;
        height: 143px;
        text-align: center;
    }

        .productBox img {
            height: 100%;
        }

    .BestPro {
        /*height: 460px;*/
    }

        /*상위속성제거*/

        .mainBoard:after, .BestPro:after, .center:after, .bottomBT:after, .center_sub:after {
            content: "";
            clear: both;
            display: block;
        }



    .board {
        width: 100%;
    }

        .board td {
            line-height: 43px;
            border-bottom: 1px solid #b4b4b4;
        }
    /*footer*/

    footer {
        
        margin-top: 0px;
        padding-top: 10px;
    }

    footer img {
        width: 120px;
    }

    .footer_logo > img {
        width: 120px;
        padding-right: 20px;
    }


    .footer_logo, .footer_info {
        padding: 5px 16px;
    }

    .footer_info {
        font-size: 10px;
        color: #646464;
    }

    .footer_menu {
        font-size: 14px;
        color: #323232;
        padding: 12px 0px;
        font-weight: 600;
    }

    .lineH {
        padding: 0px 10px;
        font-size: 9px;
    }

    /*text*/
    .subtit_bold {
        font-weight: 500;
        font-size: 18px;
        padding: 0px 5px 20px 0px;
    }

        .subtit_bold img {
            width: 5px;
            padding-bottom: 15px;
            padding-right: 2px;
        }

    .textB {
        font-size: 22px;
        font-weight: 600;
    }

    .textP {
        font-size: 14px;
        font-weight: 600;
    }

    .textPO {
        font-size: 13px;
    }

    .textPg {
        font-size: 15px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .textB2 {
        font-size: 20px;
        text-align: center;
        padding-bottom: 30px;
    }

    .textP2 {
        font-size: 14px;
        text-align: center;
        padding-bottom: 20px;
        font-weight: 600;
    }

    .textP3 {
        font-size: 20px;
        padding-bottom: 20px;
        margin-top: 5px;
    }

    .textP4 {
        font-size: 18px;
        margin-top: 16px;
        padding-bottom: 20px;
        padding-left: 30px;
    }

    .date {
        font-size: 10px;
        float: right;
        letter-spacing: -1px;
    }

    .boardTXT {
        width: 60%;
        font-size: 12px;
    }



    .BT img {
        width: 50%;
        vertical-align: middle;
        margin-left: 10px;
    }

    /*sub*/
    .SubTop-line {
        border-bottom: 8px solid #8dc63f;
    }

    .navi {
        font-size: 18px;
        height: 10px;
        padding-left: 32px;
        padding-top: 26px;
        padding-bottom: 40px;
    }

    .bottomBT {
        color: #ffffff;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .bottomBTL, .bottomBTR {
        width: 50%;
        font-size: 20px;
        padding: 20px 0px;
        border-top: 8px solid #f5f5f5;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .bottomBTL {
        float: left;
        background-color: #5c6266;
    }

    .bottomBTR {
        float: right;
        background-color: #13a79d;
    }

    .bottomBTL2, .bottomBTR2 {
        width: 50%;
        font-size: 20px;
        padding: 20px 0px;
        border-top: 8px solid #f5f5f5;
        font-weight: 600;
    }

    .bottomBTL2 {
        float: left;
        background-color: #5c6266;
    }

    .bottomBTR2 {
        float: right;
        background-color: #13a79d;
    }

    .bottomBTL3 {
        background-color: #13a79d;
        font-size: 20px;
        padding: 15px 0px;
        border-top: 8px solid #f5f5f5;
        font-weight: 600;
    }

    .center_sub {
        padding: 0px 32px 0 32px;
    }

    .TKList thead th {
        border-top: 1px solid #5c6266;
        border-bottom: 1px solid #5c6266;
        text-align: center;
        font-size: 14px;
        padding: 10px 0px;
    }

    .TKList table {
        width: 100%;
    }

    .TKList tr td {
        border-bottom: 1px solid #e1e1e1;
        padding: 14px 0px;
    }

    .TKList table:last-child {
        border-bottom: 1px solid #5c6266
    }

    .td_center {
        text-align: center;
    }

    .productInfo {
        /*height: 164px;*/
        margin-bottom: 15px;
        vertical-align: middle;
    }

    .text28 {
        font-size: 18px;
    }

    .productBox2 {
        border: 1px solid #b4b4b4;
        width: 100%;
        /*height: 120px;*/
        text-align: center;
        float: left;
        margin-bottom: 5px;
        margin-right: 15px;
    }

        .productBox2 img {
            height: 100%;
        }

    .TXTPay {
        font-size: 18px;
        padding: 10px 0px;
        width: 100%;
        text-align: right;
    }

    .TXTPay2 {
        font-size: 14px;
        padding: 10px 0px;
        width: 100%;
        text-align: right;
    }

    .TXTMint {
        font-weight: 700;
        color: #13a79d;
    }

    .TXTRed {
        font-weight: 700;
        color: #d10716;
    }

    .BT_sm, .BT_sg {
        margin: 6px 0px;
        font-size: 14px;
        color: #ffffff;
        text-align: center;
        padding: 12px 0px;
    }

    .BT_sm {
        background-color: #13a79d;
    }

    .BT_sg {
        background-color: #5c6266;
    }

    .BTBox {
        width: 18%;
        
    }

    /*상세페이지*/
    .detailBox {
        text-align: center;
    }


    /*장바구니 리스트*/
    .basketBD table {
        width: 100%;
        border-top: 1px solid #e1e1e1;
        padding: 14px 0px;
    }

    .basketBD table:last-child {
        border-bottom: 2px solid #5c6266;
        margin-bottom: 30px;
    }

    .basketBD table tr td {
        padding: 10px 0px;
    }

    .total {
        width: 100%;
        padding-bottom: 60px;
    }

    .total td {
        text-align: center;
        padding: 0px 5px;
    }

    .total td > img {
        padding-left: 5px;
    }

    .CenterBox {
        width: 70%;
        margin: auto;
        margin-top: 16%;
    }

    .BT_sm2 {
        background-color: #13a79d;
        font-size: 18px;
        color: #fff;
        text-align: center;
        padding: 18px 0px;
        margin: 6px 0px;
        font-weight: 600;
    }


    label.tit {
        font-size: 18px;
        font-weight: 400;
        padding-top: 20px;
        float: left;
        /*width: 150px;*/
    }

    label.tit2 {
        font-size: 18px;
        font-weight: 500;
        padding-top: 20px;
        float: left;
        width: 180px;
    }

    input {
        border: 1px solid #5c6266;
        padding: 16px;
        font-size: 18px;
        margin: 10px;
    }

    textarea {
        border: 1px solid #5c6266;
        width: 93%;
        height: 80px;
        padding: 16px;
        font-size: 18px;
        margin: 10px;
    }

    .adr_zip {
        width: 20%;
    }

    .adr {
        width: 93%;
    }

    .adr_BT {
        background-color: #5c6266;
        color: #fff;
        font-size: 18px;
        border: 0px;
        padding: 10px 25px;
    }

    .search {
        width: 93%;
    }

    .NB {
        width: 50px;
    }

    .S_Box {
        border: 1px solid #5c6266;
        padding: 3px;
        font-size: 12px;
        /*margin: 2px;
        width: 80px;*/
        color: #323232;
    }

    .S_S_Box {
        border: 1px solid #5c6266;
        padding: 8px;
        font-size: 12px;
        margin: 4px;
        /*width: 280px;*/
        color: #323232;
    }

    .PRO_Sel li {
        display:inline-block;
        vertical-align: middle;
    }

    .loginP li {
        border-bottom: 1px solid #b4b4b4;
        margin-bottom: 10px;
    }

        .loginP li input {
            width: 80%;
            border: 0px solid #fff;
        }

    .TXT_BT ul {
        width: 100%;
    }

    .TXT_BT li {
        float: left;
        font-size: 20px;
        margin-top: 15px;
    }

    .info_l li {
        float: left;
        font-size: 16px;
        padding-right: 10px;
    }


    .info_l {
        padding-bottom: 50px;
    }

    .tapMenu {
        margin-left: 30px;
        width: 100%;
    }

        .tapMenu li {
            font-size: 24px;
            float: left;
            padding-right: 10px;
        }

    .mypageData {
        font-size: 14px;
        color: #13a79d;
        font-weight: 500;
    }

    .searchT {
        width: 55%;
    }

    .search {
        padding: 20px 0px 20px 20px;
    }

    .search_BT {
        background-color: #5c6266;
        color: #fff;
        font-size: 14px;
        border: 0px;
        padding: 18px 25px;
        float: right;
    }

    .TXTPay2 > td > img {
        width:15px;
    }
    /*추가작업1210YHJ---굿즈상품 상세*/
    .payment {
        width: 100%;
        padding: 20px 0px;
        border-top: 1px solid #5c6266;
        border-bottom: 1px solid #5c6266;
        font-size: 28px;
    }

    .TXT24 {
        font-size: 14px;
        padding-bottom: 20px;
    }

    .PROdetail {
        background-color: #f5f5f5;
        margin: 10px 30px;
    }

        .PROdetail img {
            max-width: 100%;
        }



    /*수정1210YHJ*/
    .text28 {
        font-size:18px;
        width:160px;
    }

    .tapMenu {
        margin-left: 30px;
        width: 100%;
        display: inline-block;
        margin-bottom: 20px;
    }

    /*이용약관 개인정보이용방침2024-04-06 */

    .policy-h2 {
        font-size: 30px;
        font-weight: 600;
        padding-bottom: 16px;
    }

    .policy-h3 {
        font-size: 20px;
        font-weight: 600;
    }

    .TK p {
        padding: 20px 0px;
        font-size: 16px;
    }

    .policy-ul, .policy-ul ul {
        padding-top: 20px;
    }

    .policy-ul li {
        padding-left: 24px;
        padding-bottom: 16px;
        font-size: 16px;
    }

    .policy-h4 {
        font-size: 16px;
        font-weight: 600;
        padding-top: 12px;
    }

    .privacy_T {
        width: 100%;
        margin: 10px;
        border-top: #b4b4b4 solid 1px;
        border-left: #b4b4b4 solid 1px;
    }

    .privacy_T td {
        border-bottom: #b4b4b4 solid 1px;
        border-right: #b4b4b4 solid 1px;
        padding: 10px 10px;
        text-align: center;
    }

    .privacy_txt01 {
        font-weight: 800;
    }
}


/*테블릿*/
@media (min-width: 768px) and (max-width: 991px) {

    /*메인추천상품 20240411*/
    .product-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; /* Distribute items evenly with space between */
    }

    .product {
        flex: 1 1 auto; /* Each product grows equally */
        max-width: calc(33.3% - 20px); /* Adjust the maximum width as needed */
        margin-bottom: 20px; /* Spacing between rows */
        display: flex;
        flex-direction: column; /* Stack child elements vertically */
        border: 1px solid #b4b4b4;
    }

        .product img {
            width: 100%; /* Image fills its container */
            height: auto; /* Maintains aspect ratio */
        }

    .product-info {
        padding: 10px;
        /*background-color: #f0f0f0;*/
    }

    /* 커스텀 체크박스 스타일 */
    .custom-checkbox label {
        display: flex;
        align-items: baseline;
        width: 30px;
        height: 30px;
        background-color: #fff;
        border: 1px solid #5c6266;
        cursor: pointer;
        position: relative;
    }

    .custom-checkbox input[type="checkbox"]:checked + label:before {
        content: "";
        position: absolute;
        left: 2px; /* 여기서 패딩 값을 조정 */
        top: 2px; /* 여기서 패딩 값을 조정 */
        width: 26px;
        height: 26px;
        background-color: rgb(19, 167, 157);
    }

    .custom-select {
        position: relative;
        width: 50%; /* 필요한 너비로 설정 */
    }

        .custom-select select {
            width: 100%;
            height: 64px;
            padding-left: 10px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            border-color: #b4b4b4;
            ;
        }

        .custom-select::after {
            content: ">";
            position: absolute;
            top: 50%;
            right: 6px;
            transform: translateY(-50%) rotate(90deg);
            pointer-events: none;
            width: 54px;
            height: 54px;
            color: #b4b4b4;
            background: rgb(231, 231, 231);
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }


    img {
        width: 100%;
    }

    /*main*/
    #wrap {
        width: 100%;
        height: 100%;
        margin: 0px auto;
    }

    header, footer, .center {
        margin: 0px auto;
    }

    /*header*/
    .TopBox {
        height: 64px;
    }

    .Logo {
        float: left;
        padding-top: 5px;
        padding-left: 19px;
    }

    .Logo img {
        width: 120px;
    }

    .menu {
        float: right;
        padding-top: 15px;
        padding-right: 19px;
    }

    .homeicon {
        width: 35px;
        margin-left: 10px;
    }

    .center {
        max-width: 100%;
        width: 100%;
    }

    .mainBN {
        height: 100%;
    }


    .mainBoard, .BestPro {
        padding: 33px 13px 0 13px;
    }

    .mainBoard table {
        border-top: 1px solid #b4b4b4;
    }

    .mainBoard img {
        width: 5px;
    }

    .Product01 {
        float: left;
        margin-bottom: 15px;
        margin-right: 32px;
    }

    .Product02 {
        float: left;
        margin-bottom: 15px;
        margin-right: 32px;
    }

    .productBox {
        border: 1px solid #b4b4b4;
        width: 230px;
        height: 230px;
        text-align: center;
    }

        .productBox img {
            height: 100%;
        }

    .BestPro {
        /*height: 460px;*/
    }

        /*상위속성제거*/

        .mainBoard:after, .BestPro:after, .center:after, .bottomBT:after, .center_sub:after {
            content: "";
            clear: both;
            display: block;
        }



    .board {
        width: 100%;
    }

        .board td {
            line-height: 43px;
            border-bottom: 1px solid #b4b4b4;
        }
    /*footer*/

    footer {
        margin-top: 50px;
    }

    footer img {
        width: 120px;
    }

    .footer_logo > img {
        width: 120px;
        padding-right: 20px;
    }


    .footer_logo, .footer_info {
        padding: 5px 16px;
    }

    .footer_info {
        font-size: 14px;
        color: #646464;
    }

    .footer_menu {
        font-size: 14px;
        color: #323232;
        padding: 12px 0px;
        font-weight: 600;
    }

    .lineH {
        padding: 0px 10px;
        font-size: 9px;
    }

    footer {
        padding-top: 10px;
    }

    /*text*/
    .subtit_bold {
        font-weight: 500;
        font-size: 21px;
        padding: 0px 5px 20px 0px;
    }

        .subtit_bold img {
            width: 5px;
            padding-bottom: 15px;
            padding-right: 2px;
        }

    .textB {
        font-size: 24px;
    }

    .textP {
        width:220px;
        font-size: 20px;
    }

    .textPO {
        font-size: 15px;
    }

    .textPg {
        font-size: 30px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .textB2 {
        font-size: 90px;
        text-align: center;
        padding-bottom: 30px;
    }

    .textP2 {
        font-size: 26px;
        text-align: center;
        padding-bottom: 20px;
        font-weight: 600;
    }

    .textP3 {
        font-size: 20px;
        padding-bottom: 20px;
        margin-top: 5px;
    }

    .textP4 {
        font-size: 26px;
        margin-top: 16px;
        padding-bottom: 20px;
        padding-left: 30px;
    }

    .date {
        font-size: 18px;
        float: right;
        letter-spacing: -1px;
    }

    .boardTXT {
        width: 65%;
        font-size: 18px;
    }



    .BT img {
        width: 50%;
        vertical-align: middle;
        margin-left: 20px;
    }

    /*sub*/
    .SubTop-line {
        border-bottom: 8px solid #8dc63f;
    }

    .navi {
        font-size: 18px;
        height: 10px;
        padding-left: 32px;
        padding-top: 26px;
        padding-bottom: 40px;
    }

    .bottomBT {
        color: #ffffff;
        text-align: center;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .bottomBTL, .bottomBTR {
        width: 50%;
        font-size: 20px;
        padding: 20px 0px;
        border-top: 8px solid #f5f5f5;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .bottomBTL {
        float: left;
        background-color: #5c6266;
    }

    .bottomBTR {
        float: right;
        background-color: #13a79d;
    }

    .bottomBTL2, .bottomBTR2 {
        width: 50%;
        font-size: 20px;
        padding: 20px 0px;
        border-top: 8px solid #f5f5f5;
        font-weight: 600;
    }

    .bottomBTL2 {
        float: left;
        background-color: #5c6266;
    }

    .bottomBTR2 {
        float: right;
        background-color: #13a79d;
    }

    .bottomBTL3 {
        background-color: #13a79d;
        font-size: 20px;
        padding: 30px 0px;
        border-top: 8px solid #f5f5f5;
        font-weight: 600;
    }

    .center_sub {
        padding: 0px 32px 0 32px;
    }

    .TKList thead th {
        border-top: 1px solid #5c6266;
        border-bottom: 1px solid #5c6266;
        text-align: center;
        font-size: 20px;
        padding: 10px 0px;
    }

    .TKList table {
        width: 100%;
    }

    .TKList tr td {
        border-bottom: 1px solid #e1e1e1;
        padding: 14px 0px;
    }

    .TKList table:last-child {
        border-bottom: 1px solid #5c6266
    }

    .td_center {
        text-align: center;
    }

    .productInfo {
        height: 164px;
        margin-bottom: 30px;
    }

    .text28 {
        font-size: 18px;
    }

    .productBox2 {
        border: 1px solid #b4b4b4;
        width: 240px;
        height: 180px;
        text-align: center;
        float: left;
        margin-bottom: 5px;
        margin-right: 15px;
    }

        .productBox2 img {
            height: 100%;
        }

    .TXTPay {
        font-size: 20px;
        padding: 10px 0px;
        width: 100%;
        text-align: right;
    }

    .TXTPay2 {
        font-size: 20px;
        padding: 10px 0px;
        width: 100%;
        text-align: right;
    }

    .TXTMint {
        font-weight: 700;
        color: #13a79d;
    }

    .TXTRed {
        font-weight: 700;
        color: #d10716;
    }

    .BT_sm, .BT_sg {
        margin: 6px 0px;
        font-size: 20px;
        color: #ffffff;
        text-align: center;
        padding: 12px 0px;
    }

    .BT_sm {
        background-color: #13a79d;
    }

    .BT_sg {
        background-color: #5c6266;
    }

    .BTBox {
        width: 18%;
    }

    /*상세페이지*/
    .detailBox {
        text-align: center;
    }


    /*장바구니 리스트*/
    .basketBD table {
        width: 100%;
        border-top: 1px solid #e1e1e1;
        padding: 14px 0px;
    }

        .basketBD table:last-child {
            border-bottom: 2px solid #5c6266;
            margin-bottom: 30px;
        }

        .basketBD table tr td {
            padding: 10px 0px;
        }

    .total {
        width: 100%;
        padding-bottom: 60px;
    }

        .total td {
            text-align: right;
            padding: 0px 10px;
        }


    .CenterBox {
        width: 70%;
        margin: auto;
        margin-top: 16%;
    }

    .BT_sm2 {
        background-color: #13a79d;
        font-size: 20px;
        color: #fff;
        text-align: center;
        padding: 18px 0px;
        margin: 6px 0px;
        font-weight: 600;
    }


    label.tit {
        font-size: 18px;
        font-weight: 400;
        padding-top: 20px;
        float: left;
        /*width: 150px;*/
    }

    label.tit2 {
        font-size: 18px;
        font-weight: 500;
        padding-top: 20px;
        float: left;
        width: 180px;
    }

    input {
        border: 1px solid #5c6266;
        padding: 16px;
        font-size: 18px;
        margin: 10px;
    }

    textarea {
        border: 1px solid #5c6266;
        width: 93%;
        height: 80px;
        padding: 16px;
        font-size: 18px;
        margin: 10px;
    }

    .adr {
        width: 93%;
    }

    .adr_BT {
        background-color: #5c6266;
        color: #fff;
        font-size: 26px;
        border: 0px;
        padding: 20px 50px;
    }

    .search {
        width: 93%;
    }

    .NB {
        width: 50px;
    }

    .S_Box {
        border: 1px solid #5c6266;
        padding: 8px;
        font-size: 14px;
        /*margin: 2px;
        width: 80px;*/
        color: #323232;
        margin-top: 15px;
    }

    .S_S_Box {
        border: 1px solid #5c6266;
        padding: 16px;
        font-size: 16px;
        margin: 10px;
        /*width: 280px;*/
        color: #323232;
    }

    .PRO_Sel li {
        display: inline-block;
        vertical-align: baseline;
    }

    .loginP li {
        border-bottom: 1px solid #b4b4b4;
        margin-bottom: 10px;
    }

        .loginP li input {
            width: 80%;
            border: 0px solid #fff;
        }

    .TXT_BT ul {
        width: 100%;
    }

    .TXT_BT li {
        float: left;
        font-size: 20px;
        margin-top: 15px;
    }

    .info_l li {
        float: left;
        font-size: 16px;
        padding-right: 10px;
    }


    .info_l {
        padding-bottom: 50px;
    }

    .tapMenu {
        margin-left: 30px;
        width: 100%;
    }

        .tapMenu li {
            font-size: 24px;
            float: left;
            padding-right: 10px;
        }

    .mypageData {
        font-size: 28px;
        color: #13a79d;
        font-weight: 500;
    }

    .searchT {
        width: 76%;
    }

    .search {
        padding: 20px 0px 20px 20px;
    }

    .search_BT {
        background-color: #5c6266;
        color: #fff;
        font-size: 26px;
        border: 0px;
        padding: 15px 50px;
        float: right;
    }
}


