@charset "utf-8";

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    min-height: 783px;
    background: rgba(255,255,255,1);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(51%, rgba(204,204,204,1)), color-stop(100%, rgba(204,204,204,1)));
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), color-stop(51%, rgba(204,204,204,1)), to(rgba(204,204,204,1)));
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(204,204,204,1) 51%, rgba(204,204,204,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cccccc', GradientType=0 );
    -webkit-animation: AnimationName3 20s ease infinite;
    animation: AnimationName3 20s ease infinite;
    background-size: 200% 200%;
    position: relative;
}
@-webkit-keyframes AnimationName {
    0% { background-position: 50% 0% }
    50% { background-position: 50% 100% }
    100% { background-position: 50% 0% }
}
@keyframes AnimationName {
    0% { background-position: 50% 0% }
    50% { background-position: 50% 100% }
    100% { background-position: 50% 0% }
}

.ws .bg {
    height: 800px;
    background-image: url(../wsimg/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 100px;
    position: relative;
}
.inner {
    width: 100%;
    height: 100%;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}

.slogo {
    position: absolute;
    width: 200px;
    top: 30px;
    left: 25px;
    display: none;
    cursor: pointer;
}

.notice {
    width: 68%;
    max-width: 697px;
    margin: 0 auto 0;
    background-color: rgba(255,255,255,0.8);
    border: solid 1px #000;
    display: block;
    padding: 25px 2.8%;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    top: 75px;
}
.notice h1 {
    margin-bottom: 25px;
}

.btn_agree {
    margin-bottom: 25px;
    cursor: pointer;
}
.notice p {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 20px;
}
.notice h2 {
    font-size: 1em;
    color: #fff;
    background-color: #000;
    border-radius: 20px;
    padding: 7px 0 5px;
    line-height: 1;
    margin-bottom: 20px;
}
.notice ul {
    text-align: left;
    list-style: disc;
    list-style-position: outside;
    padding: 0 0 0 15px;
}
.notice ul li {
    list-style: disc;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 5px;
}
.nomatch {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 0.8em;
    text-align: right;
}
.hidehf {
    color: #595959;
    position: absolute;
    font-size: 0.8em;
    padding: 1px 3px 0px;
    border-radius: 0 0 5px 5px;
    border: 1px solid #D6D6D6;
    border-top: none;
    top: 0px;
    right: 5%;
    cursor: pointer;
}
.hidehf:hover {
    opacity: 0.8;
}

.error {
    display: none;
    background-color: rgba(0,0,0,0.9);
    width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
}
.error div {
    position: relative;
    top: 42%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0.9em;
    color: #fff;
}
.error p {
    margin: 0 0 20px;
}
.error .closebtn {
    border: 1px solid #999;
    border-radius: 5px;
    padding: 3px 5px;
}

#load {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
}
#loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-box-shadow:
        0 -30px 0 0 #bbb,
        15px -26px 0 0 #aaa,
        26px -15px 0 0 #999,
        30px 0 0 0 #888,
        26px 15px 0 0 #777,
        15px 26px 0 0 #666,
        0 30px 0 0 #555,
        -15px 26px 0 0 #444,
        -26px 15px 0 0 #333,
        -30px 0 0 0 #222,
        -26px -15px 0 0 #111,
        -15px -26px 0 0 #000;
    box-shadow:
        0 -30px 0 0 #bbb,
        15px -26px 0 0 #aaa,
        26px -15px 0 0 #999,
        30px 0 0 0 #888,
        26px 15px 0 0 #777,
        15px 26px 0 0 #666,
        0 30px 0 0 #555,
        -15px 26px 0 0 #444,
        -26px 15px 0 0 #333,
        -30px 0 0 0 #222,
        -26px -15px 0 0 #111,
        -15px -26px 0 0 #000;
    -webkit-animation: loading 0.5s infinite steps(12, start);
    animation: loading 0.5s infinite steps(12, start);
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.makers {
    position: absolute;
    width: 224px;
    border: 1px solid #C90000;
    background-color: rgba(255,255,255,0.8);
    padding: 25px 0 25px;
    top: 146px;
    left: 185px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.makers:before {
    content: "MAKER";
    width: 82px;
    height: 82px;
    background-color: #000;
    color: #FF0000;
    text-align: center;
    display: block;
    top: -1px;
    left: -83px;
    line-height: 82px;
    position: absolute;
}
.makers li {
    color: #666;
    display: block;
    padding: 5px 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-indent: 100px;
    cursor: pointer;
}
.makers li:hover {
    background-color: #C90000;
    color: #fff;
}

.carswrap {
    position: absolute;
    width: 356px;
    top: 146px;
    left: 552px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.cars {
    display: block;
    width: 100%;
    border: 1px solid #C90000;
    background-color: rgba(255,255,255,0.8);
    padding: 10px 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 500px;
    overflow-y: auto;
}
.carswrap:before {
    content: "MODEL";
    width: 82px;
    height: 82px;
    background-color: #000;
    color: #FF0000;
    text-align: center;
    display: block;
    top: 0px;
    left: -82px;
    line-height: 82px;
    position: absolute;
    overflow: visible;
}
.cars li {
    color: #666;
    display: block;
    padding: 5px 0 5px 20px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}
.cars li:hover {
    background-color: #C90000;
    color: #fff;
}
.cars p {
    padding: 0 10px 20px;
}

#carData {
    position: relative;
    padding: 0;
    outline : none;
    width: 100%;
}
#carData .carimgbox {
    position: absolute;
    top: 150px;
    left: 205px;
    outline : none;
}
#carData .carimgbox:focus {
    outline : none;
}
#carData .carcanvas {
    position: relative;
    z-index: 50;
    outline : none;
}
#carData .carcanvas:focus {
    outline : none;
}
#carData .carcanvas canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 60;
    outline : none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
#carData .carcanvas canvas:focus {
    outline : none;
}
#carHighlight {
    
}
#carName {
    width: 248px;
    height: 86px;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d9d9d9), to(transparent));
    background-image: linear-gradient(top, #d9d9d9, transparent);
    top: 0;
    left: 388px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: -0.05em;
    text-align: center;
    line-height: 1.2;
}
.wheel {
    position: absolute;
    z-index: 100;
    width: 100px;
    margin: -50% 0 0 -50%;
}
.colorwrap {
    position: absolute;
    bottom: 40px;
    left: 2.5%;
    width: 95%;
}
.colorblock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: 1px solid #999;
}
.colorblock li {
    width: 4.546%;
    height: 43px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.colorblock li:first-child:hover {
    border: 3px solid rgba(0,0,0,0.3);
}
.colorblock li:hover {
    border: 3px solid rgba(255,255,255,0.8);
}
.titles {
    color: #CC0000;
    font-size: 14px;
    margin: 0 0 3px;
    font-weight: bold;
}

#wheelblock {
    position: absolute;
    top: 410px;
    left: 2.5%;
    width: 95%;
    min-height: 323px;
    background-image: url(../wsimg/wheelbg.png);
    background-position: top center;
    background-repeat: no-repeat;
}
.wheelList {
    overflow: visible;
}
.wheelList li {
    width: 68px !important;
    padding: 10px;
    outline: none;
    margin: 55px 0 0;
}
.wheelList li img {
    cursor: pointer;
}
.wheelList li.slick-center img {
    width: 142px;
    height: 142px;
    pointer-events: none;
}
.wheelList li.slick-center {
    width: 248px !important;
    text-align: center;
    margin: 0;
}
.wheelList li .wheeldata {
    display: none;
}
/*
.wheelList li.slick-center .wheeldata {
    display: block;
}
*/
.wheelList li.slick-center .wheeldata.onview {
    display: block;
}

.inchwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack:center;
    -ms-flex-pack:center;
    justify-content:center;
    margin: 0 0 5px 0;
}
.inchwrap .inch {
    border: 1px solid #999;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    text-align: center;
    letter-spacing: -0.05em;
    margin: 0 5px;
    cursor: pointer;
}
.inchwrap .inch:hover {
    opacity: 0.8;
}
.inchwrap .inch span {
    font-size: 9px;
    margin: -8px 0 0 0;
    display: block;
}
.inchwrap .inch.active {
    background-color: #CC0000;
    color: #fff;
}
.wheeldata h3 {
    font-size: 17px;
    font-weight: bold;
    margin: 7px 0;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.05em;
}
.wheeldata p {
    padding: 0 0 0 20px;
    line-height: 1.6;
    margin: 0 0 0 1em;
    text-align: left;
    font-size: 12px;
}
.wheeldata p:before {
    content: "■";
    color: #999;
}
.wheel img {

}
.wh12 {
    width: 48px !important;
    margin: -24px 0 0 -24px !important;
}
.wh13 {
    width: 50px !important;
    margin: -25px 0 0 -25px !important;
}
.wh14 {
    width: 53px !important;
    margin: -26.5px 0 0 -26.5px !important;
}
.wh15 {
    width: 58px !important;
    margin: -29px 0 0 -29px !important;
}
.wh16 {
    width: 63px !important;
    margin: -31.5px 0 0 -31.5px !important;
}
.wh17 {
    width: 69px !important;
    margin: -34.5px 0 0 -34.5px !important;
}
.wh18 {
    width: 74px !important;
    margin: -37px 0 0 -37px !important;
}
.wh19 {
    width: 78px !important;
    margin: -39px 0 0 -39px !important;
}
.wh20 {
    width: 82px !important;
    margin: -41px 0 0 -41px !important;
}
.wh21 {
    width: 86px !important;
    margin: -43px 0 0 -43px !important;
}

.wheelNum {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 12px;
}
.wheelNum br {
    display: none;
}

#btnbox {
    z-index: 30;
    position: absolute;
    top:600px;
    left: 43px;
    display: none;
}
#btnbox .wrap {
    width: 296px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#btnbox img {
    cursor: pointer;
}
#btnbox img:hover {
    opacity: 0.8;
}

#updownbox {
    z-index: 30;
    position: absolute;
    top:614px;
    left: 771px;
    width: 130px;
    display: none;
}
#updownbox .up {
    position: absolute;
    z-index: 35;
    top: 21px;
    left: 52px;
    cursor: pointer;
    background-image: url(../wsimg/upbtn.png);
    width: 26px;
    height: 16px;
}
#updownbox .up:hover {
    background-image: url(../wsimg/upbtn_on.png);
}
#updownbox .down {
    position: absolute;
    z-index: 40;
    top: 52px;
    left: 52px;
    cursor: pointer;
    background-image: url(../wsimg/downbtn.png);
    width: 26px;
    height: 16px;
    outline : none;
}
#updownbox .down:hover {
    background-image: url(../wsimg/downbtn_on.png);
}

#wheelfilter {
    position: absolute;
    top: 566px;
    left: 34px;
    width: 320px;
    display: none;
    z-index: 40;
}
#wheelfilter .filterbox {
    border: 1px solid #CCCCCC;
    background-color: #fff;
    width: 100%;
    margin: 0 0 20px 0;
    position: relative;
}
#wheelfilter .filterbox .selectbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    align-self: center;
    -ms-flex-line-pack: center;
    align-content: center;
}
#wheelfilter .filterbox img {
    vertical-align: middle;
}
#wheelfilter .filterbox .selectbox p {
    width: 40%;
    text-align: center;
    color: #666666;
    padding: 4px 0 3px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    border-right: 1px solid #CCCCCC;
}
#wheelfilter .filterbox .selectbox .custom {
    width: 60%;
    overflow: hidden;
}
#wheelfilter .filterbox .selectbox .custom {
    width: 60%;
    overflow: hidden;
}
#wheelfilter .filterbox .selectbox .custom select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 4px 5px 3px;
    background: none transparent;
    vertical-align: middle;
    font-size: inherit;
    color: #666666;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../wsimg/select_arw.png);
    background-repeat: no-repeat;
    background-position: 85% center;
    outline: none;
}
#wheelfilter .filterbox .selectbox .custom > select {
    width: 110%;
}


#wheelfilter .filterbtn {
    background-color: #CC0000;
    color: #fff;
    cursor: pointer;
    width: 60%;
    margin: 0 auto;
    padding: 3px 0 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    text-align: center;
}

.wdlink {
    font-size: 11px;
    color: #fff;
    background-color: #CC0000;
    padding: 3px 10px 1px;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 5px 0 0;
    display: inline-block;
    border-radius: 10px;
    text-align: center;
    outline: none;
    min-width: 138px;
}
.wdlink:hover {
    opacity: 0.8;
}

.ecmaker {
    display: none;
}


/* 横向き設定 */
.landscape #wrapper {
    min-height: auto;
}
.landscape .ws .bg {
    height: auto;
    background-image: url(../wsimg/bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 80px;
    position: relative;
}
.landscape .nomatch {
    right: 5px;
    bottom: 5px;
    font-size: 0.7rem;
}
.landscape .hidehf {
    font-size: 0.7rem;
    right: 2%;
}
.landscape .notice {
    width: 85%;
    max-width: inherit;
    padding: 10px 2.8%;
    top: 30px;
}
.landscape .notice h1 {
    width: 70%;
    margin: 0 15% 5px;
}
.landscape .notice p {
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 10px;
}
.landscape .btn_agree {
    width: 50%;
    margin-bottom: 10px;
}
.landscape .notice h2 {
    font-size: 0.9em;
    margin-bottom: 10px;
}
.landscape .notice ul {
    overflow-y: scroll;
    height: 60px;
}
.landscape .notice ul li {
    font-size: 0.8em;
    line-height: 1.4;
}
.landscape .slogo {
    width: 23.906%;
    top: 10px;
    left: 7px;
}
.landscape .makers {
    width: 20%;
    padding: 5px 0 5px;
    top: 45px;
    left: 100px;
    max-height: 75%;
    height: 75%;
}
.landscape .makers:before {
    width: 70px;
    height: 70px;
    top: -1px;
    left: -71px;
    line-height: 70px;
}
.landscape .makerswrap {
    overflow-y: scroll;
    padding: 5px 0;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.landscape .makers li {
    text-indent: 10px;
}

.landscape .carswrap {
    width: 40%;
    top: 45px;
    left: 52%;
    max-height: 75%;
    height: 75%;
}
.landscape .carswrap:before {
    width: 70px;
    height: 70px;
    top: -0px;
    left: -70px;
    line-height: 70px;
}
.landscape .cars {
    padding: 5px 0 5px;
    max-height: 100%;
    height: 100%;
    overflow-y: scroll;
}
.landscape #carName {
    width: 38.75%;
    height: 60px;
    left: 30.625%;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: -0.05em;
    text-align: center;
    line-height: 1.2;
}
.landscape #carData .carimgbox {
    top: 50px;
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
}
.landscape .titles {
    font-size: 13px;
    margin: 0 0 0px;
}
.landscape .colorwrap {
    position: absolute;
    top: 210px;
    left: 2.5%;
    width: 95%;
}
.landscape .colorblock {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: 1px solid #999;
    height: 100px;
    overflow-y: scroll;
}
.landscape .colorblock li {
    width: 9.0909%;
    height: 50px;
}
.landscape #wheelblock {
    position: absolute;
    top: 215px;
    left: 2.5%;
    width: 95%;
    background-image: url(../wsimg/wheelbg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 157px auto;
}
.landscape .wheelList li {
    width: 42px !important;
    padding: 8px;
    outline: none;
    margin: 0px 0 0;
}
.landscape .wheelList li.slick-center {
    width: 157px !important;
    text-align: center;
    margin: 0;
}
.landscape .wheelList li.slick-center img {
    width: 71px;
    height: 71px;
}
.landscape .wheeldata h3 {
    font-size: 15px;
    margin: 5px 0;
    letter-spacing: -0.05em;
}
.landscape .wheelNum {
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 12px;
}
.landscape #btnbox {
    top: 280px;
    left: 25px;
    width: 29%;
}
.landscape #btnbox .wrap {
    width: 200px;
}
.landscape #btnbox .wrap img {
    width: 23%;
    height: 23%;
}
.landscape .landwheeldata {
    position: absolute;
    top: 10%;
    right: 0;
    z-index: 100;
}
.landscape .landwheeldata.open {

}
.landscape .landwheeldata h2 {
    color: #fff;
    font-size: 0.7em;
    line-height: 0.9;
    border-radius: 0 5px 5px 0;
    background-color: #242424;
    padding: 25px 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode:vertical-rl;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}
.landscape .landwheeldata.open h2 {
    border-radius: 5px 5px 0 0;
    padding: 5px 25px;
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode:horizontal-tb;
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    width: 70%;
    min-width: 150px;
}
.landscape .landwheeldata .wheeldata {
    display: none;
    background-color: rgba(0,0,0,0.5);
    padding: 10px;
}
.landscape .landwheeldata.open .wheeldata {
    display: block;
}
.landscape .landwheeldata .wheeldata h3 {
    color: #fff;
}
.landscape .landwheeldata .wheeldata p {
    color: #fff;
}
.landscape #updownbox {
    top: 280px;
    left: inherit;
    right: 10%;
    width: 96px;
}
.landscape #updownbox .up {
    top: 12px;
    left: 35px;
}
.landscape #updownbox .down {
    top: 38px;
    left: 35px;
}
.landscape #wheelfilter {
    top: 220px;
    left: 2%;
    width: 96%;
    display: none;
    z-index: 40;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.9);
}
.landscape #wheelfilter .filterwrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.landscape #wheelfilter .filterwrap .filterbox {
    width: 48%;
    margin: 0 0 10px 0;
}

@media (max-width:768px) {
    #wrapper {
        min-height: auto;
    }
    .ws .bg {
        height: 700px;
    }
    .notice {
        width: 94%;
        padding: 15px 2.8%;
        top: 35px;
        position: relative;
    }
    
    .slogo {
        width: 23.906%;
        top: 10px;
        left: 7px;
    }
    
    .makers {
        top: 100px;
        left: 105px;
        width: 150px;
    }
    .makers li {
        text-indent: 20px;
    }
    .carswrap {
        top: 100px;
        left: 380px;
    }
    
    #carName {
        width: 38%;
        left: 31%;
        font-weight: bold;
        font-size: 15px;
        letter-spacing: -0.05em;
        text-align: center;
        line-height: 1.2;
    }
    
    #carData .carimgbox {
        top: 80px;
    }
    #wheelblock {
        top: 330px;
        background-size: 220px auto;
    }
    
    .wheelList {
        min-height: 270px;
    }
    .wheelList li {
        padding: 7px;
    }
    
    .wheelList li.slick-center {
        width: 220px !important;
    }
    
    #btnbox {
        top: 490px;
        left: 20px;
        width: 31%;
    }
    #btnbox .wrap {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    #btnbox .wrap img {
        width: 30%;
        height: 30%;
    }
    
    #updownbox {
        top: 500px;
        left: 570px;
    }
    
    #wheelfilter {
        top: 485px;
        left: 20px;
        width: 235px;
    }
    
    #wheelfilter .filterbox .selectbox p {
        width: 30%;
    }
    #wheelfilter .filterbox .selectbox .custom {
        width: 70%;
    }
}

@media (max-width:480px) {
    #wrapper {
        min-height: auto;
    }
    .ws .bg {
        height: 550px;
    }
    .notice {
        width: 94%;
        padding: 15px 2.8%;
        top: 35px;
        position: relative;
    }
    .notice h1 {
        margin-bottom: 15px;
    }
    .btn_agree {
        width: 70%;
        margin-bottom: 15px;
    }
    .notice p {
        font-size: 0.9em;
        margin-bottom: 10px;
    }
    .notice h2 {
        font-size: 0.9em;
        border-radius: 15px;
        line-height: 1.2;
        padding: 7px 10px 5px;
        margin-bottom: 15px;
    }
    .notice ul {
        height: 130px;
        overflow-y: scroll;
        padding: 0 5px 0 15px;
        font-size: 0.9em;
    }
    .nomatch {
        right: 0;
        left: 5px;
        bottom: 5px;
        font-size: 0.8em;
        line-height: 1.2;
        text-align: left;
        padding: 0 0 0 5px;
    }
    
    .slogo {
        width: 23.906%;
        top: 10px;
        left: 7px;
    }
    .hidehf {
        right: 2%;
        font-size: 0.7em;
    }
    
    .makers {
        position: absolute;
        width: 45%;
        padding: 0px 0 5px;
        top: 80px;
        left: 10px;
        max-height: 75%;
    }
    .makers:before {
        width: 100%;
        height: auto;
        top: -28px;
        left: -1px;
        line-height: 1.1;
        padding: 5px 0;
        border: 1px solid #000;
    }
    .makers li {
        padding: 0px 0;
        text-indent: 5px;
    }
    .makerswrap {
        overflow-y: scroll;
        padding: 5px 0;
    }
    
    .carswrap {
        width: 45%;
        top: 80px;
        left: 52%;
        max-height: 75%;
        height: 75%;
    }
    .carswrap:before {
        width: 100%;
        height: auto;
        top: -27px;
        left: -1px;
        line-height: 1.1;
        padding: 5px 0;
        border: 1px solid #000;
    }
    .cars {
        padding: 5px 0 5px;
        max-height: 100%;
        height: 100%;
        overflow-y: scroll;
    }
    .cars li {
        padding: 3px 5px;
        font-size: 0.9em;
        line-height: 1.2;
    }
    .cars p {
        padding: 3px 5px;
        font-size: 0.9em;
    }
    
    #carData .carimgbox {
        top: 65px;
        -webkit-transform: scale(0.48);
        transform: scale(0.48);
    }
    
    .colorwrap {
        bottom: 38px;
        left: 2.5%;
        width: 95%;
    }
    .colorblock {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        border: 1px solid #999;
        height: 250px;
        overflow-y: scroll;
    }
    .colorblock li {
        width: 16.6681%;
        height: 50px;
    }
    
    #wheelblock {
        position: absolute;
        top: 195px;
        left: 5%;
        width: 90%;
        background-image: url(../wsimg/wheelbg.png);
        background-position: top center;
        background-repeat: no-repeat;
        background-size: 180px auto;
    }
    
    .wheelList li.slick-center {
        width: 168px !important;
        text-align: center;
        margin: 0;
    }
    
    .wheelList li {
        width: 45px !important;
        padding: 10px;
        outline: none;
        margin: 25px 0 0;
    }
    
    .wheelList li.slick-center img {
        width: 90px;
        height: 90px;
    }
    
    .wheelNum {
        position: absolute;
        top: 5px;
        left: -10px;
        font-size: 12px;
        line-height: 1.1;
    }
    .wheelNum br {
        display: block;
    }
    
    .wheeldata p {
        padding: 0 0 0 0;
        margin: 0;
    }
    
    #carName {
        width: 38.75%;
        height: 60px;
        left: 30.625%;
        font-weight: bold;
        font-size: 15px;
        letter-spacing: -0.05em;
        text-align: center;
        line-height: 1.2;
    }
    
    #btnbox {
        top: 55%;
        left: 7%;
        width: 12.81%;
    }
    
    #btnbox .wrap {
        width: 100%;
        display: block;
    }
    #btnbox .wrap img {
        margin-bottom: 7px;
        width: auto;
        height: auto;
    }
    
    #updownbox {
        top: 60%;
        left: inherit;
        right: 2.6%;
        width: 20.31%;
        display: none;
    }
    
    #updownbox .up {
        top: 25%;
        left: 38.46%;
        width: 30%;
        height: 24px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    #updownbox .down {
        top: 120%;
        left: 38.46%;
        width: 30%;
        height: 24px;
        background-size: contain;
        background-repeat: no-repeat;
    }
    
    #wheelfilter {
        top: 61%;
        left: 2%;
        width: 96%;
        background-color: rgba(255,255,255,0.8);
        padding: 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    #wheelfilter .filterbox {
        margin: 0 0 10px 0;
    }
}

