.coupon-area p {
  margin: 0;
}

.coupon-area {
  background-color: #f0f8ff;
  padding: 1em .5em;
  border-radius: 5px;
  text-align: center;
}

#coupon-area.coupon-area {
  text-align: left;
}

.coupon-area .online {
  border: solid 3px #047F3A;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 4em 1em 1em;
}

.coupon-area .shop {
  border: solid 3px #EF5965;
  border-radius: 15px;
  background-color: #ffffff;
  padding: 4em 1em 1em;
  margin-bottom: 1em;
}

.coupon-area .heading {
  font-weight: bold;
  position: relative;
  line-height: 1.3;
}

.coupon-area .online .heading {
  color: #047F3A;
}

.coupon-area .shop .heading {
  color: #EF5965;
}

.coupon-area .heading:before {
  content: " ";
  display: inline-block;
  background-image: url('../image/online.svg?260422');
  background-size: cover;
  background-repeat: no-repeat;
  width: 65px;
  height: 46px;
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  margin: auto;
}

.coupon-area .shop .heading:before {
  background-image: url('../image/shop.svg?260422');
  width: 47px;
  height: 45px;
}

.code {
  display: inline-block;
  color: #fff;
}

.coupon-area .online .code {
  margin: .8em auto;
  background-color: #009F45;
  font-size: .85em;
}

.copy-btn {
  display: block;
  margin: 1em auto;
  background-color: #f5f5f5;
  border: solid 1px #949494;
  padding: .5em;
  border-radius: 5px;
  color: #333333;
}

.coupon-area p.attention {
  font-size: .7em;
  margin-top: 1em;
  line-height: 1.2;
}

.ribbon {
  display: inline-block;
  position: relative;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 100%;
  background: #33b5e5;
  color: #FFF;
  box-sizing: border-box;
}

.ribbon:before,
.ribbon:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.ribbon:before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 10px;
  border-color: transparent transparent transparent #fafffc;
  border-style: solid;
}

.ribbon:after {
  top: 0;
  right: 0;
  border-width: 25px 10px 25px 0px;
  border-color: transparent #fafffc transparent transparent;
  border-style: solid;
}

.shop .ribbon:before {
  border-color: transparent transparent transparent #fff9f9;
}

.shop .ribbon:after {
  border-color: transparent #fff9f9 transparent transparent;
}

span.use {
  color: #009fe8;
  font-weight: bold;
}

.show-btn {
  display: block;
  width: 100%;
  margin: 1em auto;
  padding: 1em;
  background: #EF5965;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: .9em;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  max-width: 92%;
  text-align: center;
}

.modal img {
  width: 100%;
  max-width: 360px;
}

.close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

.fallback {
  margin-top: 10px;
  font-size: 13px;
}

.fallback a {
  text-decoration: underline;
}

.accordion {
  max-width: 600px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-header {
  width: 100%;
  padding: 1em 1em 1em 0;
  text-align: left;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1em;
}

.icon {
  font-size: 18px;
  transition: transform 0.2s;
}

.always-open .accordion-header {
  cursor: default;
}