/* 顧客マイページ — 必要情報だけ（スタッフカード相当） */
:root {
  --bg: #eef3f8;
  --surface: #fff;
  --text: #0f1c2e;
  --muted: #4b5c6e;
  --accent: #0b6e4f;
  --brand: #0B3A6E;
  --border: #d5dee8;
  --danger: #b42318;
  --warn: #9a6700;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Hiragino Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #e4ecf5 0%, var(--bg) 36%, #f8fafc 100%);
  color: var(--text);
  line-height: 1.55;
}
.mypage-app { max-width: 560px; margin: 0 auto; padding: 18px 16px 48px; }
.mypage-header { margin-bottom: 16px; }
.mypage-brand {
  font-size: 15px;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.mypage-header h1 { font-size: 24px; margin: 0; line-height: 1.3; color: var(--text); }
.mypage-status { color: var(--muted); margin: 6px 0 0; font-size: 14px; }

.mypage-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(15, 28, 46, 0.04);
}
.mypage-section h2 {
  margin: 0 0 10px;
  font-size: 15px;
  color: var(--brand);
  font-weight: 800;
}
.mypage-fact-grid { display: grid; gap: 8px; }
.mypage-fact {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid #edf2f7;
}
.mypage-fact:last-child { border-bottom: 0; }
.mypage-fact-label { font-size: 12px; color: var(--muted); font-weight: 700; padding-top: 2px; }
.mypage-fact-value { font-size: 15px; font-weight: 650; color: var(--text); word-break: break-word; }
.mypage-fact-emphasis .mypage-fact-value { font-size: 20px; font-weight: 800; color: var(--brand); }

.mypage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.mypage-btn.primary { background: var(--brand); color: #fff; }
.mypage-btn.secondary { background: #e8eef6; color: var(--text); }
.mypage-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.mypage-hint { color: var(--muted); font-size: 13px; line-height: 1.5; }
.mypage-simple-lead { font-size: 18px; font-weight: 800; margin: 0 0 8px; }

@media (max-width: 480px) {
  .mypage-app { padding: 14px 12px 40px; }
  .mypage-fact { grid-template-columns: 1fr; gap: 2px; }
  .mypage-brand { font-size: 16px; }
  .mypage-header h1 { font-size: 22px; }
}

.mypage-status-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.mypage-status-desc {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--text);
}
.mypage-status-facts {
  margin-bottom: 0;
  border: none;
  padding: 0;
  background: transparent;
}
.mypage-next-action {
  margin: 12px 0 0;
  padding: 10px 12px;
  background: #eef8f3;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mypage-next-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}
.mypage-next-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.mypage-eta-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.mypage-eta-block.is-enroute { border-color: #9ad4c2; background: #f3fbf8; }
.mypage-eta-block.is-delayed { border-color: #f0c36a; background: #fff9ef; }
.mypage-eta-block.is-arrived { border-color: #9ad4c2; }
.mypage-eta-block.is-work { border-color: #93c5fd; background: #f5f9ff; }
.mypage-eta-caption {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.mypage-eta-hero {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin: 4px 0 6px;
  word-break: break-word;
}
.mypage-eta-message {
  font-size: 14px;
  margin: 4px 0 0;
  color: var(--text);
}
.mypage-eta-meta,
.mypage-eta-disclaimer {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.mypage-eta-delay {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--warn);
}

.mypage-fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}
.mypage-fact { min-width: 0; }
.mypage-fact-stack { grid-column: 1 / -1; }
.mypage-fact-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 2px;
}
.mypage-fact-value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  word-break: break-word;
}

.mypage-primary-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}
.mypage-block-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
}
.mypage-receipt-name {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.mypage-receipt-name-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
}
.mypage-text-input {
  flex: 1 1 200px;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
}
.mypage-text-input:focus {
  outline: 2px solid rgba(37, 99, 235, 0.25);
  border-color: #2563eb;
}
.mypage-guide-text {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
.mypage-guide-text:last-child { margin-bottom: 0; }
.mypage-guide-list {
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.mypage-guide-list li + li { margin-top: 6px; }
.mypage-fact-emphasis .mypage-fact-label,
.mypage-fact-emphasis .mypage-fact-value {
  font-weight: 700;
}
.mypage-urgent { border-color: #f5c2c0; background: #fff8f7; }
.mypage-urgent-lead { margin: 0 0 8px; font-size: 15px; font-weight: 700; color: var(--danger); }

.mypage-alert {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef7f1;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}
.mypage-alert-warn { background: #fff7e8; color: var(--warn); }

.mypage-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.mypage-btn {
  appearance: none;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.mypage-btn.primary { background: var(--accent); color: #fff; }
.mypage-btn.secondary { background: #fff; color: var(--text); border: 1px solid var(--border); }
.mypage-btn.danger { background: #fff; color: var(--danger); border: 1px solid #f5c2c0; }

.mypage-hint { font-size: 12px; color: var(--muted); margin: 6px 0 0; }
.mypage-error { color: var(--danger); font-size: 14px; }
.mypage-loading { color: var(--muted); }

.mypage-detail {
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.mypage-detail > summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.mypage-detail > summary::-webkit-details-marker { display: none; }
.mypage-detail-body {
  padding: 0 14px 14px;
  border-top: 1px solid #eef2f6;
}
.mypage-detail-section { margin-top: 12px; }

.mypage-messages { display: flex; flex-direction: column; gap: 8px; max-height: 280px; overflow-y: auto; margin-bottom: 8px; }
.mypage-msg { padding: 10px 12px; border-radius: 10px; font-size: 14px; }
.mypage-msg.inbound { background: #eef7f1; align-self: flex-start; }
.mypage-msg.outbound { background: #edf2f7; align-self: flex-end; }
.mypage-msg-meta { font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.mypage-msg-source {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: #e6f4ee;
  border-radius: 4px;
  padding: 1px 5px;
}
.mypage-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  font-size: 16px;
  min-height: 72px;
  resize: vertical;
  margin-top: 8px;
}
.mypage-note-list { margin: 4px 0 0; padding-left: 18px; font-size: 13px; font-weight: 400; }

.mypage-reschedule-panel { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.mypage-reschedule-lead { margin: 0 0 8px; font-size: 15px; font-weight: 700; line-height: 1.45; }
.mypage-reschedule-steps {
  margin: 0 0 12px;
  padding-left: 1.25em;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.mypage-reschedule-step-label { margin: 12px 0 0; font-weight: 700; color: var(--text); }
.mypage-reschedule-selection {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: #eef7f1;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.mypage-slot-dates, .mypage-slot-times { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.mypage-slot-date-btn, .mypage-slot-time-btn {
  appearance: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
}
.mypage-slot-meta { display: block; margin-top: 2px; font-size: 12px; font-weight: 400; color: var(--muted); }
.mypage-slot-date-btn.is-active .mypage-slot-meta { color: inherit; opacity: 0.85; }
.mypage-slot-date-btn.is-active, .mypage-slot-time-btn.is-active {
  border-color: var(--accent);
  background: #eef7f1;
  color: var(--accent);
  font-weight: 600;
}
.hidden { display: none !important; }

.mypage-photo-notice {
  margin: 0 0 12px;
  padding: 12px;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
}
.mypage-photo-notice p { margin: 0 0 6px; font-size: 13px; line-height: 1.55; }
.mypage-photo-notice p:last-child { margin-bottom: 0; }
.mypage-photo-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}
.mypage-photo-group { margin-top: 12px; }
.mypage-photo-pairs { display: grid; gap: 12px; }
.mypage-photo-pair-title { font-size: 12px; font-weight: 700; margin-bottom: 6px; color: var(--muted); }
.mypage-photo-pair-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mypage-photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; }
.mypage-photo-grid--switchable .mypage-photo-card {
  width: 100%;
  border: 1px solid var(--border, #d9e0ea);
  background: #fff;
  padding: 0;
  text-align: left;
  cursor: pointer;
}
.mypage-photo-grid--switchable .mypage-photo-card img { height: 120px; }
.mypage-photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.mypage-photo-viewer[hidden] { display: none !important; }
.mypage-photo-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.72);
}
.mypage-photo-viewer-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  background: #0f172a;
  color: #fff;
  border-radius: 14px;
  padding: 12px;
}
.mypage-photo-viewer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.mypage-photo-viewer-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}
.mypage-photo-viewer-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.mypage-photo-viewer-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  background: #020617;
  border-radius: 10px;
}
.mypage-photo-viewer-stage img {
  display: block;
  max-width: 100%;
  max-height: min(62vh, 640px);
  width: auto;
  height: auto;
  object-fit: contain;
}
.mypage-photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.mypage-photo-nav--prev { left: 8px; }
.mypage-photo-nav--next { right: 8px; }
.mypage-photo-viewer-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}
.mypage-photo-viewer-counter {
  margin: 0;
  font-size: 13px;
  color: #cbd5e1;
}
body.mypage-photo-viewer-open { overflow: hidden; }
.mypage-photo-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
}
.mypage-photo-card img { display: block; width: 100%; height: 90px; object-fit: cover; background: #f3f4f6; }
.mypage-photo-label { display: block; font-size: 11px; padding: 4px 6px; color: var(--muted); }
.mypage-history-item + .mypage-history-item { margin-top: 12px; padding-top: 12px; border-top: 1px solid #eef2f6; }
.mypage-settlement-block { margin-top: 8px; }
.mypage-line-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 8px; }
.mypage-line-table th, .mypage-line-table td { border-bottom: 1px solid #eef2f6; padding: 6px 4px; text-align: left; }
.mypage-line-table th { color: var(--muted); font-weight: 600; }
.mypage-line-table .num { text-align: right; white-space: nowrap; }
.mypage-settlement-total { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 2px 0; }
.mypage-settlement-total.strong { font-weight: 700; font-size: 14px; margin-top: 4px; }

/* 元 /kakunin 到着案内仕様（ページ統合後も内容は維持） */
.mypage-arrival-notice { margin-bottom: 12px; }
.mypage-arrival-name {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.mypage-arrival-primary {
  margin: 0 0 12px;
  padding: 20px 14px 14px;
  text-align: center;
  border: 2px solid #99c7d4;
  border-radius: 18px;
  background: #ecfeff;
}
.mypage-arrival-caption {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: #0e7490;
  letter-spacing: .06em;
}
.mypage-arrival-hero {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: .02em;
  word-break: keep-all;
}
.mypage-arrival-movement {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  color: #475569;
  word-break: break-word;
}
.mypage-arrival-distance { font-weight: 800; color: #0f766e; white-space: nowrap; }
.mypage-arrival-progress {
  margin: 0 0 12px;
  padding: 10px 8px 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.mypage-arrival-progress-track {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  position: relative;
}
.mypage-arrival-progress-track::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: #e2e8f0;
  border-radius: 999px;
  z-index: 0;
}
.mypage-arrival-progress-step {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.mypage-arrival-progress-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
}
.mypage-arrival-progress-step.is-done .mypage-arrival-progress-dot {
  border-color: #14b8a6;
  background: #ccfbf1;
  color: #0f766e;
}
.mypage-arrival-progress-step.is-active .mypage-arrival-progress-dot {
  border-color: #0e7490;
  background: #0e7490;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(14, 116, 144, .15);
}
.mypage-arrival-progress-label {
  font-size: 9px;
  line-height: 1.3;
  font-weight: 700;
  color: #94a3b8;
  text-align: center;
}
.mypage-arrival-progress-step.is-done .mypage-arrival-progress-label,
.mypage-arrival-progress-step.is-active .mypage-arrival-progress-label {
  color: #0f172a;
}
.mypage-arrival-disclaimer {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
}
.mypage-arrival-prep {
  margin: 0 0 12px;
  padding: 14px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.mypage-arrival-prep h2 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
}
.mypage-arrival-prep ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #334155;
  line-height: 1.55;
}
.mypage-arrival-notes {
  display: block;
  margin: 12px 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #0e7490;
  font-weight: 700;
}
.mypage-arrival-sms-hint { margin: 0 0 12px; text-align: center; }
.mypage-arrival-contact .mypage-btn.primary { width: 100%; }

@media (max-width: 420px) {
  .mypage-fact-grid { grid-template-columns: 1fr; }
  .mypage-arrival-hero { font-size: 30px; }
}

/* 指示7: /kakunin と同型の到着予定ヒーロー */
.mypage-kakunin-eta {
  background: #fff;
  border-radius: 18px;
  padding: 20px 16px 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,.08);
  border: 1px solid rgba(219,228,240,.9);
  margin-bottom: 14px;
}
.mypage-kakunin-title {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 800;
}
.mypage-kakunin-name {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
}
.mypage-kakunin-menu {
  margin: 6px 0 0;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  color: #1e293b;
}
.mypage-kakunin-eta-box {
  margin: 22px 0 18px;
  padding: 18px 16px 16px;
  border: 2px solid #99f6e4;
  background: #ecfeff;
  border-radius: 18px;
}
.mypage-kakunin-eta-label {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: .04em;
}
.mypage-kakunin-eta-time {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  color: #0f172a;
  word-break: keep-all;
}
.mypage-kakunin-eta-note {
  margin: 8px 0 0 auto;
  width: 100%;
  font-size: 15px;
  line-height: 1.55;
  color: #0f766e;
  font-weight: 800;
  text-align: right;
}
.mypage-kakunin-text {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.75;
  color: #475569;
}
.mypage-kakunin-link {
  display: inline-block;
  margin-top: 6px;
  color: #0f766e;
  font-weight: 700;
  text-decoration: none;
}
.mypage-kakunin-lead {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #334155;
  font-weight: 700;
}
.mypage-kakunin-form textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: 1px solid #dbe4f0;
  border-radius: 14px;
  padding: 14px;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 10px;
}
.mypage-kakunin-form button {
  width: 100%;
  margin-top: 12px;
  border: none;
  border-radius: 14px;
  padding: 15px 16px;
  background: #0f172a;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}
.mypage-simple-status {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  margin-bottom: 12px;
}
.mypage-simple-lead {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
}
.mypage-drying,
.mypage-review {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid var(--border, #d9e0ea);
  border-radius: 12px;
  background: #fff;
}
.mypage-review h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.mypage-aftercare {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 12px;
}
.mypage-drying h2,
.mypage-aftercare h2 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.mypage-guide-intro {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.mypage-guide-meta {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.mypage-guide-focus {
  margin: 0 0 18px;
  padding: 0 0 0 12px;
  border-left: 3px solid var(--accent);
}
.mypage-guide-focus h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}
.mypage-guide-focus p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}
.mypage-guide-focus p:last-child { margin-bottom: 0; }
.mypage-guide-block {
  margin: 0 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.mypage-guide-block:first-of-type,
.mypage-drying > .mypage-guide-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.mypage-guide-block h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.mypage-guide-block p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}
.mypage-guide-block p:last-child { margin-bottom: 0; }
.mypage-guide-sub {
  margin: 14px 0 8px !important;
  font-size: 13px !important;
  font-weight: 700;
  color: var(--muted) !important;
}
.mypage-guide-list,
.mypage-guide-steps {
  margin: 0 0 10px;
  padding-left: 1.25em;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
}
.mypage-guide-list li + li,
.mypage-guide-steps li + li {
  margin-top: 4px;
}
.mypage-guide-foot {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.mypage-aftercare-actions {
  margin-top: 4px;
}
.mypage-aftercare-actions .mypage-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
@media (min-width: 641px) {
  .mypage-kakunin-title { font-size: 32px; }
  .mypage-kakunin-eta-time { font-size: 40px; }
  .mypage-aftercare-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .mypage-aftercare-actions .mypage-btn {
    width: auto;
    flex: 1 1 auto;
  }
}
