@charset "UTF-8";
/* ************************************** 管理画面共通 */

/* バリデートエラー */
.validateErr {
	color: #e45e42;
}

.validateOk {
	color: green;
}


/* 必須表示 */
.inputRequired {
	color: #e45e42;
}

/* フラッシュメッセージ */
.message-flash {
	font-size: 13px;
	margin-left:50px;
	color:  #e45e42;
	font-weight: normal;
	position: relative;
  -webkit-animation: show 0.5s ease-out 1;
}
@-webkit-keyframes show {
  from {opacity: 0.0; left: -30px;}
  50%{opacity: 0.3;}
  to {opacity: 1.0; left: 0px;}
}

.block {
	-webkit-animation: showFade 0.1s linear 1;
}
@-webkit-keyframes showFade {
  from {opacity: 0.2;}
  to {opacity: 1.0;}
}

.btn-area {
	margin: 10px;
}

.btn.sw {
  padding: 3px 10px;
}
.btn.sw:focus {
  border: 0px solid red;
  background-color: #733;
}

.btn-danger {
  background-color: #733;
}

.btn-danger:focus {
  border: 1px solid #733;
  background-color: #733;
}

.btn-danger:hover {
  border: 1px solid #d9534f
  background-color: #d9534f;
}

/* テーブル */
table th {
	text-align: center;
}
table td.c {
	text-align: center;
}
table td.r {
	text-align: right;
}
table td.l {
  text-align: left;
}

.banner-block{
  padding: 10px;
}
.banner{
  background-repeat: no-repeat;
  background-size:contain;
  background-position: center;
}
/* TODO error 回避
.banner.credit{
  background-image: url(/img/more_credit.png);
}
.banner.submenu{
  background-image: url(/img/bnr_mmu.png);
}
*/


/* ステータス表示 */

div.status {
  text-align: center;
  width: 100px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: inline-block;
  margin-left: 10px;
}
div.status.red {
	background-color: #faa;
}
div.status.orange {
	background-color: #F4D313;
}
div.status.green {
	background-color: #59D659;
}
div.status.gray {
	background-color: #ccc;
}
div.status.gray.s,
div.status.red.s,
div.status.green.s{
  width: 55px;
}

.member-icon {
  color: white;
  background-color: #dA5C45;
  border-radius: 2px;
  padding: 0 2px 0 2px;
}

.brick a figcaption h4 span.member-icon {
  font-size: 10px;
}


/* -------------------- カートアニメ */
.dotBox {
  position: fixed;
  opacity: 0.0;
}
.box1 {
  width :30px;
  height: 30px;
  -webkit-animation: cartInAnim1 1.0s cubic-bezier(0.215, 0.61, 0.355, 1) 2;
}
.box2 {
  width :30px;
  height: 30px;
  -webkit-animation: cartInAnim2 1.0s linear 1;
}
.box3 {
  width :50px;
  height: 50px;
  -webkit-animation: cartInAnim3 1.0s linear 1;
}
.dot {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  background-color: white;
  position: fixed;
}
.size1 {
  width: 3px;
  height: 3px;
}
.size2 {
  width: 5px;
  height: 5px;
}

@-webkit-keyframes cartInAnim1 {
    0% {-webkit-transform: rotate(-90deg); opacity: 0.0;}
  100% {-webkit-transform: rotate(90deg); opacity: 1.0;}
}
@-webkit-keyframes cartInAnim2 {
    0% {-webkit-transform: rotate(-90deg) scale(1.5,1.5); height: 50px; opacity: 0.3;}
  100% {-webkit-transform: rotate(90deg) scale(1,1); height: 20px; opacity: 1.0;}
}
@-webkit-keyframes cartInAnim3 {
    0% {-webkit-transform: rotate(200deg) scale(2,2); opacity: 0.0;}
   50% {opacity: 0.0; height: 100px;}
  100% {-webkit-transform: rotate(-80deg) scale(1,1);opacity: 1.0;}
}

.attention-back {
  -webkit-animation: attention-back 600ms ease-out infinite alternate;
}
@-webkit-keyframes attention-back {
  from {background-color: #e45e42;}
  to {background-color: white;}
}

.attention {
  -webkit-animation: anime1 600ms ease-out infinite alternate;
}
@-webkit-keyframes anime1 {
  from {color: #e45e42;}
  to {color: white;}
}
/* -------------------- LIKE anim */
.like-flash {
  position: absolute;
  display: block;
  z-index: 1000;
  top: 60px;
  width: 110%;
  height: 30%;
  text-align: center;
  font-size: 50px;
  background-color: rgba(234,124,101,0.8);
  color: white;
  -webkit-animation: likeFlashAnim 1.3s linear 1;
  -webkit-animation-fill-mode: forwards;
  animation: likeFlashAnim 1.3s linear 1;
  animation-fill-mode: forwards;
}
@-webkit-keyframes likeFlashAnim {
    0% {-webkit-transform: translate(200px,0px) rotate(30deg) rotateY(90deg); opacity: 1.0;}
   20% {-webkit-transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0; }
   40% {-webkit-filter:brightness(100%);}
   50% {-webkit-filter:brightness(250%);}
   60% {-webkit-filter:brightness(100%);}
   80% {-webkit-transform: translate(-20px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0; }
  100% {-webkit-transform: translate(-200px,0px) rotate(-30deg) rotateY(-90deg); opacity: 0.0;}
}
@keyframes likeFlashAnim {
    0% {transform: translate(200px,0px) rotate(30deg) rotateY(90deg); opacity: 1.0;}
   20% {transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0; }
   40% {filter:brightness(100%);}
   50% {filter:brightness(250%);}
   60% {filter:brightness(100%);}
   80% {transform: translate(-20px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0;}
  100% {transform: translate(-200px,0px) rotate(-30deg) rotateY(-90deg); opacity: 0.0;}
}
.add-like {
  -webkit-animation: likeAddAnim 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1 500ms;
  animation: likeAddAnim 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 1 500ms;
}
@-webkit-keyframes likeAddAnim {
    0% {-webkit-transform: scale(1.0,1.0); opacity: 1.0;}
   50% {-webkit-transform: scale(3.0,3.0); opacity: 0.0;}
   51% {-webkit-transform: scale(0.0,0.0); opacity: 0.0;}
  100% {-webkit-transform: scale(1.0,1.0); opacity: 1.0;}
}
@keyframes likeAddAnim {
    0% {transform: scale(1.0,1.0); opacity: 1.0;}
   50% {transform: scale(3.0,3.0); opacity: 0.0;}
   51% {transform: scale(0.0,0.0); opacity: 0.0;}
  100% {transform: scale(1.0,1.0); opacity: 1.0;}
}
.remove-like {
  -webkit-animation: likeRemoveAnim 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1;
  animation: likeRemoveAnim 1.5s cubic-bezier(0.47, 0, 0.745, 0.715) 1;
}
@-webkit-keyframes likeRemoveAnim {
    0% {-webkit-transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0;}
   50% {-webkit-transform: translate(0px,150px) rotate(190deg) rotateY(130deg); opacity: 0.0;}
   51% {-webkit-transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 0.0;}
  100% {opacity: 1.0;}
}
@keyframes likeRemoveAnim {
    0% {transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 1.0;}
   50% {transform: translate(0px,100px) rotate(90deg) rotateY(90deg); opacity: 0.0;}
   51% {transform: translate(0px,0px) rotate(0deg) rotateY(0deg); opacity: 0.0;}
  100% {opacity: 1.0;}
}

/* 決済方法選択　カード説明 */
.card-info {
  font-size: 12px;
  margin-left: 50px;
  margin-top: 5px;
}