.roulette {
    gap: 60px;
    min-height: auto;
}
.roulette .tit_box h2 {
    font-size: 4rem;
}
.roulette_box {
    margin: 0 -16px;
    width: calc(100% - -32px);
}
.roulette .wrapper {
    position: relative;
    padding: 20px;
    box-sizing: border-box;
}
.roulette_wrap {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--black);
    padding: 20px;
	box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.10);
    box-sizing: border-box;
}
.roulette .wrapper .circleWrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #F0F0F0;
    background: var(--white);
    box-sizing: border-box;
}
.roulette .wrapper .circleWrap .rouleWrap {
	width: 100%;
	height: 100%;
	position: relative;
	left: 0;
	top: 0;
	z-index: 10;
	border-radius: 50%;
	overflow: hidden;
	transform: rotate(-90deg);
}
.roulette .wrapper .circleWrap .rouleWrap.active {
	transform: var(--move);
	transition: all 10s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.roulette .wrapper .circleWrap .rouleWrap:after {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: #f27935;
	border-radius: 50%;
	z-index: 100;
}
.roulette .wrapper .circleWrap .rouleWrap .item {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	width: var(--width);
	height: 280px;
	margin: 0 auto;
	transform-origin: var(--bdWidth) 280px;
	z-index: 10;
}
.roulette .wrapper .circleWrap .rouleWrap .item:before {
	content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 280px var(--bdWidth) 0;
	border-color: #fff transparent transparent;
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(even) {
    color: var(--white);
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(even):before {
  border-color: var(--point) transparent transparent;
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(odd) .img {
    display: none;
}
.roulette .wrapper .circleWrap .rouleWrap .item .bx {
	display: block;
	position: absolute;
    top: 55px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 10;
	padding: 0 15%;
	font-size: 32px;
	font-weight: bold;
	word-break: keep-all;
    box-sizing: border-box;
}
.roulette .wrapper .circleWrap .rouleWrap .item .bx span.txt {
  	display: block;
    font-family: 'Paperlogy';
	font-weight: 700;
}
.roulette .wrapper .circleWrap .rouleWrap .item .bx strong {
  	display: block;
    font-size: 20px;
	font-weight: 400;
	word-break: keep-all;
    margin-top: 10px;
}
.roulette .wrapper .circleWrap .rouleWrap .item .img {
    display: none;
}
.roulette .wrapper .circleWrap .rouleWrap .item .bx .img:after {
    content: 'C';
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background: var(--yellow);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.28px;
    margin: 5px auto 0;
}
.roulette .wrapper .circleWrap .rouleWrap .item:after {
  display: block;
  width: 4px;
  height: 100%;
  background-color: #f27935;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: rotate(calc( var(--deg) / 2 )) translateX(-4px);
  transform-origin: 0 100%;
  z-index: 50;
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(1) {
  transform: rotate(calc( var(--deg) * 1 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(2) {
  transform: rotate(calc( var(--deg) * 2 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(3) {
  transform: rotate(calc( var(--deg) * 3 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(4) {
  transform: rotate(calc( var(--deg) * 4 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(5) {
  transform: rotate(calc( var(--deg) * 5 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(6) {
  transform: rotate(calc( var(--deg) * 6 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(7) {
  transform: rotate(calc( var(--deg) * 7 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(8) {
  transform: rotate(calc( var(--deg) * 8 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(9) {
  transform: rotate(calc( var(--deg) * 9 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(10) {
  transform: rotate(calc( var(--deg) * 10 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(11) {
  transform: rotate(calc( var(--deg) * 11 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(12) {
  transform: rotate(calc( var(--deg) * 12 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(13) {
  transform: rotate(calc( var(--deg) * 13 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(14) {
  transform: rotate(calc( var(--deg) * 14 ));
}
.roulette .wrapper .circleWrap .rouleWrap .item:nth-child(15) {
  transform: rotate(calc( var(--deg) * 15 ));
}
.roulette .wrapper .pin {
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 80px;
    height: 99px;
    border-radius: 50%;
    background: url("../images/pointer.png")no-repeat 50% 50% / 95%;
    z-index: 11;
}
.roulette .wrapper .btnStart {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 192px;
    height: 192px;
    line-height: 178px;
    border-radius: 50%;
    z-index: 11;
    cursor: pointer;
    font-size: 32px;
    font-weight: 700;
	border: 10px solid var(--white);
	background: var(--point);
    color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}
.roulette .chance {
    position: relative;
    font-size: 20px;
    letter-spacing: -0.4px;
    gap: 8px;
    max-width: 330px;
    margin: 0 auto;
}
.roulette .chance:before {
    content: '[';
    font-size: 60px;
    font-family: 'SUIT';
    letter-spacing: -1.2px;
}
.roulette .chance:after {
    content: ']';
    font-size: 60px;
    font-family: 'SUIT';
    letter-spacing: -1.2px;
}
.roulette .chance .box {
    flex: 1;
    width: 100%;
}
.roulette .chance .box span {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.48px;
}
.share {
    max-width: 480px;
    padding: 40px 0;
    gap: 20px;
    background: var(--white);
    margin: 60px auto 0;
    box-sizing: border-box;
}
.share p {
    font-size: 20px;
    letter-spacing: -0.4px;
}
.share button {
	padding: 15px 20px;
	background: var(--black);
	color: var(--white);
    border-radius: 50px;
    font-size: 20px;
    letter-spacing: -0.4px;
    box-sizing: border-box;
}


#r_modal .modal_cont {
	max-width: 480px;
}
#r_modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
}
#r_modal .box h3 {
    font-size: 25px;
	color: #000
}
#r_modal .coupon_form .result_img {
	padding: 20px 0 0px;
}
#r_modal .coupon_form .result_img .img {
    position: relative;
    border-radius: 5px;
    width: 65%;
    padding-bottom: 65%;
    margin: 0 auto;
	overflow: hidden;
}
#r_modal .coupon_form .result_img .img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-height: 100%;
    width: auto;
}
#r_modal .coupon_form .result_img .text {
	text-align: center;
}
#r_modal .coupon_form .result_img .text > strong {
	display: block;
	font-size: 34px;
}
#r_modal .coupon_form .result_img .text p {
	margin-top: 10px;
    font-size: 24px;
}
#r_modal .coupon_form .result_img .text p strong {
	color: var(--point);
    font-weight: 800;
}
#r_modal .coupon_form .result_img .text div {
    font-size: 14px;
    color: #000;
    text-align: center;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 90%;
    margin: 12px auto;
}
#r_modal .coupon_form #barcode img {
	width: 100%;
}
#r_modal #barcode {
    display: block;
    margin: 30px auto;
    width: 65%;
    padding-bottom: 20px;
}
#r_modal .btn_area button {
    border-radius: 10px;
}
#r_modal .btn_area button.share_btn {
	background: var(--black);
    color: var(--white);
}
#r_modal .btn_area button.r_list {
	border: 1px solid rgba(113, 113, 113, 0.5);
    background: var(--white);
}




@media screen and (max-width: 1024px) {
    .roulette_wrap {
        width: 500px;
        height: 500px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item {
        height: 230px;
        transform-origin: var(--bdWidth) 230px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item:before {
        border-width: 230px var(--bdWidth) 0;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item .bx {
        top: 35px;
    }
    .roulette .wrapper .btnStart {
        width: 170px;
        height: 170px;
        line-height: 158px;
    }


    #r_modal .coupon_form .result_img .text > strong {
        font-size: 26px;
    }
    #r_modal .coupon_form .result_img .text p {
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .roulette {
        gap: 30px;
    }
    .roulette_wrap {
        width: 420px;
        height: 420px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item {
        height: 190px;
        transform-origin: var(--bdWidth) 190px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item:before {
        border-width: 190px var(--bdWidth) 0;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item .bx {
        top: 30px;
        font-size: 26px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item .bx strong {
        font-size: 16px;
    }
    .roulette .wrapper .pin {
        top: -32px;
        width: 65px;
        height: 80px;
    }
    .roulette .wrapper .btnStart {
        font-size: 24px;
        width: 135px;
        height: 135px;
        line-height: 118px;
    }


    .share {
        padding: 25px 0;
    }
    .share p {
        font-size: 16px;
    }
    .share button {
        font-size: 16px;
    }
}
@media screen and (max-width: 480px) {
    .roulette_wrap {
        width: 320px;
        height: 320px;
        padding: 15px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item {
        height: 145px;
        transform-origin: var(--bdWidth) 145px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item:before {
        border-width: 145px var(--bdWidth) 0;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item .bx {
        top: 20px;
        font-size: 20px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item .bx strong {
        font-size: 14px;
        margin-top: 5px;
    }
    .roulette .wrapper .pin {
        top: -26px;
        width: 55px;
        height: 66px;
    }
    .roulette .wrapper .btnStart {
        font-size: 20px;
        width: 100px;
        height: 100px;
        line-height: 85px;
        border-width: 8px;
    }


    .roulette .chance {
        max-width: 290px;
        font-size: 16px;
    }
    .roulette .chance .box span {
        font-size: 20px;
    }
    .roulette .chance:before,
    .roulette .chance:after {
        font-size: 36px;
    }
}
@media screen and (max-width: 380px) {
    .roulette_wrap {
        width: 260px;
        height: 260px;
        padding: 10px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item {
        height: 120px;
        transform-origin: var(--bdWidth) 120px;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item:before {
        border-width: 120px var(--bdWidth) 0;
    }
    .roulette .wrapper .circleWrap .rouleWrap .item .bx {
        font-size: 18px;
    }
    .roulette .wrapper .pin {
        top: -20px;
        width: 40px;
        height: 52px;
    }
    .roulette .wrapper .btnStart {
        font-size: 18px;
        width: 85px;
        height: 85px;
        line-height: 77px;
        border-width: 5px;
    }
}