@charset "utf-8";

/************************************************
 追加ブロック用
************************************************ */
/*** 目次 ***

▼ブロック共通

▼各機能ブロックの指定
-検索バー
-オモイカネについて
-おすすめ商品カルーセル
-著者カルーセル



/* ==============================================
ブロック共通
/* ============================================= */



/* ***********************************************
▼各機能ブロックの指定
/*********************************************** */

/* ===============================================
▼検索バー
=============================================== */
div.horizontal_line {
    background-color: #efefef;
    height: 50px;
}

div.horizontal_line > form {
    padding: 7px;
}

div#search_bar_form_container {
    display: table;
    
    /* I want the whole search box
        to be exactly this wide. */
    width: 578px;
    
    margin: 0 auto 0;
}

div#search_bar_form_container div.cell {
    display: table-cell;
}

div#search_bar_form_container div.cell:last-child {
    /* Makes sure this cell is only wide enough
        for the button label. */
    width: 1px;
}

label.search_bar_select_group {
    position: relative;
    display: inline-block;
    overflow: hidden;

    box-sizing: border-box;
    /* width: 100%; */
    width: 140px;
    height: 34.5px;
    padding: 0;
    border-radius: 7px 0 0 7px;
    top: -2px;

    vertical-align: middle;

    border: 1px solid #cdcdcd;
    background-color: #f3f3f3;
    background-repeat: no-repeat;
}

label.search_bar_select_group:after {
    position: absolute;
    top: 0;
    right: 8px;
    bottom: 0;

    width: 0;
    height: 0;
    margin: auto;

    content: '';

    border-top: 4px solid #999;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

#search_bar_scope, #search_bar_input, div.search_bar_button {  
    width: 100%;
    height: 35px;

    -moz-box-sizing: border-box;
    box-sizing: border-box;
    
    font-family: inherit;
    font-size: inherit;
}

#search_bar_scope {
    position: relative;
    z-index: 1;  

    /* line-height: 1.8; */

    display: block;

    width: 120%;
    padding: 0;

    text-indent: 8px;

    border: none;
    border-radius: 0;
    background-color: transparent;
    background-image: none;
    box-shadow: none;

    -webkit-appearance: none;
    -moz-appearance: none;
            appearance: none;
}

#search_bar_input {
    margin: 0;
    padding: 0 10px;
    width: 370px;
    
    background-color: #f8f8f8;
    
    border-width: 1px 0 1px 0;
    border-color: #cdcdcd;
}

#search_bar_input:focus {
    outline: 0;
    border: 1px solid #b11636;
}

#search_products {
    line-height: 35px;

    margin: 0;
    padding: 0 20px;

    color: #fff;
    background-color: #b11636;
    font-size: 14px;
    
    border: none;
    border-radius: 0 7px 7px 0;
    
    white-space: nowrap;
}

#search_products:hover {
    background-color: #8a102c;
}

/* ===============================================
▼オモイカネについて
=============================================== */
#intro_title {
    background-color: #b11636;
    color: #fff;
    font-size: 18px;
    padding: 5px;
}

#about_omoikane {
    margin: 3%;
    font-size: 16px;
}

/* ===============================================
▼おすすめ商品カルーセル
=============================================== */
.recomend_carousel .slick-list {
    height: 200px;
}

/* ===============================================
▼著者カルーセル
=============================================== */
div#carousel_right_text {
    height: 0;
    float: right;
    position: relative;
    top: -28px;
    left: -10px;
}

div#carousel_right_text a {
    text-decoration-line: underline;
}