﻿@charset "UTF-8";

/**
 * offer.css
 *
 * 新生活 応援キャンペーン：オファー
 */
 
/******************************
 * ボタン
*******************************/
.cartModalSubmit {
  margin: 0 auto 20px !important;
}
.ajaxCart {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 20px;
}
.ajaxCart .cartModalSubmit {
  width: 48%;
  margin: 0 !important;
}
.ajaxCart .moveCart {
  width: 48%;
  height: 60px;
  color: #fff;
  line-height: 60px;
  font-size:20px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  background-color: #ce7c82;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}
/* クリックしたら波紋が広がる */
.btnripple {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display:inline-block;
  outline: none;
}
.btnripple::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform 0.3s, opacity 1s;
}

/*クリックされたあとの形状の設定*/
  .btnripple:active::after {
  transform: scale(0, 0);
  transition: 0s;
  opacity: 0.3;
}

/* ページに戻ってお買い物を続ける */
.cartModalCloseButton {
  display: block;
  margin: 0 auto 30px;
  width: 410px;
  height: 60px;
  color: #fff;
  line-height: 60px;
  font-size:20px;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  background-color: #ce7c82;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}