/*-- 基本設定　--*/ 
.textBox a {
  color: #0783c2;
  text-decoration: underline;
}


/*-- 今月のクーポン　--*/ 
.month-coupon {
  display: flex;
  flex-wrap: wrap;
}

.month-coupon__item {
  width: 224px;
  box-sizing: border-box;
  position: relative;
  margin: 0 18px 20px 0;
}

.month-coupon__item:nth-child(4n) {
  margin-right: 0;
}

.month-coupon__item a {
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: .3s;
}

.month-coupon__item a:hover {
  /*filter: drop-shadow(8px 8px 4px rgba(193, 193, 193, 0.38));*/
  transform: translateY(-10px);
}

.month-coupon__detail {
  background: #fff;
  padding: 12px;
  position: relative;
  border: 1px solid #0BA4DA;
  border-bottom: 1px dashed #0BA4DA;
  border-radius: 8px 8px 0 0;
}

.month-coupon__detail::before {
  position: absolute;
  display: block;
  width: 10px;
  height: 18px;
  content: "";
  border-radius: 0 30px 30px 0;
  border: 1px solid #0BA4DA;
  border-left: navajowhite;
  background: #fffcd8;
  bottom: -11px;
  left: -1px;
}

.month-coupon__detail::after {
  position: absolute;
  display: block;
  width: 10px;
  height: 18px;
  content: "";
  border-radius: 30px 0 0 30px;
  border: 1px solid #0BA4DA;
  border-right: navajowhite;
  background: #fffcd8;
  bottom: -11px;
  right: -1px;
}

.month-coupon__priceoff {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #bf0000;
  margin-bottom: 10px;
}

.month-coupon__img {
  width: 110px;
  height: 110px;
  padding: 8px;
  margin: 0 auto 14px;
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
}

.month-coupon__img img {
  width: 100%;
}

.month-coupon__shopname {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.3;
  min-height: 36px;
}

.month-coupon__expire {
  font-size: 12px;
  color: #333;
  line-height: 1.2;
}

.month-coupon__expire span {
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.month-coupon__shopname::before {
  position: absolute;
  left: 0;
  font-size: 16px;
}

.month-coupon__get {
  background: #0BA4DA;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border-radius: 0 0 8px 8px;
}

/*-- 非ログイン・非ママ割メンバー　--*/ 
.month-coupon__item--disabled {
  opacity: 0.5;
}

.month-coupon__item--disabled .month-coupon__detail::before,
.month-coupon__item--disabled .month-coupon__detail::after {
  background: #fff;
}

.month-coupon__text {
  text-align: center;
  color: #555;
  line-height: 1.4;
  font-size: 14px;
}

.month-coupon__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.4;
}

.month-coupon__item--disabled .month-coupon__get {
  line-height: 1.4;
}