@charset "utf-8";

/* ------------------------------全体共通設定------------------------------ */

#header {
    margin-bottom: 0;
}
#wrapper{
    font-family: "Meiryo","メイリオ","ＭＳ　Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
}
#container {
    width:100%;
}
#contents {
    width: 100%;
    overflow:visible;
    background-color: #F9F7F4;
    margin-top: 0;
    padding-top: 20px;
}
.top:after,
.main:after{
    content: "";
    clear: both;
    display: block;
}
/* テキスト装飾 */
.top h3{
    font-size:16px;
    color:#555555;
    font-weight:bold;
}
.top .condition{
    color:#929292;
    text-align:left;
    font-size:12px;
}
.top .comment{
    font-size:14px;
    color:#555555;
    text-align:left;
}
/* ポイント数 */
.top .point{
    color:#545454;
}
.top .ci-point,
.top ins{
    color:#ff5555;
    font-weight:bold;
    font-size:18px;
    text-decoration:none;
}
.top del{
    font-weight:normal;
    color:#545454;
}
/* リンク*/
.top a {
    text-decoration:none;
    display:inline-block;
}
.top a:hover{
    transition: all 0.8s;
}
/* ボタン */
.top .button {
    width: 250px;
    float: right;
    margin-top: 10px;
    background: #3dba8f;
    color: #fff;
    display: block;
    text-align: center;
    padding: 13px 5px 13px 0;
    font-size: 14px;
    border-radius: 5px;
    position: relative;
}
.top .button:hover{
    background-color:#059262;
}
.top .button::before,
.top .button::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    content: '';
    width: 8px;
    height: 3px;
    background: #fff;
    border-radius: 4px;
}
.top .button::before {
    margin-top: -2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.top .button::after {
    margin-top: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* もっと見る */
.more_box_right {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    padding-right: 5px;
}
.more {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    padding-right: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #555;
}
a.more:visited {
    color: #555;
}
.more::before,
.more::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  content: '';
  width: 9px;
  height: 2px;
  background: #FFAB47;
  border-radius: 4px;
}
.more::before {
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.more::after {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.more:hover {
    color: #FFAB47;
}
.top .main{
    width:1180px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin:0 auto;
}

/* ---------右カラムエリア----------- */

/* 共通 */
.top .main_area{
    width:900px;
}
.top .main_area h2.heading {
    border-top: solid 3px #FF5555;
    margin-bottom: 20px;
    padding-top: 10px;
    font-weight: bold;
    font-size: 25px;
}

/* お知らせ */
.information {
    width: 100%;
    margin: 0 0 20px;
    overflow:hidden;
}
.information h2,
.information a {
    margin-bottom: 3px;
    float:left;
}
.information h2 {
    text-align: center;
    width: 12%;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: bold;
    padding: 6px 0;
    background: #f94f5a;
    color: #fff;
}
.information a {
    width: 88%;
    box-sizing: border-box;
    padding: 5px 15px;
    display: block;
    text-decoration: none;
    color: #666;
    font-size: 13px;
    border-top:1px solid #bdbdbd;
    border-right:1px solid #bdbdbd;
    border-bottom:1px solid #bdbdbd;
    background-color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.information a:hover{
    transition: all 0.8s;
    background-color:#fff8d6;
}

/* 当選者数 ポイント */
/* murecho-regular - japanese */
@font-face {
    font-display: swap;
    font-family: 'Murecho';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/murecho-v17-japanese-regular.woff2') format('woff2');
}
/* murecho-700 - japanese */
@font-face {
    font-display: swap;
    font-family: 'Murecho';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/murecho-v17-japanese-700.woff2') format('woff2');
}
.winner {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    background: url("../img/present/icon_present.gif") no-repeat 0 4px;
    background-size: 18px 18px;
    padding: 3px 0 0 20px;
    word-break: break-all;
    text-align: left;
    line-height: 1.1;
    font-family: 'Murecho';
    font-weight: 700;
    font-size: 20px;
    color: #FF5555;
}
.winner_large {
    background-size: 28px 28px;
    padding: 5px 0 2px 28px;
    font-size: 28px;
}
.point {
    line-height: 1.1;
    font-family: 'Murecho';
    font-weight: 700;
    font-size: 18px;
    color: #FF5555;
}

/* 注目の懸賞 */
.present_pickup {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0 20px;
    box-sizing: border-box;
    border-top: solid 4px #FF5555;
    border-radius: 6px;
    background-color: #fff;
    background-image: url("../img/top/bg_present_pickup.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
    padding: 20px;
}
.present_pickup h2 {
    width: 220px;
    margin: 0;
    padding: 0;
}
.present_pickup h2 > img {
    width: 220px;
    vertical-align: bottom;
}
.present_pickup_list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 20px;
}
.present_pickup_list > li {
    width: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
}
.present_pickup_list > li > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 1px 5px #C7B14F;
    color: #555;
}
.present_pickup_list > li > a:hover {
    background-color: #fff8d6;
}
.present_pickup_list .pr {
    position: absolute;
    top: -10px;
    right: 10px;
    border-radius: 4px;
    background-color: #278BD1;
    padding: 0 10px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}
.present_pickup_list .pr::before {
    width: 9px;
    height: 14px;
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0;
    right: 0;
    background-color: #278BD1;
    margin: 0 auto;
    clip-path: polygon(0 70%, 0 0, 100% 0);
}
.present_pickup_list .click_pt {
    display: flex;
    align-items: center;
    background: #EBEBEB;
    background: -moz-linear-gradient(left, #D4D4D4 0%, #EBEBEB 40%, #D4D4D4 100%);
    background: -webkit-linear-gradient(left, #D4D4D4 0%,#EBEBEB 40%,#D4D4D4 100%);
    background: linear-gradient(to right, #D4D4D4 0%,#EBEBEB 40%,#D4D4D4 100%);
    background-repeat:no-repeat, no-repeat;
    border-radius:50px;
    color:#555;
    border:#bbb 1px solid;
    text-align:center;
    margin-bottom: 3px;
    padding: 4px 15px;
    line-height: 1.0;
    font-family: 'Murecho';
    font-weight: 700;
    font-size:13px;
}
.present_pickup_list .click_5pt {
    display: flex;
    align-items: center;
    background: #ffe12f;
    background: -moz-linear-gradient(left, #fff082 0%, #ffe12f 40%, #fff082 100%);
    background: -webkit-linear-gradient(left, #fff082 0%,#ffe12f 40%,#fff082 100%);
    background: linear-gradient(to right, #fff082 0%,#ffe12f 40%,#fff082 100%);
    background-repeat:no-repeat, no-repeat;
    border-radius:50px;
    color:#7d572b;
    border:#d5c44f 1px solid;
    text-align:center;
    margin-bottom: 3px;
    padding: 4px 15px;
    line-height: 1.0;
    font-family: 'Murecho';
    font-weight: 700;
    font-size:13px;
}
.present_pickup_list .click_pt .pt,
.present_pickup_list .click_5pt .pt {
    display: inline-block;
    padding-left: 3px;
    font-size: 15px;
}
.present_pickup_list .thumbnail {
    width: 200px;
    margin: 20px auto 15px;
}
.present_pickup_list .thumbnail > img {
    width: 100%;
    vertical-align: bottom;
}
.present_pickup_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.5;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
}
.present_pickup_list .summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}
.present_pickup_list .winner_box {
    margin-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
}
.present_pickup_list .enddate {
    width: 100%;
    display: block;
    border-radius: 0 0 6px 6px;
    background-color: #EF3F3F;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}
.present_pickup_list .enddate span {
    display: inline-block;
    border-radius: 15px;
    background-color: #fff;
    padding: 1px 15px;
    margin-right: 8px;
    font-size: 15px;
    color: #FF5555;
}

/* 最新の懸賞 */
.present_latest {
    margin-bottom: 50px;
}
.present_latest_list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.present_latest_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    width: calc( 100% / 5);
}
.present_latest_list > li > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 1px 3px #CEC4B9;
    color: #555;
}
.present_latest_list > li > a:hover {
    background-color: #fff8d6;
}
.present_latest_list .thumbnail img {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}
.present_latest_list .thumbnail > img {
    width: 100%;
    vertical-align: bottom;
}
.present_latest_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}
.present_latest_list .summary {
    display: flex;
    flex-direction:column;
    align-items:center;
    margin-top: auto;
}
.present_latest_list .company {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    font-size: 11px;
}
.present_latest_list .winner_box {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.present_latest_list .enddate {
    width: 100%;
    display: block;
    border-radius: 0 0 6px 6px;
    background-color: #EF3F3F;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}

/* 締切間近の懸賞 */
.present_enddate {
    margin-bottom: 50px;
}
.present_enddate_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
}
.present_enddate_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    width: calc( 100% / 5);
}
.present_enddate_list > li > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 1px 3px #CEC4B9;
    color: #555;
}
.present_enddate_list > li > a:hover {
    background-color: #fff8d6;
}
.present_enddate_list .thumbnail img {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}
.present_enddate_list .thumbnail > img {
    width: 100%;
    vertical-align: bottom;
}
.present_enddate_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}
.present_enddate_list .summary {
    display: flex;
    flex-direction:column;
    align-items:center;
    margin-top: auto;
}
.present_enddate_list .company {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 8px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    font-size: 11px;
}
.present_enddate_list .winner_box {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.present_enddate_list .enddate {
    width: 100%;
    display: block;
    border-radius: 0 0 6px 6px;
    background-color: #EF3F3F;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    color: #fff;
}
/* 懸賞ニュース&懸賞コラム */
.present_info_box {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 20px;
    margin-bottom: 50px;
}

/* 懸賞ニュース */
.present_news {
    width: 50%;
    position: relative;
}
.present_news::before {
    width: 92px;
    height: 91px;
    content: "";
    position: absolute;
    top: -20px;
    right: 5px;
    z-index: 1;
    background: url("../img/top/img_chara_news.png") no-repeat top 0 left 0;
    background-size: 92px 91px;
}
.present_news_list {
    margin-bottom: 20px;
}
.present_news_list > li {
    border-radius: 6px;
    background-color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px #D2D2D2;
}
.present_news_list > li:last-child {
    margin-bottom: 0;
}
.present_news_list > li > a {
    display: flex;
    text-align: left;
    color: #555;
}
.present_news_list > li > a:hover {
    opacity: 0.4;
}
.present_news_list .thumbnail {
    width: 25%;
}
.present_news_list .thumbnail > img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    vertical-align: bottom;
    border-radius: 6px 0 0 6px;
}
.present_news_list .summary {
    width: 75%;
    display: flex;
    flex-direction: column;
}
.present_news_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding: 15px 15px 3px;
    line-height: 1.5;
    font-weight: bold;
    font-size: 16px;
}
.present_news_list .date {
    padding-left: 15px;
    font-size: 13px;
}

/* 懸賞コラム */
.present_column {
    width: 50%;
    position: relative;
}
.present_column::before {
    width: 87px;
    height: 90px;
    content: "";
    position: absolute;
    top: -20px;
    right: 5px;
    z-index: 1;
    background: url("../img/top/img_chara_column.png") no-repeat top 0 left 0;
    background-size: 87px 90px;
}
.present_column_list {
    margin-bottom: 20px;
}
.present_column_list > li {
    border-radius: 6px;
    background-color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px #D2D2D2;
}
.present_column_list > li:last-child {
    margin-bottom: 0;
}
.present_column_list > li > a {
    display: flex;
    text-align: left;
    color: #555;
}
.present_column_list > li > a:hover {
    opacity: 0.6;
}
.present_column_list .thumbnail {
    width: 25%;
}
.present_column_list .thumbnail > img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    vertical-align: bottom;
    border-radius: 6px 0 0 6px;
}
.present_column_list .summary {
    width: 75%;
    display: flex;
    flex-direction: column;
}
.present_column_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    padding: 15px 15px 3px;
    line-height: 1.5;
    font-weight: bold;
    font-size: 16px;
}
.present_column_list .date {
    padding-left: 15px;
    font-size: 13px;
}

/* おすすめポイント案件 */
.point_recommend {
    position: relative;
    margin-bottom: 50px;
}
.point_recommend::before {
    width: 120px;
    height: 86px;
    content: "";
    position: absolute;
    top: -15px;
    right: 10px;
    z-index: 1;
    background: url("../img/top/img_chara_point.png") no-repeat top 0 left 0;
    background-size: 120px 86px;
}
.point_recommend_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}
.point_recommend_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    width: calc( 100% / 2);
}
.point_recommend_list > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 10px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 1px 3px #CEC4B9;
    padding: 10px;
    color: #555;
}
.point_recommend_list > li > a:hover {
    background-color: #fff8d6;
}
.point_recommend_list .thumbnail {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.point_recommend_list .thumbnail > img {
    width: 100%;
    vertical-align: bottom;
}
.point_recommend_list .summary {
    width: 240px;
    display: flex;
    flex-direction: column;
}
.point_recommend_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 2px;
    line-height: 1.3;
    font-weight: bold;
    font-size: 15px;
}
.point_recommend_list .addtxt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 13px;
}
.point_recommend_list .point {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.point_recommend .more {
    box-shadow: 0 1px 3px #D2D2D2;
}

/* ぽちっとチャンス */
.point_chance {
    margin-bottom: 50px;
}
.point_chance_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 5px;
    box-sizing: border-box;
    border-radius: 6px;
    background: #FFF5CD url("../img/top/bg_point_chance.png") no-repeat top center;
    background-size: cover;
}
.point_chance_chara {
    margin-top: auto;
}
.point_chance_chara01 > img {
    width: 118px;
    height: 104px;
    vertical-align: bottom;
}
.point_chance_chara02 > img {
    width: 104px;
    height: 117px;
    vertical-align: bottom;
}
.point_chance_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.point_chance li {
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
}
.point_chance .summary {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 1px 3px #CEC4B9;
    flex-grow: 1;
    margin: 0 4px 8px;
}
.point_chance .direct_link {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border-radius: 6px 6px 0  0;
    flex-grow: 1;
    color: #555;
}
.point_chance .direct_link:hover {
    background-color: #fff8d6;
}
.point_chance .thumbnail {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}
.point_chance .thumbnail img {
    width: 100%;
    vertical-align: bottom;
}
.point_chance .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.5;
    font-weight: bold;
    font-size: 15px;
}
.point_chance .point {
    margin-top: auto;
    text-align: center;
}
.point_chance .detail_link {
    width: 100%;
    display: block;
    box-sizing: border-box;
    border-radius: 0 0 6px 6px;
    padding: 7px 0;
    position: relative;
    background: #F5F1EC;
    margin-top: auto;
    text-align: center;
    color: #555;
    font-size: 12px;
}
.point_chance .detail_link:hover {
    color: #CECAC5;
}

/* アイコン */
.point_chance .icon_tap {
    width: 50px;
    height: 50px;
    vertical-align: middle;
    display: inline-block;
    position: absolute;
    z-index: 10;
    top: -4px;
    right: -4px;
    background-color: #FF5555;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.0;
    text-align: center;
    color: #fff;
}
.point_chance .icon_tap p {
    width: 100%;
    position:absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.point_chance .icon_tap span {
    font-family: 'Murecho';
    font-weight: 700;
    font-size: 14px;
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.8, .8, .8) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(.8, .8, .8) rotate3d(0, 0, 1, -10deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 10deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 10deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.2, 1.1) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -10deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.8, .8, .8) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(.8, .8, .8) rotate3d(0, 0, 1, -10deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 10deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 10deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.2, 1.1) rotate3d(0, 0, 1, -10deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -10deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* 最新セール・キャンペーン情報 */
.point_sale {
    margin-bottom: 50px;
}
.point_sale_list {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    border-radius: 6px;
    border: solid 1px #EBEBEB;
    background-color: #fff;
    padding: 20px;
}
.point_sale_list li {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-bottom: solid 1px #ccc;
    text-align: left;
    transition: all 0.4s;
}
.point_sale_list li:hover {
    background-color:#fff8d6;
}
.point_sale_list li:nth-child(1),
.point_sale_list li:nth-child(2) {
    border-top: solid 1px #ccc;
}
.point_sale_list li::before,
.point_sale_list li::after {
    position: absolute;
    top: 50%;
    right: 15px;
    display: block;
    content: '';
    width: 9px;
    height: 2px;
    background: #FFAB47;
    border-radius: 4px;
}
.point_sale_list li::before {
    margin-top: -4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.point_sale_list li::after {
    margin-top: 2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.point_sale_list li > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    position: relative;
    padding: 15px 40px 15px 15px;
    text-decoration: underline;
    font-size: 13px;
    color: #555;
}
.point_sale_list li:nth-child(2) a,
.point_sale_list li:nth-child(4) a {
    padding-left: 20px;
}

.point_sale_list li:nth-child(2) a::before,
.point_sale_list li:nth-child(4) a::before{
    width: 1px;
    height: 38px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -19px;
    background-color: #ccc;
}

/* 定番ネットショップ */
.point_shop {
    margin-bottom: 50px;
}
.point_shop_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px 0;
    margin-bottom: 20px;
}
.point_shop_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0 5px 0;
    box-sizing: border-box;
    width: calc( 100% / 6);
}
.point_shop_list > li > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 5px 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 1px 3px #CEC4B9;
    color: #555;
}
.point_shop_list > li > a:hover {
    background-color: #fff8d6;
}
.point_shop_list .thumbnail {
    width: 95px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}
.point_shop_list .thumbnail img {
    width: 100%;
    vertical-align: bottom;
}
.point_shop_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 5px 15px;
    text-align: left;
    font-weight: bold;
    font-size: 13px;
}
.point_shop_list .summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}
.point_shop_list .addtxt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
}

/* サービス利用・ショッピングで貯める */
.point_service {
    margin-bottom: 50px
}
.point_service_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px 0;
    margin-bottom: 20px;
}
.point_service_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding: 0 5px 0;
    box-sizing: border-box;
    width: calc( 100% / 6);
}
.point_service_list > li > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 5px 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 1px 3px #CEC4B9;
    color: #555;
}
.point_service_list > li > a:hover {
    background-color: #fff8d6;
}
.point_service_list .thumbnail {
    width: 95px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}
.point_service_list .thumbnail img {
    width: 100%;
    vertical-align: bottom;
}
.point_service_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 5px 15px;
    text-align: left;
    font-weight: bold;
    font-size: 13px;
}
.point_service_list .point {
    margin-top: auto;
    text-align: center;
}

/* モニターで貯める */
.point_monitor {
    margin-bottom: 50px;
}
.point_monitor h3 {
    padding-left: 10px;
    font-size: 20px;
}
.point_monitor_box {
    box-sizing: border-box;
    border: solid 1px #EBEBEB;
    border-radius: 6px;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 15px 10px 20px;
}
.point_monitor_box:last-of-type {
    margin-bottom: 20px;
}

/* 新着モニター */
.point_monitor_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.point_monitor_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    box-sizing: border-box;
    width: calc( 100% / 4);
}
.point_monitor_list > li > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 10px 0;
    color: #555;
}
.point_monitor_list > li > a:hover {
    opacity: 0.6;
}
.point_monitor_list .thumbnail {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}
.point_monitor_list .thumbnail img {
    width: 100%;
    vertical-align: bottom;
}
.point_monitor_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 15px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}
.point_monitor_list .point {
    margin-top: auto;
    text-align: left;
    line-height: 1.2;
}
.point_monitor_list .ci-point {
    font-size: 15px;
}

/* 新着テンタメモニター */
.point_monitor_tentame_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.point_monitor_tentame_list > li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    box-sizing: border-box;
    width: calc( 100% / 4);
}
.point_monitor_tentame_list > li > a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 10px 0;
    color: #555;
}
.point_monitor_tentame_list > li > a:hover {
    opacity: 0.6;
}
.point_monitor_tentame_list .thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}
.point_monitor_tentame_list .thumbnail img {
    width: 100%;
    border: solid 1px #EBEBEB;
    vertical-align: bottom;
}
.point_monitor_tentame_list .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 15px;
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}
.point_monitor_tentame_list .summary {
    margin-top: auto;
}
.point_monitor_tentame_list .point {
    margin-bottom: 15px;
    text-align: center;
    font-size: 20px;
}
.point_monitor_tentame_list .yen,
.point_monitor_tentame_list .buy {
    text-align: left;
    font-size: 12px;
}

/* 毎日コツコツ貯める */
.point_onestep {
    margin-bottom: 50px;
}
.point_onestep_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}
.point_onestep_list li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    box-sizing: border-box;
    padding: 0 5px 0;
    width: calc( 100% / 5);
}
.point_onestep_list li > a {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0px 1px 3px #CEC4B9;
    padding: 10px 5px 20px;
    color: #555;
}
.point_onestep_list li > a:hover {
    opacity: 0.6;
}
.point_onestep_list .icon {
    width: 50px;
    margin-bottom: 5px;
}
.point_onestep_list .icon > img {
    width: 100%;
    vertical-align: bottom;
}
.point_onestep_list .title {
    font-weight: bold;
    font-size: 13px;
}

/* スーパータイムセール */
#special_ts_line .special_ts .btn_area h3 {
    line-height: 1.2;
}

/* ssp */
.top .main_area .top_ssp {
    overflow:hidden;
    width: 680px;
    margin:0 auto 0;
}
.top .main_area .top_ssp > div{
    padding: 30px 20px;
    width: 300px;
    float:left;
}

/* ---------左カラムエリア---------- */

/* 共通 */
.top .left{
    width:220px;
}
.top .left .staff_pickup a:hover,
.top .left .top_attention a:hover,
.top .left .category a:hover{
    background-color:#fff8d6;
}
/* 初心者バナー */
.top .left .beginner{
    margin:0 0 20px;
}
.top .left .beginner:hover{
    transition: all 0.4s;
    opacity:0.7;
}

/* 純広告枠(ピックアップ案件) */
.top .left .advertising{
    background:#ffde00;
    padding:6px 10px 10px 10px;
    margin:0 0 20px;
    overflow:hidden;
    text-align:center;
    position:relative;
    z-index:0;
    border-radius:5px;
}
.top .left .advertising h2{
    margin:0 0 10px;
}
.top .left .advertising .wrap{
    width:200px;
    border-radius:0 0 5px 5px;
    background:#fff;
    padding:0 0 5px;
    box-shadow:1px 1px 4px -1px #a6a48f;
}
.top .left .advertising .wrap a{
    display: inline-block;
}
.top .left .advertising .wrap img{
    width: 200px;
    height: auto;
}
.top .left .advertising .wrap img:hover{
    transition: all 0.5s;
    opacity:0.7;
}
.top .left .advertising .point{
    display:inline-block;
    color:#ff5555;
    margin:5px 10px 0;
    font-weight:bold;
    font-size:19px;
}
.top .left .advertising .point .ci-point{
    background-position: 0 5px;
}
.top .left .advertising .condition{
    text-align:center;
    margin:0 20px;
}
.top .left .advertising .condition p{
    width:160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.top .left .advertising .to-dtl a{
    width:160px;
    background:#43BB90;
    padding:4px 10px;
    color:#fff;
    font-size:14px;
    margin:8px 0 6px;
    border-radius:5px;
}
.top .left .advertising .to-dtl a:hover{
    transition: all 0.4s;
    background-color:#059262;
}
.top .left .advertising .load{
    opacity:0.8;
    text-align:center;
    height:454px;
    width:454px;
    position:absolute;
    z-index:-1;
    top: -40px;
    left:-110px;
    bottom:0;
    background-image:url("../../img/top/bg_pickup.png");
    background-position:center center, center center;
    background-repeat:repeat, no-repeat;
    -webkit-animation: spin 20s linear infinite;
    -moz-animation: spin 20s linear infinitec;
    -ms-animation: spin 20s linear infinite;
    -o-animation: spin 20s linear infinite;
    animation: spin 20s linear infinite;
}
@-webkit-keyframes spin {
    0% {-webkit-transform: rotate(0deg);}
    100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
    0% {-moz-transform: rotate(0deg);}
    100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
    0% {-ms-transform: rotate(0deg);}
    100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
    0% {-ms-transform: rotate(0deg);}
    100% {-ms-transform: rotate(360deg);}
}
@keyframes spin {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}

/* 純広告以外の枠 */
.top .left .except_advertising{
    background:#fff;
    margin:0 0 20px;
    text-align:center;
}
/* スタッフ厳選枠 */
.top .left .staff_pickup{
    background:#f3f0e7;
    text-align:center;
    border-radius:5px;
    padding:17px 0 0 0;
    margin:0 0 20px;
}
.top .left .staff_pickup h2{
    font-size:20px;
    font-weight:bold;
    color:#555555;
    margin:0 0 10px;
    text-align:center;
}
.top .left .staff_pickup ul{
    padding:0 15px 2px;
}
.top .left .staff_pickup a{
    background:#fff;
    display:block;
    margin:0 0 15px;
    box-shadow:0px 0px 4px -1px #61583a;
    border-radius:5px;
    padding: 18px 0 0;
}
.top .left .staff_pickup h3{
    text-align:center;
    margin:0 10px 5px;
    line-height:23px;
}
.top .left .staff_pickup p img{
    width: 140px;
    height: auto;
    margin: 0 auto;
}
.top .left .staff_pickup .point{
    display:inline-block;
    text-decoration:none;
    margin:6px 0 0;
}
.top .left .staff_pickup .point del{
    font-size: 14px;
}
.top .left .staff_pickup .condition{
    padding:0 15px 10px;
    word-break: break-all;
}
.top .left .staff_pickup .comment{
    background:#f6f6f6;
    padding:5px 20px;
    line-height:20px;
    border-radius:0 0 5px 5px;
}
.top .left .staff_pickup .click_pt{
    margin: 10px 40px 0; 
    padding: 4px 0;
    background:#ff5555;
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
      -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* 毎日チェック */
.top .left .top_attention{
    margin:20px 0 0;
    border-left:1px solid #cccccc;
    border-right:1px solid #cccccc;
    border-bottom:1px solid #cccccc;
}
.top .left .top_attention h2{
    color:#4d4d4d;
    font-size:18px;
    font-weight:bold;
    border-top:2px solid #ff5555;
    border-bottom:1px solid #cccccc;
    background-color: #fff;
    padding:10px;
    overflow:hidden;
}
.top .left .top_attention li a{
    text-decoration:none;
    font-size:14px;
    display:block;
    height: 19px;
    padding: 10px 7px 10px 32px;
    color:#555555;
    background-image: url("../../img/top/ico_contents.gif");
    background-repeat: no-repeat;
    background-position: 8px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.top .left .top_attention ul {
    background-color: #fff;
}
.top .left .top_attention ul li{
    border-bottom: 1px dotted #ccc;
}
.top .left .top_attention ul li:last-child{
    border:none;
}
.top .left .top_attention #click .new_info{
    padding:1px 6px 0;
    margin:0 0 0 3px;
    border-radius:50px;
}

/* カテゴリ */
.top .left .category ul{
    border-left:1px solid #cccccc;
    border-right:1px solid #cccccc;
    border-bottom:1px solid #cccccc;
    background-color: #fff;
}
.top .left .category h2{
    color:#4d4d4d;
    font-size:18px;
    font-weight:bold;
    padding:10px;
    overflow:hidden;
    margin:20px 0 0;
    border:1px solid #cccccc;
    border-top:2px solid #ff5555;
    background-color: #fff;
}
.top .left .category li a{
    text-decoration:none;
    font-size:14px;
    display:block;
    height: 19px;
    padding: 12px;
    color:#555555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.top .left .category ul li{
    border-bottom: 1px dotted #ccc;
}
.top .left .category ul li:last-child{
    border:none;
}
.top .left .category .button{
    width:200px;
    margin:10px auto 30px;
    padding: 16px 20px 12px 0px;
}
.top .left .category a.button:hover{
    background-color:#059262;
}

/* バナーエリア */
.top .left .banner_area li{
    line-height:0;
    text-align:center;
    margin:20px 0 0;
}
.top .left .shufoo a:hover,
.top .left .banner_area a:hover{
    transition: all 0.4s;
    opacity:0.7;
}

/* NEWアイコン */
#click a span {
    margin-left: 2px;
    padding: 1px;
    background: #F55;
    letter-spacing: -0.5px;
    font-size: 11px;
    color: #fff;
    -webkit-animation:blink 1.0s ease-in-out infinite alternate;
    -moz-animation:blink 1.0s ease-in-out infinite alternate;
    animation:blink 1.0s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% { opacity:0.1;}
    100% { opacity:1;}
}
@-moz-keyframes blink{
    0% { opacity:0.1;}
    100% { opacity:1;}
}
@keyframes blink{
    0% { opacity:0.1;}
    100% { opacity:1;}
}

/* -------------フローティングバナー--------- */
.floating_banner {
    max-width: 270px;
    padding: 10px;
    position: fixed;
    bottom: 0;
    right: 20px;
    background: #f3edb7;
    box-shadow: 1px 0px 20px 4px #ddd;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    z-index: 9999;
    text-align: center;
}
.floating_banner > p {
    margin-bottom: 5px;
}
.floating_banner a {
    display: block;
    text-decoration: none;
}
.floating_banner .name {
    width: 200px;
    margin: 5px auto 0;
    color: #3d3d3d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}
.floating_banner .ci-point {
    font-size: 20px;
}
.floating_banner p img {
    max-width: 200px;
}
.floating_banner a img {
    min-width: 200px;
    max-width: 250px;
}
.floating_banner.close{
    display: none;
}
.floating_banner .closebanner {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -5px;
    right: -10px;
    cursor: pointer;
    background: #000;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;   
}


/* -------------下エリア--------- */

.top .footer_nav .wrap{
    width:1100px;
    overflow:hidden;
    margin:0 auto;
}
/* ページトップへ */
.page_top {
    width: 1000px;
    margin: 100px auto 0;
    text-align: right;
}
.page_top a{
    font-weight:normal;
    width:170px;
    background:#aca9a1;
    padding:10px 0 8px 10px;
    text-align:center;
    color:#fff;
    font-size:14px;
    border-radius:10px 10px 0 0;
    position:relative;
}
.page_top a:visited{
    color:#fff;
}
.page_top a:hover{
    opacity:0.8;
    color:#fff;
}
.page_top a:before {
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 55%;
    left: 24px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #fff;
}
.page_top a:after {
    display: block;
    content: "";
    position: absolute;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 65%;
    left: 24px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #aca9a1;
}
.page_top a:hover:after {
    background: #aca9a1;
}

/* フッターナビ */
.top .footer_nav{
    clear:both;
    padding:50px 0;
    background:#f3f0e7;
    color:#4d4d4d;
    border-top:#d1ccbd 3px solid;

    border-bottom:#d1ccbd 3px solid;
}
.top .footer_nav a{
    color:#4d4d4d;
}
.top .footer_nav a:hover{
    color:#fc4752;
    transition: all 0s;
    text-decoration:underline;
}
.top .footer_nav a:before{
    content: "\0bb";
    color: #fc4752;
}
.top .footer_nav .nav_shop,
.top .footer_nav .nav_service,
.top .footer_nav .nav_other{
    width:305px;
    float:left;
    overflow:hidden;
    border-right:#d1ccbd 1px solid;
}
.top .footer_nav .nav_service{
    padding:0 10px 0 30px;
}
.top .footer_nav .nav_other{
    width:205px;
    float:left;
    overflow:hidden;
    border-right:#d1ccbd 1px solid;
    padding:0 10px 0 20px;
}
.top .footer_nav .nav_support{
    width:192px;
    float:left;
    overflow:hidden;
    padding:0 0 0 20px;
}
.top .footer_nav h2{
    font-size:20px;
    font-weight:bold;
    margin:0 0 25px;
    clear: both;
}
.top .footer_nav .nav_shop h2{
    padding:0 0 0 35px;
    background:url("../../img/top/nav_shop.png") 0 0 no-repeat;
}
.top .footer_nav .nav_service h2{
    padding:0 0 0 35px;
    background:url("../../img/top/nav_service.png") 0 0 no-repeat;
}
.top .footer_nav h2.nav_game{
    padding:0 0 0 24px;
    background:url("../../img/top/nav_game.png") -2px 0 no-repeat;
}
.top .footer_nav h2.nav_survey{
    padding:0 0 0 24px;
    background:url("../../img/top/nav_survey.png") -4px 0 no-repeat;
}
.top .footer_nav .nav_support h2{
    padding:0 0 0 24px;
    background:url("../../img/top/nav_support.png") -4px 0 no-repeat;
}
.top .footer_nav h2.nav_etc{
    padding:0 0 0 30px;
    background:url("../../img/top/nav_etc.png") -1px 0 no-repeat;
}
.top .footer_nav h2.nav_sns{
    padding:0 0 0 30px;
    background:url("../../img/top/nav_sns.png") -1px 0 no-repeat;
}
.top .footer_nav .nav_other h2,
.top .footer_nav .nav_support h2{
    margin:0;
}
.top .footer_nav dl,
.top .nav_support ul{
    float:left;
    margin:0 15px 0 0;
}
.top .footer_nav ul:nth-child(2),
.top .footer_nav ul:nth-child(4){
    margin:0 0 30px;
}
.top .footer_nav dt{
    font-size:15px;
    font-weight:bold;
}
.top .footer_nav dd,
.top .footer_nav li{
    margin:15px 0 0;
    font-size:13px;
}

/* iPad対応; */
@media screen and (min-width:600px){
    #header, #wrapper{
    width: 100%;
    min-width:1150px;
    overflow: hidden;
    }
}