/*fixed-bnr
-----------------------------------------*/
.fixed-bnr.bnr{
  position: relative;
  margin: 0 auto;
  z-index: 1000;
  display: none;
}
.fixed-bnr.bnr .bnr__img{
  position: fixed;
  bottom: 20px;
  z-index: 88;
  /*left:0;*/
  right:30px;
  /*margin:auto;*/
}
.fixed-bnr.bnr .bnr__img img{
  transition:0.2s;
  width:100%;
  height:auto;
  cursor:pointer;
}
.fixed-bnr.bnr .bnr__img img:hover{
  opacity:0.6;
  transition:0.2s;
}
.fixed-bnr.bnr .bnr__img p.close{
  position: absolute;
    right: 4px;
    top: -8px;
    opacity:1;
}
.fixed-bnr.bnr .bnr__img p.close a{
  display: block;
  width: 20px;
  height: 25px;
  text-align: center;
}
.fixed-bnr.bnr .bnr__img p.close a span{
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;

}
.fixed-bnr.bnr .bnr__img p.close i{
    background-color: #fff;
    text-align: center;
    display: inline-block;
    padding: 5px 0;
    font-size: 16px;
    font-weight: bold;
    color: #898989;
    position: fixed;
    border: 2px solid #898989;
    z-index: 10000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-style: normal;
}

.fixed-bnr.bnr .bnr__img p.close a i:hover{
  opacity:0.6;
  transition:0.2s;
}


/*-----------------レスポンシブ設定↓-------------------*/

/*------------------------------------*/
@media only screen and (min-width: 750px){

.bnr__img__inner{
  width: 540px;
  position: relative;
  margin:auto;
  box-sizing:border-box;
  padding: 10px;
  background-color: #fafafa;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.bnr .bnr__img__inner a{
  display: block;
  width:540px;
}
}


/*------------------------------------*/

@media only screen and (max-width: 749px){
  .bnr .bnr__img{
     bottom: 0;
  }
  .bnr .bnr__img p.close{
  position: absolute;
    right: 4px;
    top: -30px;
}
 .bnr__img__inner{
  width: 100%;
  position: relative;
  margin:auto;
  box-sizing:border-box;
  padding: 0;
  background-color: #fafafa;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.bnr .bnr__img__inner a{
  display: block;
  width:100%;
}

}

/*------------------------------------*/