.coty-cta {
  position: relative;
  margin: 48px 0;
  padding: 40px 40px 36px;
  background: linear-gradient(145deg, #fdf8f2 0%, #f5ede0 50%, #fdf8f2 100%);
  border: 1px solid #d4b896;
  text-align: center;
  overflow: hidden;
}
.coty-cta__deco {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #c8a878;
  border-style: solid;
}
.coty-cta__deco--tl { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.coty-cta__deco--tr { top: 8px; right: 8px; border-width: 1px 1px 0 0; }
.coty-cta__deco--bl { bottom: 8px; left: 8px; border-width: 0 0 1px 1px; }
.coty-cta__deco--br { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }
.coty-cta__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.coty-cta__eyebrow-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #a07848;
  font-family: Georgia, 'Times New Roman', serif;
  white-space: nowrap;
}
.coty-cta__line {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a878, transparent);
}
.coty-cta__menu {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.coty-cta__name {
  font-size: 22px;
  font-weight: bold;
  color: #2a1a0a;
  letter-spacing: 0.08em;
}
.coty-cta__price {
  font-size: 22px;
  color: #8a5828;
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: 0.05em;
}
.coty-cta__price small {
  font-size: 12px;
  color: #a08060;
  margin-left: 2px;
}
.coty-cta__divider {
  color: #c8a878;
  font-size: 12px;
  margin-bottom: 16px;
  letter-spacing: 0.3em;
}
.coty-cta__desc {
  font-size: 14px;
  color: #4a3a2a;
  line-height: 2;
  margin-bottom: 12px;
}
.coty-cta__note {
  font-size: 11px;
  color: #a08060;
  line-height: 1.8;
  margin-bottom: 24px;
}
.coty-cta__btn {
  display: block;
  text-decoration: none;
  background: linear-gradient(135deg, #3a2010 0%, #6a3818 50%, #3a2010 100%);
  background-size: 200% 200%;
  color: #f5e8d4;
  padding: 16px 32px;
  letter-spacing: 0.12em;
  font-size: 13px;
  transition: background-position 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(90, 50, 10, 0.2);
  max-width: 400px;
  margin: 0 auto;
}
.coty-cta__btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s;
}
.coty-cta__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.coty-cta__btn:hover {
  background-position: right center;
  box-shadow: 0 4px 20px rgba(90, 50, 10, 0.35);
}
.coty-cta__btn:hover .coty-cta__btn-inner { gap: 18px; }
.coty-cta__btn:hover svg { transform: translateX(4px); }
 
.coty-cta__btn:hover {
  background-position: right center;
  box-shadow: 0 4px 20px rgba(90, 50, 10, 0.35);
  color: #f5e8d4; /* ★追加 */
}
@media (max-width: 1024px) {
  .coty-cta { padding: 32px 28px; }
  .coty-cta__name, .coty-cta__price { font-size: 19px; }
}
@media (max-width: 599px) {
  .coty-cta { padding: 28px 16px 24px; }
  .coty-cta__menu { flex-direction: column; gap: 6px; }
  .coty-cta__name, .coty-cta__price { font-size: 17px; }
  .coty-cta__btn { font-size: 12px; padding: 14px 20px; max-width: 100%; }
  .coty-cta__line { width: 24px; }
}
