@charset "utf-8";
/*
Site Name: チャンスイットSP
Description: タップでためる
Last Update: 2019/04/04 m-ido
*/

/*-------------------------------------------*/
/*  CONTENTS:
/*--------------------------------------------
1.0 - タップ案件リスト
    1.1 - 案件
    1.2 - アイコン（アニメーション）
2.0 - 案件無しの場合
3.0 - SSP広告
---------------------------------------------*/

/*-------------------------------------------*/
/*  1.0 - タップ案件リスト
/*-------------------------------------------*/

/*  1.1 - 案件
-------------------------------------------- */
h1 {
    font-size: 0;
}
h1 img {
    width: 100%;
}
.tap_list {
    width: 100%;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
    border-spacing: 4px;
    background: #FFF4E6;
}
.tap_list li {
    position: relative;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 3px #cec4b9;
    -moz-box-shadow: 0px 1px 3px #cec4b9;
    box-shadow: 0px 1px 3px #cec4b9;
}
.tap_list li a {
    display: block;
    padding: 10px 10px 0;
    text-decoration: none;
}
.tap_list li .ad_banner {
    display: table-cell;
    min-width: 80px;
    padding: 0 10px 0 0;
    vertical-align: top;
    line-height: 1.3;
}
.tap_list li .condition {
    display: table-cell;
    width: 100%;
    line-height: 1.3;
    vertical-align: top;
    text-align: left;
}
.tap_list li .condition p.name {
    width: 95%;
    padding: 0;
    background: none;
    font-size: 15px;
    font-weight: bold;
    text-decoration: underline;
    color: #2063d2;
    text-decoration:none;
}
.point .ci-point{
    background-image: url("../img/icon/ico-pt.gif");
    background-repeat: no-repeat;
    background-position: 0 center;
    -webkit-background-size: 12px 12px;
    -moz-background-size: 12px 12px;
    background-size: 12px 12px;
    padding:0 0 0 17px;
}
.tap_list .condition .point {
    margin: 5px 0 3px;
    line-height: 1.3;
}
.tap_list .condition .point .ci-point {
    font-size: 22px;
    font-weight: bold;
    color: #f55;
}
.tap_list .condition .point .pt {
    font-size: 12px;
}

.tap_list li a.to_dtl {
    padding: 4px 30px 4px 10px;
    position: relative;
    background: #eee;
    text-align: right;
    color: #555;
}
.tap_list li a.to_dtl:after {
    display: block;
    content: "";
    position: absolute;
    top: 11px;
    right: 15px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #555;
    border-right: 1px solid #555;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*  1.2 - アイコン（アニメーション）
-------------------------------------------- */
.tap_list .icon_tap {
    width: 46px;
    height: 46px;
    vertical-align: middle;
    display: inline-block;
    position: absolute;
    top: -4px;
    left: -4px;
    background-color: #FF695E;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.0;
    text-align: center;
    color: #fff;
}
.tap_list .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%);
}
.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);
  }
}

/*-------------------------------------------*/
/*  2.0 - 案件無しの場合
/*-------------------------------------------*/
.not_found {
    margin-bottom: 10px;
    padding: 20px 10px;
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 1px 3px #cec4b9;
    -moz-box-shadow: 0px 1px 3px #cec4b9;
    box-shadow: 0px 1px 3px #cec4b9;
    font-size: 14px;
    font-weight: bold;
}
.recommend {
    margin-bottom: 5px;
    font-weight: bold;
}
.bnr_research {
    margin-bottom: 20px;
}
.bnr_research img {
    width: 100%;
}

/*-------------------------------------------*/
/*  3.0 - SSP広告
/*-------------------------------------------*/
.ad_area {
    width: 300px;
    margin: 0 auto;
}