 /* 今週のチラシ　0218号*/

/* 桜アイコン */
.icon1{
  padding: 0.5em;
  margin: 2px 0;
  display: block;
}
.icon1:before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 5px 0 0;
  background: url("/dcms_media/image/0218_quoicon.jpg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/* QUOアイコン */
.quoicon{
  padding: 0.5em;
  margin: 2px 0;
  display: block;
}
.quoicon:after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 50px;
  margin: 0 0 0 5px;
  background: url("/dcms_media/image/0218_quo.jpg") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/* QUOカード */
.quo {
  display: flex;
  justify-content: center;
  align-items: center;
}

  .circle {	
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ea6173;
  margin-right: 8px;
 
}

.circle span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :80px;
  text-align:center;
  color: #ffffff;
}


/* 店舗をさがすボタン */

.button a{
	text-decoration: none;
}
.btn-store {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  width: 260px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  font-weight: bold;
  background: linear-gradient(#e83c59 0%, #ffaaaa 100%);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.btn-store:active {
  /*押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*沈むように*/
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(#fed6e3 0%, #ffbcbc 100%);/*グラデーションを明るく*/
}

/* 来店予約ボタン */
.btn-reservation{
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  width: 260px;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  text-align: center;
  overflow: hidden;
  font-weight: bold;
  background: linear-gradient(#ed6a7a 0%, #ffaaaa 100%);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.btn-reservation:active {
  /*押したとき*/
  -webkit-transform: translateY(2px);
  transform: translateY(2px);/*沈むように*/
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(#ff8787 0%, #ffbcbc 100%);/*グラデーションを明るく*/
}

