---/* ------------------------------------------------------------------------
    SAMPLE
------------------------------------------------------------------------  */
.SAMPLE {
    font-weight: 500;
    font-size: .875em;
    color: red;
    margin-top: 5px;
    line-height: 1.5em;
}

/* ------------------------------------------------------------------------
    SEARCH
------------------------------------------------------------------------  */
#SEARCH_AREA .container{
    display: flex;
}
#SEARCH_AREA .container >*{
    box-sizing: border-box;
}
#SEARCH_AREA .container label {
    padding-right: 0 !important;
}
#SEARCH_AREA .container label.input{
    width: calc(100% - 40px);
    border: 1px solid var(--main-color);
    background: #fff;
}
#SEARCH_AREA .container label.input input{
    margin: 0 !important;
    border-bottom: none;
    width: 100%;
    height: 100%;
}
#SEARCH_AREA .container .Btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--main-color);
}
#SEARCH_AREA .container .Btn img{
    max-width: 14px;
}

/* ------------------------------------------------------------------------
    SELECT
------------------------------------------------------------------------  */
#SELECT_AREA{
    display: flex;
}
#SELECT_AREA .Select_Box {
    width: calc(100% - 40px);
}
#SELECT_AREA .Select_Box select{
    margin: 0 !important;
    height: 40px;
    border: 1px solid var(--main-color);
}

#SELECT_AREA .Btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--main-color);
}
#SELECT_AREA .Btn img{
    max-width: 14px;
}

/* ------------------------------------------------------------------------
    PAGE TITLE
------------------------------------------------------------------------  */
/* BG */
#PAGE_TITLE:before {
    background-image: url("./images/page_title_sp.jpg");
}
@media screen and (min-width:769px){
    #PAGE_TITLE:before {
        background-image: url("./images/page_title_pc.jpg");
    }
}

/* ------------------------------------------------------------------------
    TAB
------------------------------------------------------------------------  */
#TAB {
}
/* Buttons */
#TAB .Tab_Buttons{
    position: relative;
    display: flex;
}
#TAB .Tab_Buttons:before{
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--sub3-color);
}
#TAB .Tab_Buttons a{
    flex: 1;
    box-sizing: border-box;
    border-radius: 5px 5px 0 0;
    padding: 1em;
    text-align: center;
    transition: all .3s ease-in;
}
#TAB .Tab_Buttons a.active{
    background: #fff;
    color: var(--main-color);
    pointer-events: none;
    font-weight: 700;
    border:1px solid var(--sub2-color);
}
#TAB .Tab_Buttons a:not(.active){
}
#TAB .Tab_Buttons a span{
    font-size: .875em;
}
@media screen and (min-width:769px){
    #TAB .Tab_Buttons a:hover{
        background: #fff;
    }
}

/* Line */
#TAB .Tab_Buttons #Line{
    position: absolute;
    bottom: -1px;
    left: 0;
    content: '';
    width: 50%;
    height: 3px;
    background: var(--main-color);
    transition: all .3s ease-in;
}
#TAB .Tab_Buttons #Line.store{
    left: 0;
}
#TAB .Tab_Buttons #Line.repair{
    left: 50%;
}

/* Contents */
#TAB .Tab_Contents {
    border-left: 1px solid var(--sub2-color);
    border-right: 1px solid var(--sub2-color);
    border-bottom: 1px solid var(--sub2-color);
}
#TAB .Tab_Contents > div {
    padding: 1em;
}

/* List */
#TAB .Tab_Contents > div {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap:20px;
}

/* Box */
#TAB .Tab_Contents > div .Box{
    width: 100%;
}
@media screen and (min-width:769px){
    #TAB .Tab_Contents > div .Box{
        max-width: calc( (100% - 60px) / 4 );
    }
}
#TAB .Tab_Contents > div .Box .Name {
    text-align: center;
    padding: .5em 1em;
    color: #fff;
    background: var(--main-color);
    margin-bottom: 1em;
    border-radius: 5px;
}
/* name arrow */
#TAB .Tab_Contents > div .Box a.Name {
    margin-bottom: 0;
}
#TAB .Tab_Contents > div .Box .Name.arr-r:before{
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

#TAB .Tab_Contents > div .Box .List{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap:10px;
}
#TAB .Tab_Contents > div .Box a{
    width: 100%;
    box-sizing: border-box;
    padding: .5em 1em;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    border: 1px solid var(--sub2-color);
    background: #fff;
    overflow: hidden;
}
@media screen and (max-width:768px){
    #TAB .Tab_Contents > div .Box a:not(.Name){
        max-width: calc( (100% - 10px) / 2 );
    }
}

/* ------------------------------------------------------------------------
    LIST
------------------------------------------------------------------------  */
#STORE_LIST {
}
#STORE_LIST .Item{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap:.5em;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
}
#STORE_LIST .Item:nth-child(odd){
    background: var(--sub4-color);
}
#STORE_LIST .Item > *{
    width: 100%;
    box-sizing: border-box;
    line-height: 1.5em;
}
/* Category */
#STORE_LIST .Item > .Category_Box{
}
#STORE_LIST .Item > .Category_Box .Category{
    width: 80px;
    border-radius: 5px;
    font-size: .875em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-right: 1em;
}
#STORE_LIST .Item > .Category_Box .Category.store{
    background: var(--main-color);
}
#STORE_LIST .Item > .Category_Box .Category.repair{
    background: var(--color-beige);
}

/* Name */
#STORE_LIST .Item > .Name_Box{
    
}

/* Detail */
#STORE_LIST .Item > .Detail_Box{
}
#STORE_LIST .Item > .Detail_Box p{
    display: block;
}
#STORE_LIST .Item > .Btn_Box{
    display: flex;
    column-gap: .5em;
}

/* Btn */
#STORE_LIST .Item > .Btn_Box > *{
    flex: 1;
}
#STORE_LIST .Item > .Btn_Box a{
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 5px 0;
    text-align: center;
    font-size: .875em;
    border: 1px solid var(--sub2-color);
    background: #fff;
}
@media screen and (max-width:1023px){
    #STORE_LIST .Item > .Category_Box{
        display: flex;
        column-gap: 5px;
    }
    #STORE_LIST .Item > .Detail_Box span{
        display: block;
    }
}
@media screen and (min-width:1024px){
    #STORE_LIST .Item > .Category_Box{
        max-width: 80px;
    }
    #STORE_LIST .Item > .Category_Box .Category:not(:last-child){
        margin-bottom: .5em;
    }
    #STORE_LIST .Item > .Name_Box{
        max-width: 300px;
        padding-left: 1em;
    }
    #STORE_LIST .Item > .Detail_Box{
        max-width: calc(100% - 600px);
    }
    #STORE_LIST .Item > .Detail_Box p{
    }
    #STORE_LIST .Item > .Detail_Box p:not(:last-child){
        padding-right: 1em;
    }
    #STORE_LIST .Item > .Btn_Box{
        max-width: 220px;
    }
}


/* ------------------------------------------------------------------------
    PARTS
------------------------------------------------------------------------  */
.SP_BTN {
    display: flex;
    align-items: center;
    column-gap:1.5em;
}
.SP_BTN a{
    margin: 1em auto;
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    padding: 4px;
    background: var(--main-color);
    border-radius: 5px;
}
.SP_BTN a:after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    content: '';
    width: 50%;
    height: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
a.Telnum:after{
    background-image: url("../../asset/images/icon_tel_wh.png");
}
a.E_Mail:after {
    background-image: url("../../asset/images/icon_mail_wh.png");
}
@media screen and (min-width:769px){
    .SP_BTN {
        display: none;
    }
}
