html, body{
    margin: 0;
    padding: 0;
    background: #eeeeee;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}
#wrap, #info_wrap{
    width: calc(100% - 20px);
    min-width: 300px;
    margin: 0 auto;
    padding: 10px;
    background: #eeeeee;
    position: relative;
    float: left;
}
#header{
    width: 100%;
    height: 80px;
    float: left;
    position: relative;
    background: url("./img/logo.png") no-repeat center center / 250px;
    /*
    transition: all 1s;
     */
}
.message{
    width: 100%;
    text-align: center;
    float: left;
}
.message H2{
    margin: 0;
    padding: 8px;
    background: #0041D2;
    color: white;
    font-weight: normal;
    font-size: 20px;
    border-bottom: solid 1px white;
}
#advice, .term{
    float: right;
    width: 60%;
    margin: 20px calc(20% - 10px) 0 0;
    padding: 7px;
    background: #fffbda;
    border: solid 1px #999999;
    border-radius: 5px;
    text-align: center;
    font-style: italic;
}
.term{
    margin-top: 0;
    margin-bottom: 15px;
}
.adviceSpan{
    font-weight: bold;
}
.infoIcon{
    float: left;
    margin: 23px 0 0 calc(20% - 40px);
    width: 24px;
    height: 24px;
    background: url("./img/info.png") center no-repeat;
}
.offItem, .banner, .info{
    width: calc(20% - 50px);
    display: inline-block;
    margin: 10px;
    padding: 5px 15px 15px 15px;
    background: #ffffff;
    vertical-align: top;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    position: relative;
    /*
    transition: all .5s;
     */
}
.banner{
    padding: 15px;
}
.offItem:hover, .banner:hover{
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    /*
    transition: all .5s;
     */
}
.offImgLink{
    text-align: center;
    width: 100%;
    height: 130px;
    float: left;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
}
.banner .offImgLink{
    height: 274px;
}
.offImg{
    position: absolute;
    top: 50%;
    left: 50%;
}
.offSummRate{
    width: 100%;
    float: left;
    font-size: 16px;
}
.banner .offSummRate{
    display: none;
}
.offDescription{
    width: 100%;
    height: 60px;
    line-height: 1.7em;
    position: relative;
    float: left;
    margin: 20px 0;
}
.banner .offDescription{
    display: none;
}
.offBtnWr{
    width: 100%;
    float: left;
    text-align: center;
    position: relative;
}
.banner .offBtn{
    display: none;
}
.offBtn{
    width: calc(100% - 20px);
    padding: 10px;
    background: #f82e84;
    color: white;
    display: block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    margin: 0 auto;
}
.banner .offBtn{
    display: none;
}
.pink, #info_block H2{
    color: #f82e84;
    font-weight: bold;
}
#info_block H2{
    text-align: center;
    margin: 0;
    font-size: 16px;
}
#container, #info_block{
    width: 100%;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
    position: relative;
    float: left;
}
.nl{
    display: none;
}
.info{
    position: relative;
    padding-bottom: 65px;
}
.info .offBtn{
    width: calc(100% - 50px);
    position: absolute;
    bottom: 15px;
    left: 15px;
}
.info p{
    margin: 0;
    padding: 6px 15px;
}
.info p:first-child{
    font-weight: bold;
    padding: 5px 15px 10px 15px;
    font-size: 15px;
}
.info p:nth-child(odd){
    background: white;
}
.info p:nth-child(even){
    background: #e9e9e9;
    border-radius: 2px;
}
.hot{
    position: absolute;
    top: -9px;
    right: -9px;
    background: #bb60d5;
    color: white;
    border-radius: 5px 5px 5px 0;
    padding: 2px 5px;
}

/*--------------------------------*/

@media screen and (max-width: 1600px){
    .offItem, .banner, .info{
        width: calc(25% - 50px);
    }
}
@media screen and (max-width: 1200px){
    .offItem, .banner, .info{
        width: calc(33.3% - 50px);
    }
}
@media screen and (max-width: 800px){
    .offItem, .banner, .info{
        width: calc(50% - 50px);
    }
}
@media screen and (max-width: 600px){
    .offItem, .banner{
        width: calc(50% - 50px);
    }
    .info{
        width: calc(100% - 50px);
    }
    #header{
        height: 50px;
        border-top: solid 1px #ffffff;
        background: url("./img/logo.png") no-repeat center center / 175px;
    }
    .message{
        border-top: solid 1px #ffffff;
    }
    .message H2{
        font-size: 14px;
        padding: 5px;
    }
    .offDescription{
        display: none;
    }
    #advice{
        display: none;
    }
    .infoIcon{
        display: none;
    }
    .offBtn{
        font-size: 12px;
    }
    .offImgLink{
        background-size: contain;
        height: 60px;
    }
    .sep{
        display: none;
    }
    .offSummRate{
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .nl{
        display: inline;
    }
}