@charset "utf-8";

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
= フローター（表示用仮実装）
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.floater_wrap{
    display: none;
    position:fixed;
    left:0;
    bottom:0;
    z-index:10;
    width:100%;
    background:rgba( 51, 51, 51, 0.7 );
    box-shadow:4px 0 6px rgba( 51, 51, 51, 0.7 );
}
.floater_wrap > p{
    padding:10px 0 0;
    color:#fff;
    font-weight:bold;
    font-size:20px;
    text-align:center;
}
.floater_wrap form{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    padding:10px 0 15px;
}
/* 年齢・性別 */
.category-age-gender-box{
    display:flex;
    align-items:center;
    margin:0 15px 0 0;
    padding:5px 0 5px 10px;
    border:1px solid #ccc;
    border-radius:6px;
    background:#fff;
}
/* 年齢 */
.category-age-gender-box select.sim-age{
    position:relative;
    padding:5px 10px;
    border-radius:3px;
    border:1px solid #ccc;
    font-size:18px;
}
/* 性別 */
.category-age-gender-box ul.gender-box{
    display:flex;
    margin:0 15px;
}
.category-age-gender-box ul.gender-box li:first-child{
    border-right:1px dashed #ccc;
}
.category-age-gender-box ul.gender-box li{
    padding:5px 15px;
    font-size:18px;
}
.category-age-gender-box ul.gender-box li label span.inner{
    padding:0 0 0 10px;
}
/* 比較スタートボタン */
.floater_wrap div:not([class]) .check-item{
    display:block;
    margin:auto;
    padding:15px 20px;
    border-radius:3px;
    border:none;
    box-shadow:0 3px 0 #db3107;
    background:#fd5925;
    color:#fff;
    font-weight:bold;
    font-size:20px;
    line-height:1;
    text-decoration:none;
}
.floater_wrap div:not([class]) .check-item:hover{
    background:#dc350c;
    cursor:pointer;
}

/* レスポンシブ：画面縮小時 */
@media screen and (max-width:660px){
    .category-age-gender-box{
        margin:0 0 10px;
    }
}