
.text_left{text-align: left;}
.text_center{text-align: center;}
.text_right{text-align: right;}
.bgc_gray{background-color: #f7f7f7;}


#rc_header{
    /* height: 100px; */
    padding: 7px 0;
    text-align: center;
    background-color: #ffffff;
}
#rc_header img{
    width: 120px;
}


#rc_wrap{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    position: relative;
}
@media (min-width: 960px) {
    #rc_wrap{
        flex-flow: row;
    }
}
#rc_body{
    width: 90%;
    max-width: 1038px;
    margin: 0 auto;
    font-size: 14px;
}
@media (min-width: 960px) {
    #rc_body{
        width: 100%;
    }
}
#rc_title{
    padding: 30px 10px;
}
.rc_row{
    border-bottom: solid 1px #dadada;
}

/* tab */
.rc_tab {
    display: flex;
    flex-wrap: wrap;
}

label.rc_gender {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: .6em .8em .6em;
    margin: 15px 0;
    /* border: 1px solid #dadada; */
    /* border-top: 1px solid #dadada; */
    border-radius: 0;
    /* background-color: #f4f4f4; */
    color: #333;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

label.rc_gender:hover {
    opacity: .8;
}

.rc_gender input {
    display: none;
}

.rc_tab > div.rc_tab_content {
    display: none;
    width: 100%;
    background-color: #fff;
}



label.rc_gender:has(:checked) {
    background-color: #23ABDD;
    border: solid 1px #23ABDD;
    /* border: solid 1px #23ABDD; */
    /* border: solid 1px #e9e9e9; */
    border-radius: 6px;
    color: #ffffff;
}

.rc_tab label.rc_gender:has(:checked) + div.rc_tab_content {
    display: block;
}



/* category */

.rc_category{
    display: flex;
    align-items: center;
    height: 54px;
    margin: 0 15px;
}
.rc_category > div{
    width: 100%;
}
.rc_modal_btn{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

/* modal */
body.modal-open {
    overflow: hidden;
}

.rc_modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden; /* モーダル全体のスクロールを無効にする */
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc_modal_content {
    position: relative;
    background-color: #fff;
    padding: 20px 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    max-height: 90%;
    min-height: 300px;
    overflow: hidden; /* モーダルコンテンツ全体のスクロールを無効にする */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rc_modal_head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 15px;
}
.rc_modal_head h3{
    padding-bottom: 0;
}

.rc_modal_close_top {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
}

.rc_modal_close:hover,
.rc_modal_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.rc_modal_body{
    max-height: calc(100vh - 400px);
    overflow-y: auto; /* モーダルのコンテンツ内でスクロールを許可する */
}
.rc_modal_body ul{
    padding-left: 0;
    padding-bottom: 20px;
}
.rc_modal_body li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 15px;
    border-bottom: 1px solid rgba(45,45,45,.05);
    cursor: pointer;
}
.rc_modal_body li:first-child{
    border-top: 1px solid rgba(45,45,45,.05);
}
.rc_modal_body li:hover{
    background-color: rgba(79,188,228,.05);
}
.rc_modal_close_bottom{
    width: 180px;
    text-align: center;
    cursor: pointer;
    margin: 0 auto 50px auto;
}





/* item */
#rc_item_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.rc_item{
    width: 50%;
    display: flex;
    flex-direction: column;
}
@media (min-width: 960px) {
    .rc_item{
        width: 25%;
    }
}
.rc_soldout_text{
    font-size: 16px;
    color: #dadada;
    font-weight: bold;
    text-decoration: none;
}

.rc_item_thumb_wrap{
    position: relative;
}
.rc_item_rank{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 30px;
    height: 30px;
    padding-top: 2px;
    color: #ffffff;
    background-color: rgba(0,0,0,.5);
}

.rc_item_rank[data-rank="1"]{background-color: rgba(246,172,0,.9);}
.rc_item_rank[data-rank="2"]{background-color: rgba(191,191,191,.9);}
.rc_item_rank[data-rank="3"]{background-color: rgba(163,87,0,.9);}



.rc_item_thumb{
    width: 100%;
    height: auto;
}
.rc_item_title{
    font-size: 13px;
    margin-bottom: 5px;
    padding: 20px 15px 0 15px;
}
.rc_item_color{
    font-size: 11px;
    padding: 0 15px;
    margin-top: 3px;
}
.rc_item_spacer{
    flex-grow: 1;
    height: 5px;
}
.rc_item_price_wrap{
    display: flex;
    align-items: center;
    margin: 0 0 20px 15px;
}
.rc_item_price{
    font-size: 15px;
    font-weight: bold;
}
.rc_item_price.rc_sale{
    color: #ed293e;
}
.rc_item_price span{
    font-size: 12px;
}
.rc_item_off{
    font-size: 11px;
    padding: 2px 8px 3px 8px;
    color: #ffffff;
    background-color: rgba(237,41,62,.9);
    position:absolute;
    bottom: 0;
    left: 0;
}
.rc_item_off span{
    font-size: 14px;
    /* font-weight: bold; */
}

























.rc_cat_parent{
    overflow: auto;
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
    padding: 15px 0;
    margin: 0 10px;
    border-bottom: solid 1px #dadada;
}
.rc_cat_parent input {
    display: none;
}
.rc_cat{
    white-space: nowrap;
    font-size: 13px;
    padding: 5px 15px 8px 15px;
    border: solid 1px #dadada;
    border-radius: 999px;
}
.rc_cat:has(:checked){
    background-color: #f4f4f4;
}


#nc_kv img{
    width: 100%;
    height: auto;
}
.nc_row{
    border-bottom: solid 1px #dadada;
}
#nc_nav{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    z-index: 100;
}
#nc_input_info{
    display: flex;
    align-items: center;
    height: 54px;
    margin: 0 15px;
}
#nc_input_info > div{
    width: 100%;
    font-size: 13px;
}
#nc_filter_num{
    display: inline-block;
    width: 30px;
    padding: 4px 10px 5px 10px;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
    border: solid 1px #23ABDD;
    border-radius: 50%;
    background-color: #23ABDD;
    margin-left: 5px;
}
#nc_clear{
    margin-left: 5px;
    font-size: 12px;
    color:#23ABDD;
    cursor: pointer;
}
#nc_hit_num{
    font-size: 18px;
    /* font-weight: bold; */
    margin-right: 3px;
}
#sortSelect{
    margin-left: 10px;
}

.nc_select {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.nc_select::after {
    position: absolute;
    right: 10px;
    width: 10px;
    height: 7px;
    background-color: #b2b2b2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.nc_select select {
    appearance: none;
    min-width: 50px;
    height: 2.8em;
    padding: 5px 25px 5px 10px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 12px;
    cursor: pointer;
}







#nc_input_parents{
    overflow: auto;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
    padding: 10px 0;
    margin: 0 10px;
}
.nc_input_parent{
    white-space: nowrap;
    font-size: 13px;
    padding: 3px 10px 3px 20px;
    border: solid 1px #dadada;
    border-radius: 999px;
}
.nc_input_parent.active{
    background-color: #f4f4f4;
    border-color: #999999;
    font-weight: bold;
}
.scroll_box::-webkit-scrollbar {
    background: #ffffff;
    width: 5px;
    height: 5px;
    border-radius: 5px;
}
.scroll_box::-webkit-scrollbar-thumb {
    background-color: #dadada;
    border-radius: 5px;
}
.nc_input_top{
    display: flex;
    margin-bottom: 20px;
}
.nc_input_title{
    width: 50%;
}
.nc_input_close{
    width: 50%;
}
.nc_input_wrap{
    padding: 20px 20px 10px 20px;
}
.nc_input_list{
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding-left: 0;
}
.nc_input_list > li{
    /* width: 50%; */
    margin-bottom: 10px;
    margin-right: 20px;
    white-space: nowrap;
}
input.filter[type="checkbox"] {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input.filter[type="checkbox"] {
    position: relative;
    width: 15px;
    height: 15px;
    border: 1px solid #999999;
    vertical-align: -3px;
}
input.filter[type="checkbox"]:checked {
    border: 1px solid #23ABDD;
    background-color: #23ABDD;
}
input.filter[type="checkbox"]:checked:before {
    position: absolute;
    top: 2px;
    left: 5px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
}
#イエロー{
    border-color: yellow;
    background-color: yellow;
}
#イエロー:checked:before{
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}
#オレンジ{
    border-color: orange;
    background-color: orange;
}
#オレンジ:checked:before{
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}
#ピンク{
    border-color: pink;
    background-color: pink;
}
#ピンク:checked:before{
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}
#ホワイト{
    border-color: white;
    background-color: white;
    border: 1px solid #b2b2b2;
}
#ホワイト:checked:before{
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}
#グレー{
    border-color: gray;
    background-color: gray;
}
#パープル{
    border-color: purple;
    background-color: purple;
}
#ピンク{
    border-color: pink;
    background-color: pink;
}
#ブルー{
    border-color: blue;
    background-color: blue;
}
#グリーン{
    border-color: green;
    background-color: green;
}
#ブラック{
    border-color: black;
    background-color: black;
}
#レッド{
    border-color: red;
    background-color: red;
}


.nc_input_list > li > label{
    font-size: 14px;
    vertical-align: middle;
    margin-left: 5px;
}

#nc_notfound{
    padding: 150px 0;
    background-color: #f7f7f7;
    color: #b2b2b2;
    text-align: center;
    font-size: 24px;
}


#nc_item_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.nc_item{
    width: 33.3%;
    display: flex;
    flex-direction: column;
}
@media (min-width: 960px) {
    .nc_item{
        width: 25%;
    }
}
.nc_soldout{
    position: absolute;
    top:0;
    left:0;
    z-index: 10;
    height: 100%;
    width: 100%;
    display:flex;
    background-color: rgba(0,0,0,0.2);
    justify-content: center;
    align-items: center;
}
.nc_soldout_text{
    font-size: 16px;
    color: #dadada;
    font-weight: bold;
    text-decoration: none;
}
.nc_soldout_bg{
    background-color: #f2f2f2;
}
.nc_item_thumb_wrap{
    position: relative;
}
.nc_item_sale{
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 11px;
    padding: 2px 8px 3px 8px;
    color: #ffffff;
    background-color: rgba(237,41,62,.9);
}
.nc_item_sale span{
    font-size: 14px;
}
.nc_item_thumb{
    width: 100%;
    height: auto;
}
.nc_item_title{
    font-size: 13px;
    margin-bottom: 5px;
    padding: 20px 15px 0 15px;
}
.nc_item_color{
    font-size: 11px;
    padding: 0 15px;
    margin-top: 3px;
}
.nc_item_spacer{
    flex-grow: 1;
    height: 5px;
}
.nc_item_price{
    font-size: 15px;
    font-weight: bold;
    padding: 0 15px 20px 15px;
    margin-bottom: 0;
}
.nc_item_price.nc_sale{
    color: #ed293e;
}


#nc_gotop{
    display: flex;
    justify-content: center;
    padding-top: 50px;
}
#nc_gotopBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #d4d4d4;
}

#nc_gotopBtn:hover {
    border: 1px solid #d4d4d4;
    background-color: #fff;
}

#nc_gotopBtn:hover path {
    fill: #d4d4d4;
}

#nc_gotopBtn:hover {
    border: 1px solid #d4d4d4;
    background-color: #fff;
}

#nc_gotopBtn:hover path {
    fill: #d4d4d4;
}


#nc_footer{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 50px 0;
}
.nc_footer_head{
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    color: #333333;
    padding-bottom: 15px;
}
#nc_social_link{
    display: flex;
    justify-content: center;
}
#nc_social_link img{
    width: 40px;
}

#nc_gender_link{
    display: flex;
    flex-flow: column;
    padding: 0 10px;
}
@media (min-width: 960px) {
    #nc_gender_link{
        flex-flow: row;
    }
}
#nc_gender_link img{
    width: 100%;
    height: auto
}
#nc_copyright{
    text-align: center;
    font-size: 13px;
    padding: 20px 0;
    margin-bottom: 20px;
}





#nc_debug{
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    overflow-x: scroll;
    /* background-color: blue; */
}
#debug_colnames th{
    white-space: nowrap;
}



@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        display: none;
        opacity: 0;
        z-index: -1;
    }
}
#loader {
    width: 100%;
    height: 100%;
    top: 0;
    background-color: #ffffff;
    position: absolute;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 環境によって「z-index」追加 */
}
/* 読み込み完了後に「loaded」を付与する */
#loader.loaded {
    animation: fadeOut 1.5s forwards;
}
/* 以降「SpinKit」で選んだアニメーションのCSSを貼付する */

.spinner {
    /* margin: 200px auto 0; */
    width: 70px;
    text-align: center;
}

.spinner>div {
    width: 18px;
    height: 18px;
    background-color: #999999;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}