@charset "UTF-8";
.link-area {
  padding: 12px 9% 0 9%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px; }
  .link-area .link {
    cursor: pointer;
    padding: 10px 0;
    border: 1px solid #b71b30;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease; }
    .link-area .link:hover {
      background-color: #b71b30; }
      .link-area .link:hover p {
        color: #fff; }
    .link-area .link:nth-of-type(1) {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 55%;
      flex: 1 1 55%; }
    .link-area .link:nth-of-type(2) {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
      flex: 1 1 45%;
      margin-left: 4%; }
    .link-area .link p {
      color: #b71b30;
      font-size: 1.8rem;
      line-height: 2rem;
      margin: 0; }

.title-area {
  padding: 0 5%;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .title-area .line {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    height: 1px;
    background-color: #b71b30; }
  .title-area h1 {
    margin: 0 4%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    font-size: 2.4rem;
    font-weight: 400;
    color: #000; }

.coupon-area {
  padding: 0 5%; }
  .coupon-area .coupon {
    text-align: left;
    cursor: pointer;
    position: relative;
    margin-bottom: 15px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: rgba(241, 237, 236, 0.8);
    padding: 5% 5% 5% 0; }
    .coupon-area .coupon::before {
      content: "";
      background-color: #fff;
      position: absolute;
      right: 0%;
      top: 50%;
      -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
      transform: translate(50%, -50%);
      width: 20px;
      height: 20px;
      border-radius: 50px; }
    .coupon-area .coupon a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .coupon-area .coupon:hover {
      opacity: .75; }
    .coupon-area .coupon.coupon-used a, .coupon-area .coupon.coupon-expired a {
      opacity: 0.4; }
      .coupon-area .coupon.coupon-used a img, .coupon-area .coupon.coupon-expired a img {
        opacity: 0.4; }
    .coupon-area .coupon.coupon-used::after, .coupon-area .coupon.coupon-expired::after {
      content: "已兌換";
      color: #dc3545;
      border: 2px solid #dc3545;
      display: inline-block;
      font-size: 18px;
      line-height: 18px;
      font-weight: bold;
      padding: 3px;
      position: absolute;
      left: 52%;
      top: 40%;
      -webkit-transform: rotate(-20deg) translate(-50%, -50%);
      -ms-transform: rotate(-20deg) translate(-50%, -50%);
      transform: rotate(-20deg) translate(-50%, -50%);
      z-index: 10;
      pointer-events: none;
      margin-bottom: 0px; }
      @media (max-width: 340px) {
        .coupon-area .coupon.coupon-used::after, .coupon-area .coupon.coupon-expired::after {
          font-size: 20px; } }
    .coupon-area .coupon.coupon-expired::after {
      content: "已過期"; }
    .coupon-area .coupon .couponicon {
      text-align: center;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      @media (min-width: 540px) {
        .coupon-area .coupon .couponicon {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 25%;
          flex: 0 0 25%; } }
      .coupon-area .coupon .couponicon .icon-wrapper img {
        width: 50%; }
      .coupon-area .coupon .couponicon .icon-wrapper p {
        color: #333;
        font-size: 14px;
        margin-bottom: 3px;
        letter-spacing: 1px;
        color: #dfa932; }
    .coupon-area .coupon .coupontext h5 {
      color: #333;
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.3em;
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; }
    .coupon-area .coupon .coupontext .line {
      background-color: #dfa932;
      height: 1px;
      margin-bottom: 15px; }
      @media (min-width: 540px) {
        .coupon-area .coupon .coupontext .line {
          margin: 20px 0; } }
    .coupon-area .coupon .coupontext p {
      color: #777;
      font-size: 14px;
      margin: 0;
      line-height: 1.1em; }
      .coupon-area .coupon .coupontext p span {
        font-size: 14px; }
    .coupon-area .coupon .coupontext i {
      margin-right: 3px;
      font-size: 14px; }
