.colorimg {
    margin: 0 0 40px;
}

.colorlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

dl.color_content {
    display: flex;
    flex-wrap: wrap;
    width: 48%;
}

.color_content dt {
    width: 100%;
    margin: 0 0 20px;
    padding: 10px 0 10px 20px;
    background-color: #333;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.color_content dd {
    width: 45px;
    height: 45px;
    margin: 0 10px 40px;
    border-radius: 50%;
    border: 1px solid #666;
    transition: 0.25s;
}

.color_content dd:hover {
    opacity: 0.7;
}

/*----- カラーシュミレーター 必須CSS -----*/
/*-- イメージ --*/
.colorimg {
    position: relative;
    width: 100%;
    height: 470px;
    background: url(../../img/simulation/bg_house.jpg) no-repeat center 0 / contain;
}

.colorimg li {
    position: absolute;
    top: 0;
    left: 0;
}

/*-- 切替ボタン --*/
.colorlist_index {
    display: none;
}

.colorlist dd {
    cursor: pointer;
    font-size: 0px;
}

.color-white {
    background-color: #fff;
}

.color-gray {
    background-color: #9C9C9C;
}

.color-black {
    background-color: #212121;
}

.color-brown {
    background-color: #6d4c33;
}

.color-dimgray {
    background-color: #7E8080;
}

.color-beige {
    background-color: #E6BE9F;
}

.color-orange {
    background-color: #EF810F;
}

.color-red {
    background-color: #8B0000;
}

.color-darkorange {
    background-color: #D38027;
}

.color-green {
    background-color: #2A7762;
}

.color-lightgreen {
    background-color: #009A57;
}

.color-darkgreen {
    background-color: #204537;
}

.color-blue {
    background-color: #285294;
}

.color-darkblue {
    background-color: #1D3156;
}

/*----- スマホ -----*/
@media screen and (max-width:767px) {

    /*-----―--- ベース -----―---*/
    .colorlist_index {
        display: flex;
    }

    .colorlist_index li {
        flex-grow: 1;
        margin: 0 0 20px;
        padding: 7px 0;
        background-color: #666;
        border: 1px solid #333;
        text-align: center;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
    }

    .colorlist_index li.active {
        background-color: #333;
    }

    dl.color_content {
        width: 100%;
    }

    /*----- カラーシュミレーター 必須CSS -----*/
    .colorimg {
        height: 200px;
    }

    .colorlist {
        display: block;
    }

    dl.color_content {
        display: none;
    }

    dl.color_content.active {
        display: flex;
    }

    .color_content dt {
        display: none;
    }
}