/* ============================================================
   charter-pages.css  各専用ページ共通
   ============================================================ */

/* 戻るボタン */
.ca-back-btn {
  color: #fff; font-size: 20px; padding: 6px 10px;
  display: flex; align-items: center;
}
.ca-back-btn:hover { opacity: .8; }

/* コンテナ */
.cp-container {
  padding: 16px;
  max-width: 640px;
  margin: 0 auto;
}

/* セクション */
.cp-section {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(0,119,182,.1);
}
.cp-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.cp-section__title {
  font-size: 16px; font-weight: 700; color: #023e6e;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.cp-section__title i { color: #0077b6; }

/* フォームグループ */
.cp-form-group {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
}
.cp-form-group:last-child { margin-bottom: 0; }
.cp-form-group label { font-size: 15px; font-weight: 600; color: #3d5670; }
.cp-form-group input,
.cp-form-group select,
.cp-form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid #c5dff0; border-radius: 8px;
  font-size: 16px; color: #1a2e42; background: #fff;
  transition: border-color .15s;
  -webkit-appearance: none;
}
.cp-form-group input:focus,
.cp-form-group select:focus,
.cp-form-group textarea:focus {
  outline: none; border-color: #0077b6;
}

/* フォームフッター */
.cp-form-footer {
  display: flex; gap: 12px;
  padding: 16px 0 24px;
}
.cp-btn-lg {
  flex: 1; padding: 16px; font-size: 17px !important;
  border-radius: 10px !important; min-height: 54px !important;
}

/* ============================================================
   確認ダイアログ
   ============================================================ */
.cp-confirm-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.6);
  display: flex; align-items: flex-end; justify-content: center;
}
.cp-confirm-box {
  background: #fff; width: 100%; max-width: 640px;
  border-radius: 16px 16px 0 0;
  padding: 24px 20px 40px;
  animation: slideUp .28s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cp-confirm-box h3 {
  font-size: 18px; font-weight: 700; color: #023e6e;
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.cp-confirm-box h3 i { color: #0077b6; }
.cp-confirm-list { margin-bottom: 24px; }
.cp-confirm-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid #e8f2f9;
  font-size: 16px;
}
.cp-confirm-item:last-child { border-bottom: none; }
.cp-confirm-item__label { color: #3d5670; font-size: 14px; min-width: 80px; flex-shrink: 0; }
.cp-confirm-item__value { color: #1a2e42; font-weight: 700; font-size: 17px; }
.cp-confirm-footer { display: flex; gap: 12px; }

/* ============================================================
   予約者一覧・名簿 リスト
   ============================================================ */
.cp-list-item {
  background: #fff; border-radius: 10px;
  padding: 16px; margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,119,182,.08);
  cursor: pointer; transition: background .15s;
  border-left: 4px solid #0077b6;
}
.cp-list-item:hover, .cp-list-item:active { background: #f0f7fc; }
.cp-list-item__date { font-size: 13px; color: #3d5670; margin-bottom: 4px; }
.cp-list-item__name { font-size: 18px; font-weight: 700; color: #1a2e42; }
.cp-list-item__meta { font-size: 14px; color: #3d5670; margin-top: 4px; display: flex; gap: 10px; flex-wrap: wrap; }
.cp-list-item__arrow { color: #c5dff0; font-size: 14px; }

/* ============================================================
   詳細パネル（スライドアップ）
   ============================================================ */
.cp-detail-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,.5);
  display: flex; align-items: flex-end;
}
.cp-detail-panel {
  background: #fff; width: 100%; max-width: 640px;
  margin: 0 auto;
  border-radius: 16px 16px 0 0;
  max-height: 88vh; overflow-y: auto;
  animation: slideUp .28s ease;
}
.cp-detail-header {
  position: sticky; top: 0; background: #fff;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid #e8f2f9;
  z-index: 10;
}
.cp-detail-close {
  background: #f0f7fc; border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 16px; color: #3d5670;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.cp-detail-header h3 { flex: 1; font-size: 17px; font-weight: 700; color: #023e6e; }
.cp-detail-actions { display: flex; gap: 8px; }
.cp-detail-body { padding: 16px; }

/* 詳細情報 */
.cp-detail-row {
  display: flex; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid #f0f7fc;
  font-size: 16px;
}
.cp-detail-row:last-child { border-bottom: none; }
.cp-detail-row__label { color: #3d5670; font-size: 14px; min-width: 90px; flex-shrink: 0; }
.cp-detail-row__value { color: #1a2e42; font-weight: 600; }

/* 編集フォーム */
.cp-edit-form { padding: 16px; border-top: 2px solid #e8f2f9; }

/* 顧客情報 */
.cp-customer-card {
  background: #f0f7fc; border-radius: 10px; padding: 16px;
  margin-bottom: 4px;
}
.cp-customer-card__name { font-size: 20px; font-weight: 700; color: #023e6e; margin-bottom: 6px; }
.cp-customer-card__phone { font-size: 16px; color: #3d5670; margin-bottom: 4px; }
.cp-customer-card__count { font-size: 14px; color: #0077b6; font-weight: 600; }

/* 予約履歴 */
.cp-history-title {
  font-size: 15px; font-weight: 700; color: #023e6e;
  margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.cp-history-item {
  padding: 12px; background: #f8fbfd; border-radius: 8px;
  margin-bottom: 8px; border-left: 3px solid #0077b6;
}
.cp-history-item__date { font-size: 13px; color: #3d5670; margin-bottom: 3px; }
.cp-history-item__name { font-size: 15px; font-weight: 600; color: #1a2e42; }
.cp-history-item__meta { font-size: 13px; color: #3d5670; margin-top: 2px; }

/* ============================================================
   マスタ管理
   ============================================================ */
.cp-master-item {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: 8px; padding: 14px 16px;
  margin-bottom: 8px; box-shadow: 0 1px 6px rgba(0,119,182,.08);
  gap: 10px;
}
.cp-master-item__name { font-size: 17px; font-weight: 700; color: #1a2e42; }
.cp-master-item__meta { font-size: 13px; color: #3d5670; margin-top: 2px; }
.cp-master-item__right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cp-status-badge {
  font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
}
.cp-status-badge--on  { background: #dcfce7; color: #166534; }
.cp-status-badge--off { background: #e5e7eb; color: #374151; }

/* ============================================================
   バッジ（共通）
   ============================================================ */
.cp-badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}
.cp-badge--blue   { background: #dbeafe; color: #1e40af; }
.cp-badge--teal   { background: #ccfbf1; color: #115e59; }
.cp-badge--orange { background: #fed7aa; color: #92400e; }
.cp-badge--gray   { background: #e5e7eb; color: #374151; }
.cp-badge--red    { background: #fee2e2; color: #991b1b; }
.cp-badge--charter { background: #f59e0b; color: #fff; }

/* タブ */
.cp-tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.cp-tab {
  flex: 1;
  background: #fff;
  color: #3d5670;
  border: 1.5px solid #d7e2ed;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .15s;
}
.cp-tab:hover { background: #f0f7fc; }
.cp-tab--active {
  background: #0077b6;
  color: #fff;
  border-color: #0077b6;
}

/* ============================================================
   月別詳細 カード型レイアウト
   ============================================================ */
.sb-list { display: flex; flex-direction: column; gap: 14px; }
.sb-day {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  overflow: hidden;
}
.sb-day__header {
  background: linear-gradient(135deg, #0077b6, #023e6e);
  color: #fff;
  padding: 10px 14px;
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.sb-day__date { display: flex; align-items: baseline; gap: 6px; }
.sb-day__ship-caps {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
  margin-left: auto;
}
.sb-ship-cap {
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 10px;
  color: #fff; white-space: nowrap;
}
.sb-ship-cap__name {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
  white-space: nowrap;
  margin-left: -4px; margin-right: 4px;
}
.sb-ship-cap__none {
  font-size: 11px;
  padding: 3px 8px;
  color: rgba(255,255,255,.7);
  margin-left: -4px; margin-right: 4px;
  font-style: italic;
}
.sb-day__date-md { font-size: 18px; font-weight: 700; }
.sb-day__date-dow { font-size: 13px; opacity: .85; }
.sb-day__bookings { padding: 10px 12px; display: flex; flex-direction: column; gap: 10px; }
.sb-day__total-row {
  margin: 0 12px;
  padding: 10px 14px;
  background: #fff8e1;
  border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; color: #1a3a5c;
}
.sb-day__total-row b { font-size: 18px; }
.sb-day__total-row .day-total-amount { font-size: 18px; font-weight: 700; }

.sb-booking {
  background: #f8fafc;
  border: 1px solid #e7edf3;
  border-radius: 10px;
  padding: 10px 12px;
}
.sb-booking__header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; flex-wrap: wrap; margin-bottom: 6px;
}
.sb-booking__name { font-weight: 700; font-size: 16px; color: #1a3a5c; }
.sb-booking__badges { display: flex; gap: 4px; flex-wrap: wrap; }
.sb-ship {
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 10px;
  white-space: nowrap;
}
.sb-ship--1 { background: #1a6fc4; color: #fff; }
.sb-ship--2 { background: #0a8a7a; color: #fff; }
.sb-ship--none { background: #fed7aa; color: #92400e; }
.sb-tag {
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 10px;
  white-space: nowrap;
}
.sb-tag--plan { background: #e5e7eb; color: #374151; }
.sb-tag--charter { background: #f59e0b; color: #fff; }
.sb-booking__meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #3d5670;
  margin-bottom: 8px;
}
.sb-booking__meta i { color: #465e7a; margin-right: 4px; }
.sb-booking__inputs { display: flex; gap: 8px; flex-wrap: wrap; }
.sb-input-row {
  display: flex; align-items: center; gap: 6px;
  flex: 1; min-width: 0;
}
.sb-input-row__label {
  font-size: 12px; color: #3d5670; font-weight: 600;
  min-width: 36px;
}
.sb-input-row input[type=number] {
  width: 100px; padding: 6px 8px;
  border: 1px solid #d7e2ed; border-radius: 6px;
  font-size: 15px; font-weight: 700; color: #1a3a5c;
  text-align: right;
}
.sb-input-row input[type=text] {
  flex: 1; padding: 6px 8px;
  border: 1px solid #d7e2ed; border-radius: 6px;
  font-size: 14px; color: #1a3a5c;
  min-width: 0;
}
.sb-booking__actions {
  margin-top: 6px; display: flex; justify-content: flex-end;
}
.sb-booking__actions button {
  background: #c03030; color: #fff;
  border: 0; border-radius: 6px;
  padding: 5px 12px; font-size: 12px; font-weight: 600;
  cursor: pointer;
}
.sb-day__captains {
  background: #f1f5f9;
  border-top: 1px solid #e7edf3;
  padding: 10px 14px;
}
.sb-day__captains-label {
  font-size: 13px; font-weight: 700; color: #1a3a5c;
  margin-bottom: 6px;
}
.sb-day__captains-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sb-cap-row {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid #d7e2ed;
  border-radius: 8px;
  padding: 4px 6px 4px 4px;
}
.sb-cap-row__name {
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 10px;
  white-space: nowrap;
}
.sb-cap-row input {
  width: 76px; padding: 4px 6px;
  border: 1px solid #d7e2ed; border-radius: 4px;
  font-size: 14px; font-weight: 700; color: #1a3a5c;
  text-align: right;
}
.sb-month-total {
  margin-top: 14px;
  background: #eef4fb;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px;
}
.sb-month-total b { font-size: 20px; color: #0077b6; }

/* ============================================================
   名簿・会員 - 会員 / クーポン拡張スタイル
   ============================================================ */

/* 会員バッジ */
.cp-badge-member {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #4f8edb 0%, #2c5fa8 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

.cp-list-item--member {
  border-left: 3px solid #4f8edb;
}

.cp-customer-card--member {
  background: linear-gradient(135deg, #f0f6ff 0%, #fff 60%);
  border-color: #b8d4ff;
}

/* 会員情報セクション */
.cp-section-action {
  margin-left: auto;
  float: right;
}

.cp-history-title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cp-member-empty {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: #4b5563;
  font-size: 13px;
}

.cp-member-empty p { margin: 0 0 8px; }

.cp-member-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid #e3e9f1;
  border-radius: 10px;
  padding: 12px;
}

.cp-member-avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0f3f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #465e7a;
}

.cp-member-avatar img { width: 100%; height: 100%; object-fit: cover; }

.cp-member-body { flex: 1; min-width: 0; }
.cp-member-name { font-weight: 700; font-size: 15px; }
.cp-member-no { font-size: 12px; color: #4b5563; margin-top: 2px; }
.cp-member-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 12px;
  color: #4b5563;
  margin-top: 6px;
}
.cp-member-meta i { color: #4f8edb; }
.cp-member-actions { flex: 0 0 auto; }

/* クーポンリスト */
.cp-coupon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e3e9f1;
  border-left: 4px solid #ff9a3c;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 8px;
}

.cp-coupon-row--used,
.cp-coupon-row--expired,
.cp-coupon-row--voided {
  border-left-color: #adb5bd;
  background: #f8f9fa;
  opacity: 0.85;
}

.cp-coupon-row__amount {
  font-size: 18px;
  font-weight: 800;
  color: #d9480f;
  min-width: 76px;
}
.cp-coupon-row--used .cp-coupon-row__amount,
.cp-coupon-row--expired .cp-coupon-row__amount,
.cp-coupon-row--voided .cp-coupon-row__amount {
  color: #4b5563;
}

.cp-coupon-row__main { flex: 1; min-width: 0; }
.cp-coupon-row__title { font-weight: 600; font-size: 14px; }
.cp-coupon-row__meta { font-size: 11px; color: #4b5563; margin-top: 2px; }

.cp-coupon-row__status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.cp-coupon-row__status--available { background: #d4edda; color: #155724; }
.cp-coupon-row__status--used      { background: #d1ecf1; color: #0c5460; }
.cp-coupon-row__status--expired   { background: #f8d7da; color: #721c24; }
.cp-coupon-row__status--voided    { background: #e2e3e5; color: #383d41; }

/* モーダル */
.cp-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cp-modal-panel {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.cp-modal-small { max-width: 360px; }

.cp-modal-header {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e9ecef;
  background: #023e6e;
  color: #fff;
}
.cp-modal-header h3 { margin: 0; font-size: 16px; flex: 1; }

.cp-modal-close {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.cp-modal-body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.cp-modal-footer {
  padding: 12px 16px;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cp-coupon-target__card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f6ff;
  border: 1px solid #b8d4ff;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
}
.cp-coupon-target__card i { font-size: 28px; color: #4f8edb; }
.cp-coupon-target__card strong { display: block; font-size: 15px; }
.cp-coupon-target__card small { color: #4b5563; font-size: 12px; }

.cp-form-row {
  display: flex;
  gap: 8px;
}
.cp-form-row > div { flex: 1; }
.cp-form-row input { width: 100%; }

/* ============================================================
   会員紐付け候補 / 検索結果
   ============================================================ */

.cp-candidates {
  background: #fff7e6;
  border: 1px solid #ffd591;
  border-radius: 10px;
  padding: 10px 12px;
  margin: 12px 0;
}

.cp-candidates__title {
  font-size: 12px;
  font-weight: 700;
  color: #ad6800;
  margin-bottom: 8px;
}

.cp-candidate {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  margin-top: 6px;
}

.cp-candidate__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0f3f7; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #465e7a; flex: 0 0 36px;
}

.cp-candidate__avatar img { width: 100%; height: 100%; object-fit: cover; }

.cp-candidate__body { flex: 1; min-width: 0; }
.cp-candidate__name { font-weight: 700; font-size: 14px; }
.cp-candidate__no { font-size: 11px; color: #4b5563; font-weight: normal; margin-left: 6px; }
.cp-candidate__meta { font-size: 11px; color: #4b5563; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.cp-candidate__reason {
  background: #1a73e8; color: #fff;
  padding: 1px 8px; border-radius: 999px;
  font-size: 10px; font-weight: 700;
}

.cp-link-actions { margin-top: 12px; text-align: center; }

.cp-link-results {
  margin-top: 12px; max-height: 320px; overflow-y: auto;
  border: 1px solid #e3e9f1; border-radius: 8px;
}

.cp-link-result {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #f0f3f7;
}

.cp-link-result:last-child { border-bottom: 0; }

.cp-link-result__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f0f3f7; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #465e7a; flex: 0 0 32px;
}

.cp-link-result__avatar img { width: 100%; height: 100%; object-fit: cover; }
.cp-link-result__body { flex: 1; min-width: 0; }
.cp-link-result__name { font-weight: 700; font-size: 13px; }
.cp-link-result__no   { font-size: 11px; color: #4b5563; font-weight: normal; margin-left: 4px; }
.cp-link-result__meta { font-size: 11px; color: #4b5563; margin-top: 2px; }
.cp-link-result__warn { font-size: 11px; color: #d68b00; margin-top: 4px; }
.cp-link-result--linked { background: #fffbeb; }

/* クーポン写真選択ボタン */
.ci-photo-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ci-photo-btn {
  flex: 1;
  min-width: 130px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ふりがな表示 */
.cp-list-item__kana {
  display: block;
  font-size: 11px;
  color: #465e7a;
  font-weight: normal;
  margin-top: 1px;
}

/* ============================================================
   クーポン行のスワイプ削除
   ============================================================ */

.cp-coupon-swipe {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 8px;
  touch-action: pan-y;
}

.cp-coupon-swipe .cp-coupon-row {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  background: #fff;
  will-change: transform;
}

.cp-coupon-swipe__delete {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 96px;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #fff;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  z-index: 1;
  letter-spacing: 1px;
}

.cp-coupon-swipe__delete i { font-size: 18px; }
.cp-coupon-swipe__delete:hover { filter: brightness(1.05); }

/* ヒント矢印（未スワイプ時にうっすら） */
.cp-coupon-swipe:not(.is-swiped) .cp-coupon-row::after {
  content: "‹";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #c4cdd9;
  font-size: 18px;
  pointer-events: none;
  opacity: 0.4;
}

@media (hover: hover) {
  .cp-coupon-swipe:hover:not(.is-swiped) .cp-coupon-row::after {
    opacity: 0.9;
    color: #465e7a;
  }
}

/* セクションヘッダ右端のヒントテキスト（+発行ボタン左） */
.cp-section-hint {
  margin-left: auto;
  font-size: 11px;
  color: #465e7a;
  font-weight: normal;
  letter-spacing: 0;
  white-space: nowrap;
}

/* ヒントが先に margin-left:auto を取るので、ボタンの自動マージンを解除 */
.cp-section-hint + .cp-section-action {
  margin-left: 8px;
  float: none;
}

@media (max-width: 480px) {
  .cp-section-hint { font-size: 10px; }
}
