/**
 * reception-status-brown.css
 * 茶色テーマ用 / SPのみ
 *
 * HTML・JSは全テーマ共通。
 * オレンジテーマではこのCSSのみテーマに合わせて差し替える想定です。
 */
.reception-status {
  display: none;
}

@media screen and (max-width: 768px) {
  .reception-status {
    width: 100%;
    min-height: 34px;
    padding: 6px 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #fffaf5;
    border-top: 1px solid #eadfd4;
    border-bottom: 1px solid #eadfd4;
    color: #5d4635;
    font-size: clamp(11px, 3.35vw, 13px);
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
  }

  /* JSの設定読み込み前や設定エラー時は表示しない */
  .reception-status:not([data-ready="true"]) {
    display: none;
  }

  .reception-status__icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8a8a8a;
  }

  .reception-status__main {
    font-weight: 700;
  }

  .reception-status__sub {
    font-weight: 600;
  }

  /* 受付中 */
  .reception-status[data-status="open"] .reception-status__icon {
    background: #3c9a50;
  }

  /* 営業開始前・休憩中 */
  .reception-status[data-status="beforeOpen"] .reception-status__icon,
  .reception-status[data-status="break"] .reception-status__icon {
    background: #d58a2a;
  }

  /* 営業終了・休診 */
  .reception-status[data-status="closed"] .reception-status__icon,
  .reception-status[data-status="closedDay"] .reception-status__icon {
    background: #8a8a8a;
  }
}


/* 20260831 SP CTA変更 start */
@media screen and (max-width: 768px) {

  /* CTA見出し */
  .c-cta-sp__ttl {
    margin-bottom: 12px;
    line-height: 1;
    text-align: center;
  }

  .c-cta-sp__ttl h2 {
    font-size: 14px;
    padding-left: 30px;
    letter-spacing: 0.04em;
  }

  .c-cta-sp__ttl h2:before {
    left: -3px;
    top: 0;
  }

  /* CTA本体 */
  .c-cta-sp {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0 0 40px;
    font-family: "Noto Sans JP", sans-serif;
  }

  .c-cta-sp__web,
  .c-cta-sp__tel {
    width: 50%;
    height: 85px;
    padding: 3px 5px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 0;
    line-height: 1.2;
  }

  .c-cta-sp__web {
    background: #c30d23;
    color: #fff !important;
  }

  .c-cta-sp__tel {
    border: 2px solid #1e235d;
    background: #fff;
    color: #1e235d !important;
  }

  /* CTA文字 */
  .c-cta-sp__small {
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
  }

  .c-cta-sp__main {
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1.2;
  }

  .c-cta-sp__web .c-cta-sp__main {
    font-size: 22px;
  }

  .c-cta-sp__tel .c-cta-sp__main {
    font-size: 20px;
  }

  .c-cta-sp__note {
    display: block;
    width: 100%;
    margin-top: 0;
    text-align: center;
    line-height: 1.15;
  }

  .c-cta-sp__web .c-cta-sp__note {
    font-size: 10px;
  }

  .c-cta-sp__tel .c-cta-sp__note {
    font-size: 9px;
    white-space: normal;
  }

  /* 固定CTA */
  .c-cta--fixed {
    padding: 0 !important;
  }

  .c-cta--fixed .c-cta-sp {
    margin-bottom: 0;
  }

  .c-cta--fixed .c-cta-sp__ttl {
    display: block;
    margin-bottom: 4px;
    padding: 5px 0;
    line-height: 1;
    text-align: center;
    background: none;
  }

  .c-cta--fixed .c-cta-sp__ttl h2 {
    font-size: 13px;
    padding-left: 26px;
    letter-spacing: 0.04em;
  }

  .c-cta--fixed .c-cta-sp__ttl h2:before {
    left: -3px;
    top: 0;
  }

}

/* 20260831 SP CTA変更 end */