/* mainsearchside.css */

/* 外枠を350pxに制限。スマホでは100%になるレスポンシブ設計 */
.ss-container {
    width: 100%;
    max-width: 350px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden;
    font-family: sans-serif;
    /* ここを追加：下のコンテンツとの間に15pxの隙間を作る */
    margin-bottom: 15px;
}

/* ヘッダー：画像のようなグレー背景 */
.ss-header {
    background-color: #f5f5f5;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 1px solid #dcdcdc;
    color: #333;
}

.ss-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ss-list li {
    border-bottom: 1px solid #eee;
}

.ss-list li:last-child {
    border-bottom: none;
}

/* リンク：タップしやすく高さを確保 */
.ss-list a {
    display: flex;
    align-items: center;
    padding: 4px 15px;
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
	/* 行の高さを指定して、さらに行間をタイトにします */
    line-height: 1.0;
    transition: background-color 0.2s;
}

/* タップ/ホバー時に色を変えて反応を分かりやすく */
.ss-list a:active, .ss-list a:hover {
    background-color: #f9f9f9;
}

/* アイコンの間隔 */
.ss-icon {
    margin-right: 12px;
    font-size: 1.2rem;
}