@charset "UTF-8";

#search input[type="text"],
#search input[type="checkbox"],
#search input[type="radio"],
#search select,
#search button,
#search label {
    outline: none;
}

#search input[type="text"],
#search select {
    box-sizing: border-box;
    width: 100%;
    font-family: initial;
    padding: 4px;
}

#search input[type="radio"],
#search input[type="checkbox"] {
    margin: 0 4px 0 0;
}

#search label {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
    align-items: center;
    cursor: pointer;
}

.gender-select,
.precondition {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
    font-size: 14px;
}
.gender-select label,
.precondition label {
    margin-right: 8px;
}


.txt_notice,
.multiple_select {
    font-size: 10px;
}

.mix_parent {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
}
.mix_parent span {margin-right: 8px;}

.level2nd {margin-top: 8px;}

.search-notes a:before {
    content: "\f0a4";
    font-family: Fontawesome;
    display: inline-block;
    margin-right: 4px;
}

/* 検索パネル */
#search {
    position: fixed;
    overflow-y: scroll;
    top: 0%;
    left: -100%;
    z-index: 5000;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 88px;
    color: #fff;
    background-color: rgba(0,0,0,0.25);
    opacity: 0;
    transition: all 0.3s linear;
}

#search.open {
    top: 0%;
    left: 0%;
    opacity: 1.0;
    background-color: rgba(0,0,0,0.75);
}

#search-panel {
/*margin: 0 0 60px 0;*/
}


#search-tab {
    zoom: 1;
}
#search-tab:after {
    content: ""; 
    display: block; 
    clear: both;
}


#search-tab li {
    position: relative;
    float: left;
    width: 25%;
}

#search-tab:hover .search-dog {}
#search-tab:hover .search-cat {}
#search-tab:hover .search-small {}
#search-tab:hover .search-shop {}

#search-tab li a {
    position: relative;
    display: block;
    padding: 16px 16px 16px 66px;
    color: #fff;
    text-decoration: none;
    background-color: rgba(34, 34, 34, 0.65);
    box-shadow: inset 4px -4px 4px rgba(0,0,0,0.5);
    font-weight: 600;
}

/* 20170731 4mix t.o add start */
#search-tab li:first-of-type a {
    padding-left: 105px;
}
#search-tab li:nth-of-type(2) a {
    padding-left: 100px;
}

#search-tab li:nth-of-type(3) a {
    padding-left: 113px;
}

#search-tab li:nth-of-type(4) a {
    padding-left: 122px;
}
/* 20170731 4mix t.o add end */

[id^="counter_"] {
    position: relative;
    display: inline-block;
    color: #027d38;
    background-color: #e8ff07;
    line-height: 1;
    font-size: 22px;
    font-weight: 600;
    font-family: arial;
    margin: 0 .25em;
    padding: 2px 6px 0 6px;
    vertical-align: bottom;
    border-radius: 12px;
    text-shadow: none;
    transition: all .3s linear;
    text-align: center;
}

#search-tab li a:before {
    position: absolute;
    top: 8px;
    left: 18px;
    display: block;
    width: 42px;
    height: 36px;
    content: "";
    background-repeat: no-repeat;
    background-size: 42px 36px;
}

/* 20170731 4mix t.o changed start */
#search-tab li.search-dog a:before {
    background-image: url(/files/user/img/search-tab-icon-dog.png);
    left: 51px;
}
#search-tab li.search-cat a:before {
    background-image: url(/files/user/img/search-tab-icon-cat.png);
    left: 58px;
}
#search-tab li.search-small a:before {
    background-image: url(/files/user/img/search-tab-icon-small.png);
    left:69px;
}
#search-tab li.search-shop a:before {
    background-image: url(/files/user/img/search-tab-icon-shop.png);
    left:69px;
    top:11px
    ;
}
/* 20170731 4mix t.o add end */


#search-tab li a:hover {
    background-color: rgba(24, 24, 24, 0.95);
    box-shadow: inset 2px -2px 2px rgba(0,0,0,0.5);
}

#search-tab li.active a {
    box-shadow: none;
}

#search-tab li.active a,
#search-box {
    background-color: #4a8326;
}

#search-tab li.search-shop.active a,
#search-box.search-shop {
    background-color: #e0762e;
}


#search-tab li.active a,
#search-box {
    background-image: url(/files/user/img/stripe04.png);
    background-size: 22.5px;
}

#search-box {
    color: #333;
    padding: 8px;
}

.search-box-inner {
    display: none;
    padding: 16px;
    background-color: #fff;
    border-radius: 8px;
}

#search-box.search-dog #search-dog {display: block;}
#search-box.search-cat #search-cat {display: block;}
#search-box.search-small #search-small {display: block;}
#search-box.search-shop #search-shop {display: block;}


.sub_field_disabled {position: relative;}
.sub_field_disabled:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,.65);
    border-radius: 6px;
}

.search-1col,
.search-2col,
.search-3col,
.search-4col {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
    box-sizing: border-box;
    margin: 16px 0;
/*
padding: 4px;
border: 1px solid #ccc;
*/
    border-radius: 6px;
}

.search-1col > dl,
.search-2col > dl,
.search-3col > dl,
.search-4col > dl {
    box-sizing: border-box;
/*margin: 4px;*/
    border: 1px solid #b7b7b7;
    border-left: 0;
/*border-radius: 6px;*/
}

.search-1col > dl {width: 100%;}
.search-2col > dl {width: 50%;}
.search-3col > dl {width: 33.33%;}
.search-4col > dl {width: 25%;}

/*#search [class$="col"] dl dd {background-color: #fff;}*/

#search [class$="col"] dl:first-child {
    border-left: 1px solid #b7b7b7;
    border-radius: 6px 0 0 6px;
}

#search [class$="col"] dl:last-child {
    border-radius: 0 6px 6px 0;
}

#search [class$="col"] dl:first-child:last-child {
    border-radius: 6px;
}

#search [class$="col"] dl.dotted {
    border-right: 1px dotted #ccc;
}

#search [class$="col"] dl dt,
#search [class$="col"] dl dd {
    padding: 11px 11px 8px;
}

#search [class$="col"] dl dt {
    color: #027d38;
    font-weight: 600;
    background-color: #f5fced;
    border-radius: 6px 6px 0 0;
    font-size: 15px;
}

#search [class$="col"] dl:first-child dt {border-radius: 6px 0 0 0;}
#search [class$="col"] dl:last-child dt {border-radius: 0 6px 0 0;}

#search-shop [class$="col"] dl dt {
    color: #e0772f;
    background-color: #ffe6d5;
}


.dd-price {}
.dd-price select {
    width: -webkit-calc(50% - .5rem) !important;
    width: -moz-calc(50% - .5rem) !important;
    width: calc(50% - .5rem) !important;
}

.dd-multiple {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
}
.dd-multiple select {
    width: 50% !important;
}
.multiple_select {
    box-sizing: border-box;
    width: 50%;
    padding: 0 0 0 8px;
}

.multiple_select .win {color: #4a8b0d;}
.multiple_select .mac {color: #e07201;}


.dl-order-type {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
    font-size: 13px;
    margin-right: 16px;
}
    .dl-order-type dt {
        margin-right: 8px;
    }
    .dl-order-type dd {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
        display: flex;
    }
        .dl-order-type dd label {
            margin-right: 8px;
        }



.panel-header {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;/*flex-end*/
}
.panel-header .right,
.panel-header .left {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
    align-items: center;
}
.box-counter01 {
    margin-right: 8px;
}
.desc {
        font-size: 12px;
}


.balloon {
    position: relative;
    margin-right: 8px;
    padding: 4px 1em;
    color: #027d38;
    font-weight: 600;
    letter-spacing: .25em;
    background: #f5fced;
    border: 2px solid #027d38;
    border-radius: 6px;
}
.balloon:before {
    top: 99.8%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}
.balloon:after {
    top: 96.2%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.balloon:after {
    border-color: rgba(245, 252, 237, 0);
    border-top-color: #f5fced;
    border-width: 14px;
    margin-left: -14px;
}
.balloon:before {
    border-color: rgba(2, 125, 56, 0);
    border-top-color: #027d38;
    border-width: 15px;
    margin-left: -15px;
}


.search-panel-btn-box {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
    justify-content: flex-end;
}

.search-panel-btn-box button {
    margin-left: 8px;
    cursor: pointer;
}

.btn-search-submit,
.btn-search-reset,
.btn-search-close {
    box-sizing: border-box;
    height: 44px;
    padding: 8px;
    box-shadow: 0 2px 0 rgba(23, 53, 3, 0.25);
}

.btn-search-submit:hover,
.btn-search-reset:hover,
.btn-search-close:hover {opacity: .75;}

.btn-search-submit:active,
.btn-search-reset:active,
.btn-search-close:active,
.btn-search-submit.sp-active,
.btn-search-reset.sp-active,
.btn-search-close.sp-active {
    transform: translateY(2px);
    box-shadow: none;
}

.btn-search-submit {
    padding: 0 44px 0 8px;
    font-weight: 600;
    background-color: #ffd100;
    border: 2px solid #378e00;
    border-radius: 6px;
    background-image: url(/files/user/img/icon-btn-search01.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
}

.btn-search-submit:disabled,
.btn-search-submit.sp-active:disabled {
    color: #757575;
    background-image: none;
    background-color: #cecece;
    border: 2px solid #aaa;
    cursor: initial;
    transform: translateY(2px);
    box-shadow: none;
    opacity: 1;
}

.btn-search-reset {
    color: #378e00;
    font-weight: 600;
    background-color: #fff;
    border: 2px solid #378e00;
    border-radius: 6px;
}
.btn-search-close {
position: absolute;
top: 8px;
left: 0;
    color: #378e00;
    font-weight: 600;
    background-color: #fff;
    border: 2px solid #378e00;
    border-radius: 6px;
}

.search-notes {
    text-align: right;
}


.panel-footer {
    position: relative;
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px;
    background-color: #efefef;
}

.select-area,
.select-cond {}

.select-area fieldset label,
.select-cond fieldset label {
    float: left;
    width: 50%;
}


@media screen and (max-width: 1024px) {
    #search-tab li a {
        padding-left: 64px !important;
    }
    #search-tab li a:before {
        left: 16px !important;
    }

    #search [class$="col"] dl dd.gender-select, 
    #search [class$="col"] dl  dd.precondition {
        font-size: 12px;
        padding: 14px 8px;
    }
}
/* /1024px */

@media screen and (max-width: 768px) {

#search {
    -webkit-overflow-scrolling: touch;
}

    #search-box {
        padding: 8px;
    }

    .search-box-inner {
        padding: 0;
        border-radius: 8px;
        background-color: transparent;
    }

        #search {
            padding-top: 44px;
        }
        #search-tab {
            height: auto;
        }

        #search-tab {
            font-size: 14px;
        }

            #search-tab li {
                width: 25%;
                margin: 0;
                text-align: center;
            }
                #search-tab li a {
                    padding: 8px !important;
                    text-align: center;
                    font-size: 11px;
                }

                /* 20170731 4mix t.o add start */
                #search-tab li:nth-of-type(1) a,
                #search-tab li:nth-of-type(2) a,
                #search-tab li:nth-of-type(3) a,
                #search-tab li:nth-of-type(4) a {
                    padding-left: 0;
                }
                /* 20170731 4mix t.o add end */

                #search-tab li a:before {
                    position: static;
                    top: initial;
                    left: initial;
                    margin: auto;
                }
                    #search-tab li a span {display: none;}


    #search [class$="col"] {
        display: block;
        margin: 0;
border-bottom: 0;
border-radius: 0;
/*background-color: #fff;*/
/*border-bottom: 1px solid #ccc;*/
    }
        #search [class$="col"] dl {
            width: 100%;
            margin-bottom: 8px;
border: 0 !important;
border-radius: 0 !important;
        }

#search [class$="col"] dl.dotted {
    margin-bottom: 0;
}

#search-small [class$="col"] dl.dotted {
    margin-bottom: 8px;
}


#search [class$="col"] dl dd + dt {
    margin-top: 8px;
}

    .multiple_select {
        display: none;
    }
    .dd-multiple select {
        width: 100% !important;
    }


    .sub_field_disabled {
        display: none;
    }

    .panel-header,
    .panel-header .right {
        display: block;
    }
    .panel-header .left {
        display: none;
    }
    
    .panel-footer {
        flex-direction: column;
/*-webkit-box*/
-webkit-box-orient: vertical;
    }
    .search-panel-btn-box button:first-child {
        margin-left: 0;
    }
    .dl-order-type {
        display: block;
        font-size: 10px;
        margin: 0 0 8px 0;
    }

    .dl-order-type dd {
        padding: 8px 0;
    }

    .panel-header {
        padding: 0 0 8px 0;
        color: #fff;
        text-align: center;
    }

    .search-notes {
        margin-top: 8px;
        padding: 8px;
        text-align: center;
        background-color: #fff;
        border-radius: 24px;
    }

    .btn-search-close {
        position: static;
    }
    
    #search [class$="col"] dl dt,
    #search [class$="col"] dl dd {
        border-top: 1px solid #ccc;
        border-radius: 0;
    }

#search [class$="col"] dl dd {background-color: #fff;}

    #search [class$="col"] dl:first-child dt,
    #search [class$="col"] dl:last-child dt {border-radius: 0;}

    .box-counter01 {font-size: 14px;}
    .gender-select label,
    .precondition label {
        font-size: 10px;
    }

    .search-panel-btn-box {
/* flex 20170523 start */
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/* flex 20170523 end */
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .search-panel-btn-box button {margin: 0;}
    .btn-search-submit {
        width: 100%;
        padding: 8px;
        margin-bottom: 8px !important;
    }
    .btn-search-reset,
    .btn-search-close {
        width: calc(50% - 4px);
    }

    #search [class$="col"] dl dt.selectable {
        position: relative;
    }

    #search [class$="col"] dl dt.selectable:after {
        content: "\f055";
        font-family: Fontawesome;
        position: absolute;
        top: 50%;
        right: 8px;
        line-height: 1;
        margin-top: -.5em;
    }

    #search [class$="col"] dl dt.selectable.selected:after {
        content: "\f056";
        opacity: .35;
    }

    .h2-search-panel01 {color: #fff;}
}
/* /768px */

@media screen and (max-width: 667px) {
    #search-panel .search-notes {
        margin: 16px 0 8px;
    }
}
/* 667px */