/* =====================================================
   フロント：予約カレンダー（一覧表示）
   使用箇所：予約ページ（[salon_calendar]）
===================================================== */

.sr-calendar {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  font-size: 14px;
}

.sr-calendar th,
.sr-calendar td {
  border: 1px solid #ccc;
  text-align: center;
  padding: 6px;
}

/* 時間列 */
.time-col {
  width: 70px;
  background: #f5f5f5;
  font-weight: bold;
}

/* 予約可能 / 不可 */
.available {
  color: #0a7;
  font-weight: bold;
}

.unavailable {
  color: #c00;
}

/* 定休日（日付セル） */
.closed-day {
  background: #f3f3f3;
  color: #666;
}

/* 定休日（時間スロット） */
.closed-slot {
  background: #f0f0f0;
  color: #999;
}

/* 定休日ラベル */
.closed-label {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}

/* クリック可能な予約枠 */
.sr-slot {
  cursor: pointer;
  transition: background 0.2s;
}

.sr-slot:hover {
  background: #e6fff5;
}

/* =====================================================
   フロント：日付・曜日表示
===================================================== */

/* 日付（上段） */
.sr-calendar .date-md {
  font-weight: bold;
  display: inline-block;
}

/* 曜日（下段） */
.sr-calendar .week {
  font-size: 0.85em;
  line-height: 1.2;
}

/* 日曜・土曜カラー */
.sr-calendar .week-sun {
  color: #d33; /* 日曜：赤 */
}

.sr-calendar .week-sat {
  color: #4aa3df; /* 土曜：水色 */
}

/* =====================================================
   フロント：カレンダーナビ（前後2週間・今日に戻る）
===================================================== */

.sr-calendar-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 10px;
}

.sr-calendar-nav .sr-nav {
  font-size: 0.9em;
  text-decoration: none;
  color: #333;
}

.sr-calendar-nav .sr-nav:hover {
  text-decoration: underline;
}

/* 「今日に戻る」リンク */
.sr-calendar-nav .sr-nav.today {
  font-weight: bold;
  text-decoration: underline;
}

/* =====================================================
   フロント：予約モーダル
===================================================== */

.sr-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}

.sr-modal-inner {
  background: #fff;
  max-width: 420px;
  margin: 8% auto;
  padding: 20px;
  border-radius: 6px;
}

.sr-close {
  text-align: right;
  cursor: pointer;
  font-size: 20px;
}

/* 入力フォーム */
.sr-modal-inner input {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  box-sizing: border-box;
}

/* モーダル内テキスト */
.sr-confirm-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.sr-confirm-item {
  margin-bottom: 6px;
}

.sr-note {
  font-size: 0.9em;
  color: #666;
  margin: 10px 0;
}

/* =====================================================
   フロント：メニュー選択
===================================================== */

.sr-menu-select {
  max-width: 520px;
  margin: 30px auto;
  padding: 0 16px;
}

.sr-page-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 700;
}

.sr-page-sub {
  text-align: center;
  color: #777;
  font-size: 14px;
  margin-bottom: 24px;
}

.sr-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sr-menu-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  color: #222;
  transition: 0.2s;
}

.sr-menu-checkable {
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.sr-menu-checkable:has(.sr-menu-checkbox:checked) {
  border-color: #8b6b55;
  background: #faf5f0;
}

.sr-menu-checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: #8b6b55;
  cursor: pointer;
}

.sr-menu-summary {
  position: sticky;
  bottom: 0;
  margin-top: 20px;
  padding: 14px 0 6px;
  background: linear-gradient(to top, #fff 70%, rgba(255,255,255,0));
}

.sr-menu-summary-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.sr-menu-summary-text {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.sr-menu-go-btn {
  padding: 10px 22px;
  background: #8b6b55;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.sr-menu-go-btn:hover {
  background: #75594a;
}

.sr-menu-go-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.sr-menu-card:hover {
  border-color: #8b6b55;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.sr-menu-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sr-menu-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.sr-menu-price {
  font-size: 14px;
  font-weight: 600;
  color: #8b6b55;
}

.sr-menu-arrow {
  font-size: 18px;
  color: #8b6b55;
  font-weight: bold;
}

/* スマホ */

@media (max-width: 768px) {
  .sr-menu-select {
    margin: 20px auto;
    padding: 0 14px;
  }

  .sr-page-title {
    font-size: 22px;
  }

  .sr-page-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .sr-menu-card {
    padding: 15px 16px;
  }

  .sr-menu-name {
    font-size: 16px;
  }
}

/* =====================================================
   カレンダーUI改善
===================================================== */

.sr-selected-menu {
  max-width: 700px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  background: #faf8f5;
  border: 1px solid #ece7e2;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

.sr-selected-menu strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 8px;
  word-break: break-word;
  color: #222;
}

.sr-selected-menu-price {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #8b6b55;
  margin-bottom: 8px;
}

.sr-selected-menu a {
  color: #8b6b55;
  text-decoration: none;
  font-weight: 600;
}

.sr-selected-menu a:hover {
  text-decoration: underline;
}

/* ナビ */

.sr-calendar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

.sr-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  max-width: 110px;
  height: 42px;
  padding: 0 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}

.sr-nav:hover {
  background: #8b6b55;
  border-color: #8b6b55;
  color: #fff;
}

.sr-nav.today {
  background: #f7f3ef;
  font-weight: 700;
}

/* テーブル */

.sr-calendar {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}

.sr-calendar th,
.sr-calendar td {
  padding: 10px 4px;
  height: 58px;
  border: 1px solid #ececec;
}

.time-col {
  background: #fafafa;
  font-size: 13px;
  font-weight: 700;
}

.date-md {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}

.week {
  display: block;
  font-size: 12px;
}

/* 今日 */

.sr-calendar th.today {
  background: #f8f4ef;
}

/* 定休日 */

.closed-day {
  background: #f5f5f5;
}

.closed-slot {
  background: #fafafa;
}

/* ○ */

.available {
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #e53935;
  transition: 0.2s;
}

.available:hover {
  background: #fdecea;
}

/* × */

.unavailable {
  color: #c9c9c9;
  font-size: 18px;
}

/* モーダル */

.sr-modal-inner {
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.sr-confirm-title {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.sr-confirm-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.sr-modal input {
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 16px;
}

#sr-submit {
  width: 100%;
  height: 52px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  background: #8b6b55;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

#sr-submit:hover {
  background: #755847;
}

/* スマホ */

@media (max-width: 768px) {
  .sr-calendar {
    font-size: 12px;
  }

  .sr-calendar th,
  .sr-calendar td {
    padding: 8px 2px;
    height: 52px;
  }

  .time-col {
    width: 56px;
    font-size: 12px;
  }

  .date-md {
    font-size: 14px;
  }

  .week {
    font-size: 11px;
  }

  .available,
  .unavailable {
    font-size: 16px;
  }

  .sr-nav {
    min-width: 100px;
    height: 40px;
    font-size: 13px;
  }

  .sr-modal-inner {
    width: 92%;
    margin: 8vh auto;
    padding: 22px;
  }
}
/* ==========================================
   全体レイアウト
========================================== */

.sr-menu-select,
.sr-selected-menu,
.sr-calendar-nav,
.sr-calendar {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.sr-calendar {
  display: table;
  margin-bottom: 30px;
  border-radius: 10px;
}

.sr-calendar th,
.sr-calendar td {
  min-width: 72px;
}

@media (max-width: 768px) {
  .sr-menu-select,
  .sr-selected-menu,
  .sr-calendar-nav,
  .sr-calendar {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  .sr-calendar {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ==========================================
   カレンダーナビ
========================================== */

.sr-calendar-nav {
  max-width: 700px;
  margin: 0 auto 20px;
  gap: 8px;
  flex-wrap: nowrap;
}

.sr-nav {
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 10px;
  font-size: 13px;
  white-space: nowrap;
}

/* ==========================================
   カレンダーサイズ調整
========================================== */

.sr-calendar {
  width: auto;
  margin: 0 auto 30px;
  font-size: 13px;
}

.sr-calendar th,
.sr-calendar td {
  min-width: 60px;
  width: 60px;
  height: 46px;
  padding: 6px 2px;
}

.time-col {
  width: 56px;
  min-width: 56px;
  font-size: 12px;
}

.date-md {
  font-size: 14px;
}

.week {
  font-size: 10px;
}

.available,
.unavailable {
  font-size: 15px;
}

@media (max-width: 768px) {
  .sr-calendar-nav {
    width: calc(100% - 24px);
  }

  .sr-nav {
    height: 34px;
    font-size: 12px;
    padding: 0 6px;
  }

  .sr-calendar {
    width: calc(100% - 24px);
  }
}

/* ===== ChatGPT layout refinement ===== */
.sr-calendar-nav {
  max-width: 640px;
  margin: 32px auto 16px;
  gap: 6px;
  flex-wrap: nowrap;
}
.sr-nav {
  flex: 1;
  max-width: 100px;
  min-width: 0;
  height: 34px;
  padding: 0 8px;
  font-size: 12px;
  white-space: nowrap;
}
.sr-selected-menu {
  max-width: 640px;
  margin: 0 auto 16px;
}
.sr-selected-menu strong {
  font-size: 16px;
}
.sr-calendar {
  width: auto;
  max-width: 900px;
  margin: 0 auto 24px;
}
.sr-calendar th,
.sr-calendar td {
  width: 56px;
  min-width: 56px;
  height: 42px;
  padding: 4px 2px;
}
.time-col {
  width: 52px;
  min-width: 52px;
  font-size: 11px;
}
.date-md {
  font-size: 13px;
}
.week {
  font-size: 10px;
}
.available,
.unavailable {
  font-size: 14px;
}
@media (max-width: 768px) {
  .sr-calendar-nav {
    width: calc(100% - 24px);
    margin-top: 20px;
  }
}

/* ===== Fine tune calendar buttons ===== */

.sr-nav {
  max-width: 90px;
  height: 32px;
  padding: 0 6px;
  font-size: 11px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .sr-nav {
    max-width: 84px;
    height: 30px;
    padding: 0 4px;
    font-size: 11px;
  }
}

/* ===== Modal fix ===== */

.sr-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}

.sr-modal-inner {
  width: 100%;
  max-width: 420px;
  margin: auto;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}

.sr-modal input {
  width: 100%;
  height: 46px;
  margin: 10px 0;
  padding: 0 14px;
  box-sizing: border-box;
}

#sr-submit {
  width: 100%;
  height: 48px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .sr-modal {
    padding: 16px;
  }

  .sr-modal-inner {
    width: 100%;
    max-width: 380px;
    padding: 20px;
  }
}

/* ========= Sticky Calendar ========= */

.sr-calendar-wrap {
  overflow: auto;
  max-height: 75vh;
  position: relative;
}

.sr-calendar {
  border-collapse: separate;
  border-spacing: 0;
  width: max-content;
}

.sr-calendar thead th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 30;
}

.sr-calendar tbody th.time-col {
  position: sticky;
  left: 0;
  background: #fafafa;
  z-index: 20;
}

.sr-calendar thead th.time-col {
  left: 0;
  z-index: 40;
}

/* =========================
   サンクスページ
========================= */

.sr-thanks-wrap {
  max-width: 480px;
  margin: 60px auto;
  padding: 48px 32px;
  text-align: center;
  background: #fff;
  border: 1px solid #ece7e2;
  border-radius: 12px;
}

.sr-thanks-icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  margin: 0 auto 20px;
  background: #0a7;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
}

.sr-thanks-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #222;
}

.sr-thanks-text {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 32px;
}

.sr-thanks-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #8b6b55;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.sr-thanks-btn:hover {
  background: #75594a;
  color: #fff;
}

/* =========================
   モーダル 戻るボタン
========================= */

.sr-btn-back {
  padding: 10px 18px;
  background: #f0f0f0;
  color: #444;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}

.sr-btn-back:hover {
  background: #e0e0e0;
}

/* =========================
   ユーザーバー
========================= */

.sr-user-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #faf5f0;
  border: 1px solid #ece7e2;
  border-radius: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.sr-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.sr-user-bar-links {
  display: flex;
  gap: 8px;
}

.sr-user-bar-btn {
  padding: 6px 14px;
  background: #8b6b55;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.sr-user-bar-btn:hover {
  background: #75594a;
  color: #fff;
}

.sr-user-bar-btn--logout {
  background: #aaa;
}

.sr-user-bar-btn--logout:hover {
  background: #888;
}

/* =========================
   認証ページ
========================= */

.sr-auth-wrap {
  max-width: 420px;
  margin: 48px auto;
  padding: 0 5vw;
  box-sizing: border-box;
}

.sr-auth-tabs {
  display: flex;
  border-bottom: 2px solid #ece7e2;
  margin-bottom: 28px;
}

.sr-auth-tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #aaa;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: 0.2s;
}

.sr-auth-tab.active {
  color: #8b6b55;
  border-bottom-color: #8b6b55;
}

.sr-auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sr-auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
}

.sr-auth-form input {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
  transition: 0.2s;
}

.sr-auth-form input:focus {
  outline: none;
  border-color: #8b6b55;
  box-shadow: 0 0 0 3px rgba(139,107,85,0.12);
}

.sr-auth-btn {
  margin-top: 8px;
  padding: 13px;
  background: #8b6b55;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.sr-auth-btn:hover {
  background: #75594a;
}

.sr-auth-error {
  padding: 10px 14px;
  background: #fff0f0;
  border: 1px solid #f5c6c6;
  border-radius: 6px;
  color: #a00;
  font-size: 14px;
  margin-bottom: 16px;
}

.sr-auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #888;
}

.sr-auth-switch a {
  color: #8b6b55;
  font-weight: 600;
}

/* =========================
   マイページ
========================= */

.sr-mypage-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.sr-mypage-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 24px;
  color: #222;
}

.sr-mypage-section {
  margin-bottom: 40px;
}

.sr-mypage-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #8b6b55;
  border-bottom: 2px solid #ece7e2;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.sr-mypage-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sr-mypage-card {
  padding: 18px 20px;
  border: 1px solid #ece7e2;
  border-radius: 10px;
  background: #fff;
}

.sr-mypage-card-date {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 6px;
}

.sr-mypage-card-menu {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

.sr-mypage-card-price {
  font-weight: 700;
  color: #8b6b55;
  margin-left: 8px;
}

.sr-cancel-btn {
  padding: 8px 16px;
  background: #fff;
  color: #a00;
  border: 1px solid #a00;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.sr-cancel-btn:hover {
  background: #fff0f0;
}

.sr-cancel-note {
  font-size: 12px;
  color: #aaa;
}

.sr-mypage-empty {
  color: #aaa;
  font-size: 15px;
}

.sr-mypage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sr-mypage-table th,
.sr-mypage-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.sr-mypage-table th {
  color: #888;
  font-weight: 600;
  font-size: 13px;
}

.sr-auth-notice {
  padding: 14px 16px;
  background: #f0f7ff;
  border: 1px solid #b3d4f5;
  border-radius: 6px;
  color: #1a5a8a;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.sr-auth-forgot {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
}

.sr-auth-forgot a {
  color: #888;
  text-decoration: underline;
}

/* =========================
   パスワード表示トグル
========================= */

.sr-pw-wrap {
  position: relative;
  width: 100%;
}

.sr-pw-wrap input {
  width: 100%;
  box-sizing: border-box;
  padding-right: 44px !important;
}

.sr-pw-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #aaa;
  display: flex;
  align-items: center;
  line-height: 1;
  transition: color 0.2s;
}

.sr-pw-toggle:hover {
  color: #8b6b55;
}

.sr-eye-icon {
  width: 20px;
  height: 20px;
  display: block;
}


.sr-auth-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #222;
}

.sr-auth-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* TEL予約セル */
.sr-slot-tel {
  text-align: center;
  vertical-align: middle;
}

.sr-slot-tel a {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #8b6b55;
  border-radius: 3px;
  padding: 2px 6px;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.sr-slot-tel a:hover {
  background: #75594a;
}

/* =========================
   プライバシーポリシー
========================= */

.sr-privacy-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
  color: #333;
  line-height: 1.9;
}

.sr-privacy-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #ece7e2;
  color: #222;
}

.sr-privacy-intro {
  margin-bottom: 32px;
  font-size: 15px;
}

.sr-privacy-section {
  margin-bottom: 32px;
}

.sr-privacy-section h2 {
  font-size: 17px;
  font-weight: 700;
  color: #8b6b55;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 3px solid #8b6b55;
}

.sr-privacy-section p {
  font-size: 14px;
  margin-bottom: 8px;
}

.sr-privacy-section ul {
  font-size: 14px;
  padding-left: 20px;
  margin: 8px 0;
}

.sr-privacy-section ul li {
  margin-bottom: 4px;
  list-style: disc;
}

.sr-privacy-contact {
  background: #faf8f5;
  border: 1px solid #ece7e2;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  margin-top: 10px;
}

.sr-privacy-contact p {
  margin: 0;
  line-height: 2;
}

.sr-privacy-date {
  font-size: 13px;
  color: #aaa;
  text-align: right;
  margin-top: 40px;
}
