﻿@charset "utf-8";
/*--------------------------------------

  タイトル周り

---------------------------------------*/
#search_result h3 {
    line-height: 1.3;
}
/*--------------------------------------

  マイリストタブ

---------------------------------------*/
.tab_mylist {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 30px 0;
}
.tab_mylist a {
    position: relative;
    display: block;
    flex-grow: 1; 
    flex-shrink: 1; 
    flex-basis: 1;
    height: 50px;
    margin: 0 1% 0 0;
    line-height: 50px;
    border: solid 2px #e5e5e5;
    color: #666;
    font-size: 1.6rem; 
    text-align: center;
}
.tab_mylist a:hover {
    background: #FB9DB0;
    border-color: #FB9DB0;
    color: #FFF;
}
.tab_mylist a.selected {
    background: #FB9DB0;
    border-color: #FB9DB0;
    color: #FFF;
    font-weight: bold;
}
.tab_mylist a.selected::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: rotate(45deg) translateX(-50%);
    -webkit-transform: rotate(45deg) translateX(-50%);
    z-index: 0;
    background: #FB9DB0;
}
/*--------------------------------------

  お店一覧

---------------------------------------*/
.no_shop {
    color: #999;
    font-size: 1.6rem;
    text-align: center;
}
#shop_list {
    position: relative;
    margin: 20px 0 40px 0;
    padding: 20px;
    border: solid 4px #dcdcdc;
    background: #fff;
}