@charset "UTF-8";

.shop-list-trigger {
    position: relative;
}

.shop-list-trigger .navLi {
    cursor: pointer;
    display: block;
}

.shop-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px 20px;
    width: 240px;
    text-align: left;
    z-index: 9999;
    border-radius: 4px;
}

.shop-dropdown li {
    list-style: none;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.shop-dropdown li.pref-title {
    font-weight: 600;
    margin-top: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 4px;
    margin-bottom: 6px;
    font-family: "Noto Sans JP", sans-serif;
    color: #666;
}

.shop-dropdown li.pref-title:first-child {
    margin-top: 0;
}

.shop-dropdown li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: opacity 0.3s, color 0.3s;
}

.shop-dropdown li a:hover {
    opacity: 0.7;
    color: #000;
}

.shop-list-sp-trigger h3 {
    cursor: pointer;
    position: relative;
}

.shop-dropdown-sp {
    display: none;
    background: rgba(0,0,0,0.03);
    margin-top: 10px;
    padding: 15px 20px;
    border-radius: 4px;
}

.shop-dropdown-sp .pref-group {
    margin-bottom: 15px;
}

.shop-dropdown-sp .pref-group:last-child {
    margin-bottom: 0;
}

.shop-dropdown-sp .pref-title {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 2px;
}

.shop-dropdown-sp a {
    display: block;
    font-size: 13px;
    padding: 6px 0;
    color: #333;
    text-decoration: none;
    padding-left: 10px;
}

.shop-dropdown-sp a:hover {
    opacity: 0.7;
}