@charset "UTF-8";

.couponPrint{
  position: fixed;
  top:20px;
  right: 10px;
}
.couponPrint a{
  text-decoration: none;
}
.couponPrint span{
  font-size: 10px;
  font-family: "こぶりなゴシック W6 JIS2004","Koburina Gothic W6 JIS2004","中ゴシックBBB","Gothic Medium BBB", "ヒラギノ角ゴ W5 JIS2004","Hiragino Kaku Gothic W5 JIS2004";
  background: #676767;
  color: #fff;
  padding: 10px;
  border-radius: 4px 4px 4px 4px;
  cursor: pointer;
  text-decoration: none;
}
.couponPrint span:hover{
  background: #dfdfdf;
  color: #676767;
  padding: 10px;
  border-radius: 4px;
}

@media screen and (max-width: 600px) {
/* 600pxまでの幅の場合に適応される */
.couponPrint{
  display: none;/* スマホサイズは表示させない */
  position: fixed;
  top:15px;
  right: 10px;
}

  .couponPrint span{
  font-size: 12px;
  font-family: "こぶりなゴシック W6 JIS2004","Koburina Gothic W6 JIS2004","中ゴシックBBB","Gothic Medium BBB", "ヒラギノ角ゴ W5 JIS2004","Hiragino Kaku Gothic W5 JIS2004";
  background: #676767;
  color: #fff;
  padding: 6px;
  border-radius: 4px 4px 4px 4px;
  cursor: pointer;
  text-decoration: none;
}

.couponPrint span:hover{
  background: #dfdfdf;
  color: #676767;
  padding: 6px;
  border-radius: 4px;
}
}