@charset "UTF-8"; /*
Entry Color Select
---------------------------------- */
/* Overlay
------------------------- */
.overlay{
    /*オーバーレイのCSS*/  
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    display: none;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

/* -------------------------
Inner Box
------------------------- */
.entryColorSelect{
    height: 100%;
    background: #FFF;
}

@media print, screen and (min-width: 960px){
    .entryColorSelect{
        width: 800px;
        height: 500px;
        margin: -250px 0 0 -400px;
        border-radius: 10px;
        position: absolute;
        top: 50%;
        left: 50%;
        position: relative;
    }
}

/* -------------------------
Title
------------------------- */
.entryColorSelect h2{
    padding: 15px 0;
    height: 60px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: bold;
    padding-left: 20px;
    margin-bottom: 0;
}

/* -------------------------
LIST
------------------------- */
.entryColorSelect ul{
    padding: 15px;
    /* height: 500px; */
    background: rgb(228, 228, 228);
    overflow: auto;
    box-shadow: 0 0 30px rgba(0,0,0,0.2) inset;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

@media print, screen and (min-width: 960px){
    .entryColorSelect ul{
        height: 350px;
    }
}

/* List */
.entryColorSelect ul li{
    padding: 20px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    background: #fff;
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
    transition: .5s;
}

.entryColorSelect ul li:hover{
    background:var(--color-secondary);
}

.entryColorSelect ul li.choosing{
    color: #fff;
    background:var(--color-primary) !important;
}

.entryColorSelect ul li dl{
    margin: 0;
    overflow: hidden;
}

/* Color */
.entryColorSelect ul li dl dt{
    clear: both;
    float: left;
    width:10%;
}

.colorDisp{
    width:30px;
    height:30px;
    border-radius: 50%;
    border: 1px solid #dedede;
}

/* Text */
.entryColorSelect ul li dl dd{
    float: right;
    width:87%;
    font-size: 14px;
    margin-left: 0;
    line-height: 1.4;
    padding-top: 7px;
    text-align: left;
}

.entryColorSelect ul li dl dd br{
    display: none;
}

.optioncoloer .colorName::after{
    content: '※追加料金';
    font-size: 12px;
    margin-left: 5px;
}


@media print, screen and (min-width: 960px){
    .entryColorSelect ul li dl dt{
        width:50px;
    }
    .colorDisp{
        margin: 0 auto;
    }
    .entryColorSelect ul li dl dd{
        float: left;
        font-size: 16px;
        padding-top: 5px;
    }
}

/* -------------------------
Button
------------------------- */
/* OUTLINE */
.btnArea{
    text-align: center;
}

/* BTN | ENTRY */
.entryColorSelect .mvEntBtn{
    cursor: pointer;
    width: 100%;
    line-height: 60px;
    color: white;
    font-weight: bold;
    background: var(--color-primary) url(/1cars/common/img/icon/right-arrow_wht.svg) no-repeat right 25px center;
    background-size: 12px;
}

.entryColorSelect .mvEntBtn a{
    color: white;
    text-decoration: none;
}

/* BTN | CLOSE */
.colorSelectClose{
    cursor: pointer;
    position: absolute;
    top: 17px;
    right: 20px;
    padding-left: 20px;
    transform: .5s;
    background: url(/1cars/common/img/icon/close.svg) no-repeat left center;
    background-size: 14px;
}

/* BTN | CLOSE -> HOVER */
.colorSelectClose:hover{
    opacity: 0.6;
}

@media print, screen and (min-width: 960px){
    /* BTN | ENTRY */
    .entryColorSelect .mvEntBtn{
        width: 300px;
        line-height: 40px;
        margin:10px auto 0;
        border-radius: 6px;
        background-position: right 10px center;
        transition: .5s;
    }
    .entryColorSelect .mvEntBtn:hover{
        opacity: 0.6;
    }
}
