
.mcw-card {
  box-sizing: border-box;
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
  padding: 24px 28px 22px;
  border: 2px solid rgba(255,255,255,.96);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(255,250,244,.98) 58%, rgba(255,243,236,.98) 100%);
  box-shadow: 0 10px 28px rgba(94, 55, 28, .12);
  color: #2d2d2d;
  text-align: left;
  overflow: hidden;
  position: relative;
}

.mcw-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #ff9c32 0%, #ff6a2f 48%, #e83f3f 100%);
}

.mcw-title {
  margin: 0 0 12px;
  padding-left: 2px;
  font-family: "abajimin-soeb", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(25px, 3.0vw, 36px);
  line-height: 1.28;
  letter-spacing: .02em;

  background: linear-gradient(90deg, #ff9a32 0%, #ff6b2f 48%, #e83e42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.mcw-rule {
  width: 78px;
  height: 4px;
  margin: 0 0 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff9a32, #e83e42);
}

.mcw-quote-wrap {
  position: relative;
  padding: 6px 0 2px 6px;
}

.mcw-mark {
  position: absolute;
  top: -17px;
  left: -3px;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
  color: rgba(232, 62, 66, .13);
  pointer-events: none;
}

.mcw-message {
  position: relative;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
               "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.65;
  letter-spacing: .02em;
  color: #333333;
}

.mcw-person {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
}

.mcw-person-name {
  font-size: 15px;
  font-weight: 700;
  color: #d94c38;
}

.mcw-note {
  font-size: 11px;
  color: #8a817c;
}

.mcw-more {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff9838 0%, #ff6a31 52%, #e94444 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(224, 72, 49, .18);
  transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.mcw-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(224, 72, 49, .24);
}

.mcw-more:active {
  transform: translateY(0);
}

.mcw-more:focus-visible {
  outline: 3px solid rgba(255, 137, 49, .34);
  outline-offset: 3px;
}

.mcw-message,
.mcw-person {
  transition: opacity .16s ease;
}

.mcw-card.mcw-changing .mcw-message,
.mcw-card.mcw-changing .mcw-person {
  opacity: .28;
}

.mcw-error {
  padding: 14px;
  border-radius: 12px;
  background: #fff4f2;
  color: #b63b31;
}

/* スマホでは周囲のカードとのバランスを保つ */
@media (max-width: 600px) {
  .mcw-card {
    max-width: none;
    padding: 21px 22px 20px;
    border-radius: 24px;
  }

  .mcw-title {
    font-size: 27px;
  }

  .mcw-message {
    font-size: 20px;
    line-height: 1.62;
  }
}
