
.btn,
a.btn,
button.btn {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 1px;
  color: #212529;
  border-radius: 5px;
}

.btn--shadow, a.btn--shadow, button.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0,0,0,.3);
  box-shadow: 0 3px 5px rgba(0,0,0,.3);
}

/* 標準ボタン */

.btn {
  border: 1px solid #ccc;
  background: #f1e767;
  background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
  -webkit-box-shadow: inset 1px 1px 1px #fff;
  box-shadow: inset 1px 1px 1px #fff;
}

.btn:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#fdfbfb), to(#ebedee));
  background: -webkit-linear-gradient(bottom, #fdfbfb 0%, #ebedee 100%);
  background: linear-gradient(to top, #fdfbfb 0%, #ebedee 100%);
}

/* CTA (Call To Action) ボタン */

.btn-cta {
  background: #f1e767;
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e767), to(#feb645));
  background: -webkit-linear-gradient(top, #f1e767 0%, #feb645 100%);
  background: linear-gradient(to bottom, #f1e767 0%, #feb645 100%);
}

.btn-cta:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#f1e767), to(#feb645));
  background: -webkit-linear-gradient(bottom, #f1e767 0%, #feb645 100%);
  background: linear-gradient(to top, #f1e767 0%, #feb645 100%);
}

/* メニューボタン */
a.btn-menu {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 120px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%);
  border-radius: 100vh;
  color: #333;
  border: 1px solid #999;
  text-shadow: 0 1px #fff;
  box-shadow: 0 3px 2px 1px #fcfcfc, 0 4px 6px #cecfd1, 0 -2px 2px #cecfd1, 0 -4px 2px #eee, inset 0 0 2px 2px #cecfd1;
  transition: 0.5s;
}
a.btn-menu:hover {
   opacity: 0.5;
}

a.btn-sticky {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  background: #f7f7f7;
  border-left: solid 6px #ff7c5c;/*左線*/
  color: #ff7c5c;/*文字色*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
a.btn-sticky:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}
.box-menu{
    display: inline-block;
    margin: 4px;
    position: relative;
    background: #fff0cd;
    box-shadow: 0px 0px 0px 4px #fff0cd;
    border: dashed 2px white;
    color: #454545;
}
.box-menu:after{
    position: absolute;
    content: '';
    right: -7px;
    top: -7px;
    border-width: 0 15px 15px 0;
    border-style: solid;
    border-color: #ffdb88 #fff #ffdb88;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}
.box-menu p {
    margin: 10px; 
    padding: 0;
}




/* STEP ボタン   <a href="" class="btn btn-tag"><span>1</span>カートに入れる</a>  */
a.btn-step {
  /* color: #fff; */
  /* background: #f39800; */
  font-size: 14px;
  padding: 2px 5px;
  text-align: left;
}

a.btn-step:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 30px;
  height: 100%;

  content: "";

  border-radius: 5px 0 0 5px;
  background: rgba(0, 0, 0, 0.07);
}

/*
a.btn-step:hover {
  color: #fff;
  background: #ffa50e;
}
*/

a.btn-step span {
  font-size: 120%;

  position: absolute;
  top: 0;
  left: 0;

  width: 25px;
  padding: 1.5rem 0;

  text-align: center;
  letter-spacing: 0;
}
