@charset "UTF-8";

    #contents .wrapper {
        width:720px;  
        box-sizing:border-box;
        text-align: center;
        font-weight: bold;
        margin:50px auto 100px;
    }
    
    #contents p.single_item {
        font-size:21px;
        margin-bottom:10px;
    }
    
    #contents p.single_price {
        margin-left:70px;
        font-size:38px;
    }
    
    #contents p.single_price > span {
        font-size:0.5em;
    }
    
    #contents p.set_item {
        color: #cc6666;
        margin:30px 0 15px;
        font-size:26px;
    }
    
    #contents p.set_price {
        color: #cc6666;
        margin-left:100px;
        font-size:48px;
    }
    
    #contents p.set_price > span {
        color: #cc6666;
        font-size:0.5em;
    }

    #contents .wrapper > div:first-of-type{
        margin-top:20px!important;
    }

    #contents .wrapper > div:nth-of-type(-n+4){
        margin:0 auto 7px;
        border-radius: 50%;
        width: 10px;
        aspect-ratio: 1;
        background-color: #bbbbbb;
    }
    
    #contents .wrapper > div:last-of-type{
        display: inline-block;
        border-style: solid;
        border-width: 15px 12px 0 12px;
        border-color: #bbbbbb transparent transparent transparent;
    }
    
    #contents .discount {
        position: relative;
        display: block;
        margin: -70px 100px;
        padding: 35px 0 0 0;
        width: 120px;
        height: 120px;
        text-align: center;
        color: #FFF;
        font-size: 20px;
        background: #cc6666;
        border-radius: 50%;
        box-sizing: border-box;
        letter-spacing: 0.03em;
    }

    #contents .discount:before {
        content: "";
        position: absolute;
        bottom: -5px;
        right: -5px;
        margin-top: -15px;
        border: 15px solid transparent;
        border-left: 15px solid #cc6666;
        z-index: 0;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
}





@media screen and (max-width: 480px) {
    
    #contents .wrapper {
        width: 100%;
    }
    
    #contents p.single_item {
        font-size:18px;
    }
    
    #contents p.single_price {
        margin-left:50px;
        font-size:30px;
    }
    
    #contents .wrapper > div:nth-of-type(-n+4) {
        margin:0 auto 5px;
        width: 8px;
    }
    
    #contents .wrapper > div:first-of-type {
        margin-top: 10px !important;
    }
    
    #contents .wrapper > div:nth-of-type(4) {
        margin-bottom: 0 !important;
    }
    
    #contents .discount {
        margin: -80px 0;
        padding: 20px 0 0 0;
        width: 90px;
        height: 90px;
        font-size: 16px;
    }
    
    #contents .discount:before {
        border: 10px solid transparent;
        border-left: 15px solid #cc6666;
    }
    
    #contents p.set_item {
        margin: 70px 0 10px;
        font-size: 21px;
    }

    #contents p.set_price {
        margin-left: 70px;
        font-size: 40px;
    }
}