@charset "utf-8";

/* 全体 */
* {
    font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    color: #555555;
}

/* 共通 */


/* ヘッダー */
.header_div {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
}

/* ヘッダーのタイトル */
.header_h1_title {
    font-size: 36px;
    font-weight: bold;
    width: 100%;
}

/* 検索ボックス */
.main_search_div {
    width: 80%;
    margin: 0px auto;
    margin-bottom: 20px;
    text-align: center;
}

#main_search_input {
    width: 80%;
    height: 35px;
    padding: 3px 3px 3px 3px;
    border: 2px solid #555555;
    border-radius: 5px;
}

.main_search_fa_search {
    font-size: 1.2rem;
    margin-left: -32px;
    color: #7f7f7f;
}

/* メイン */
.main_div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 50px;
}

/* メイン（左側） */
.main_div_left {
    width: 280px;
    border: 1px solid #7f7fff;
}

/* メイン（左側）カテゴリーのヘッダー */
.main_div_left_category_header {
    border: 1px solid #7f7fff;
    background-color: #7f7fff;
    color: #ffffff;
    padding: 1px 5px 1px 5px;
    text-align: center;
}

/* メイン（左側）カテゴリー */
.main_div_left_category {
    display: flex;
    align-items: center;
    height: 25px;
}

/* メイン（左側）カテゴリー */
.main_div_left_category * {
    font-size: 0.75rem;
    height: 100%;
}

.main_div_left_category[data-selected="1"] > * {
    background-color: #c1c1ff;
    color: #ffffff;
}

.main_div_left_category > h3,
.main_div_left_category > h4 {
    width: 100%;
    display: flex;
    align-items: center;
    line-height: 100%;
    padding-left: 5px;
}

.main_div_left_category > i {
    display: flex;
    align-items: center;
    line-height: 100%;
    padding-left: 25px;
}

.main_div_left_category:hover * {
    background-color: #c1c1ff;
    color: #FFFFFF;
}


/* メイン（右側） */
.main_div_right {
    width: calc(100% - 280px);
}

/* メイン（右側）ヘッダー */
.main_div_right_header {
    border: #ff7f7f;
    background-color: #ff7f7f;
    padding: 1px 5px 1px 5px;
    margin-left: 10px;
    margin-bottom: 10px;

    display: flex;
    align-items: center;
}

.main_div_right_header * {
    color: #ffffff;
    font-size: 0.75rem;
}

/* メイン（右側）ヘッダー　ソート */
.main_div_right_result_sort {
    width: 130px;
    border: 1px solid #555555;
    color: #555555;
    background-color: #ffffff;
    padding: 1px 5px 1px 5px;

}

.main_div_right_result_sort * {
    border: 1px solid #555555;
    color: #555555;
    background-color: #ffffff;
    padding: 1px 5px 1px 5px;

}

/* メイン（右側）結果ボックス*/
.main_div_right_result_temp {
    display: none;
    border: 1px solid #555555;
    padding: 5px 5px 5px 5px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.main_div_right_result_temp * {
    font-size: 0.75rem;
}

/* メイン（右側）商品タイトル */
.main_div_right_result_title {
    color: #3333ff;
    font-size: 0.9rem;
}

/* メイン（右側）バナー */
.main_div_right_result_banner_img {
    max-width: 300px;
    max-height: 300px;
}





