@charset "UTF-8";
/* 惣菜予約フォーム 管理画面CSS */

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* 上の赤帯（キャンセルルール）を非表示にする */
.mypage-container .cancel-notice { display: none !important; }


/* カレンダー設定箇所 */
#calendar-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.calendar-month {
  width: calc(50% - 10px);
  border: 1px solid #ccc;
  padding: 10px;
  background: #fafafa;
}
.calendar-table {
  width: 100%;
  border-collapse: collapse;
}
.calendar-table th, .calendar-table td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 4px;
}
#calendar-nav {
  margin-bottom: 10px;
}


/* 惣菜予約フォーム フロントCSS */
.entry-header {
	display: none;
}

body.page,
.reservation-title-image,
body.page .reservation-title-image:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.reservation-title-image {
	width: 60%;
	height: auto;
	margin: auto;
}
.reservation-title-image img {
	width: 100%;
	height: auto;
}

#souzai-form {
  background: #fff;
  max-width: 480px;
  margin: 0px auto;
  border-radius: 16px;
}

#souzai-form h3 {
  font-size: 18px;
  color: #e45513;
	text-align: center;
	padding: 20px 0 10px 0;
}

#souzai-form select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#souzai-form ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
  margin: 0 0 16px;
}

#souzai-form li {
background: #f6f6f6;
  border-radius: 12px;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#souzai-form li img {
  width: 100%;
  height: 120px; /* 高さを固定 */
  object-fit: cover; /* 中央を切り取って表示 */
  border-radius: 6px;
  margin-bottom: 8px;
}


#souzai-form li input[type="number"] {
  width: 60px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: none;
  background: #eee;
  padding: 6px 0;
  margin: 6px 4px;
  border-radius: 6px;
}

#souzai-form .item-unit {
  color: #ff5500;
  font-weight: bold;
  font-size: 16px;
}

#souzai-form p.total-label {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin: 24px 0 4px;
}

#total_price {
  font-size: 28px;
  color: #00aaff;
  font-weight: bold;
}

#souzai-form input[type="text"],
#souzai-form input[type="email"],
#souzai-form input[type="tel"] {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}
#souzai-form textarea[name="note"]{
	width:100%;
	min-height:160px;
	padding:12px;
	box-sizing:border-box;
	resize:vertical;
}




#souzai-form button[type="submit"] {
  width: 100%;
  background: #e45513;
  color: #fff;
  font-size: 20px;
  padding: 14px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#souzai-form button[type="submit"]:hover {
  background: #cc2200;
}


/* 日付と時間セレクトボックスを横並びにする */
#souzai-form .datetime-wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

#souzai-form .datetime-wrap select {
  flex: 1;
  margin-bottom: 0;
}

/* 「1回のご予約上限金額は」の箇所 */
.max-total-notice {
	text-align: center;
	font-size: 15px;
	background-color: #FBE3D7;
	margin-bottom: 20px;
}

/* 受付設定のフリーワード箇所 */
.max-total-notice {
	text-align: center;
	font-size: 17px;
	background-color: #FBE3D7;
	margin-bottom: 30px;
	padding: 5px;
	border-radius: 5px;
}

/* 合計金額箇所 */
#souzai-form p.total-label {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin: 24px 0 4px;
}

/* 商品一覧箇所 */
#souzai-form .item-name {
  font-size: 16px;        /* 商品名のサイズ調整可 */
  color: #e45513;          /* 商品名の色指定 */
  font-weight: bold;
  margin-bottom: 4px;
}

#souzai-form .item-price {
  font-size: 14px;         /* 金額のサイズ調整可 */
  color: #333;
  margin-bottom: 6px;
}

#souzai-form .item-qty {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#souzai-form .item-qty input[type="number"] {
  width: 60px;
  font-size: 16px;
  text-align: center;
  border: none;
  background: #eee;
  padding: 6px 0;
  border-radius: 6px;
}

#souzai-form .item-unit {
  font-size: 14px;         /* ← ここで「個」や「本」などのサイズ調整 */
  color: #444;
}

#souzai-form .item-limit {
  font-size: 13px;
	background-color: #FF0000;
  color: #ffffff;
  margin-top: 4px;
	border-radius: 10px;
}



/* 予約内容確認の削除ボタン箇所 */
#souzai-form li.confirm-item button.remove-item-btn {
	all: unset; /* ← ブラウザのデフォルト装飾を完全にリセット */
	display: inline-block;
	background-color: #ccc; /* 薄グレー */
	color: #000; /* 黒文字 */
	border: none;
	padding: 6px 16px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	margin-top: 10px;
	transition: background-color 0.3s;
	text-align: center;
}
#souzai-form li.confirm-item button.remove-item-btn:hover {
	background-color: #bbb !important;
}




/* 予約番号で照会箇所 */
.reservation-check-wrapper {
  padding: 0px 20px 20px 20px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
	background: #f5f5f5;
	border-radius: 8px;
}

.resv-check-title {
  font-size: 24px;
	padding: 20px 0 10px 0;
}

.resv-check-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.resv-check-label {
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 8px;
}

.resv-check-row input[type="text"] {
  width: 320px;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.resv-check-btn {
  background: #0caff7;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 0 auto;
}

.resv-check-btn:hover {
  background: #008fcc;
}

.reservation-check h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.reservation-check input[type="text"] {
  width: calc(100% - 100px);
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.reservation-check input[type="submit"] {
  background: #444;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  margin-left: 8px;
  cursor: pointer;
}

/* 「予約する」と「確認する」共通箇所 */
.btn-size-large {
  font-size: 1.2em;
  padding: 15px 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 20px auto;
  font-weight: bold;
  border: none;
}

/* 予約するボタン（オレンジ） */
.reserve-btn {
  background: #f14500;
  color: #fff;
}

/* 確認するボタン（青） */
.resv-check-btn {
  background: #0caff7;
  color: #fff;
}

/* 画面遷移後に見た目を整える箇所 */
.reservation-result {
	width: 550px;
	height: auto;
    background: #fff;
    margin: auto;
    text-align: center;
}

.resv-thanks {
    font-size: 24px;
    color: #f4511e;
    font-weight: bold;
    margin-bottom: 20px;
}

.reservation-result p.resv-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
	text-align: justify;
    margin-bottom: 30px;
}

.resv-box {
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.resv-label {
  background-color: #838383;
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 18px;
	margin-bottom: 20px;
}

.resv-box span.reservation-id {
	display: block;
    font-size: 36px;
    font-weight: bold;
    color: #00aaff;
	padding-top: 10px;
}

.reservation-result p.resv-note {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
	text-align: justify;
}

/* ▼ 予約照会フォーム */
.reservation-complete-wrapper {
	width: 90%;
	height: auto;
    background: #ffffff;
    margin: auto;
}

.resv-check-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #3c3c3c;
}

.resv-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.resv-check-label {
    font-weight: bold;
    min-width: 100px;
}

.resv-check-btn {
    width: 100%;
    max-width: 200px;
    background: #00aaff;
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}


#souzai-form button[type="submit"].resv-check-btn {
  width: 100%;
  background: #00aaff;
  color: #fff;
  font-size: 20px;
  padding: 14px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#souzai-form button[type="submit"].resv-check-btn:hover {
  background: #e45513;
}


/* 予約内容確認箇所 */
.resv-lookup {
	max-width: 680px;
	background-color: #F9FFF7;
	padding: 10px;
	margin: auto;
	margin-bottom: 15px;
	border-radius: 5px;
}

.resv-lookup h3 {
	text-align: center;
}

.resv-item {
	font-size: 20px;
	background-color: #FBE3D7;
}

.resv-time {
	font-size: 20px;
	background-color: #FBE3D7;
}

.resv-total {
	font-size: 25px;
	padding-top: 20px;
}


/* 予約内容確認箇所-ボタンの色 */
#confirm-button {
    background-color: #8fc31f;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#confirm-button:hover {
    background-color: #79a91a; /* 少し暗めの色 */
}



/* 在庫ステータス全体 */
.stock-status {
  font-weight: bold;
  margin-top: 5px;
  font-size: 0.95em;
}

/* 在庫あり（緑） */
.stock-status.in-stock {
  color: #28a745;
}

/* 在庫僅少（オレンジ） */
.stock-status.low-stock {
  color: #ff9800;
}

/* 残り個数表示（赤） */
.stock-status.few-left {
  color: #e53935;
}

/* 在庫なし（グレー） */
.stock-status.out-of-stock {
  color: #999;
  text-decoration: line-through;
}






/* 日時未選択時に表示される警告 */
/* 警告バー */
#pickup-warning {
  display: none;
  background: #b30000;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 500px; /* スロットに幅を合わせる */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

#pickup-warning.show {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

#pickup-warning.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 500px;
  z-index: 9999;
  border-radius: 4px; /* ← 通常時と合わせておくと違和感が減る */
  transition: all 0.3s ease; /* ← 見た目が自然になる */
}

/* セレクトボックスのラップ */
.datetime-slot-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}





/* 合計金額オーバー時に表示される警告 */
/* 画面上部にふわっと出る警告 */
.souzai-error-banner-fixed {
  position: fixed;
  top: 0; /* 画面最上部に変更する場合は top: 0 */
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #b30000;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: bold;
  border: none; /* 枠線なしが一般的だが好みで残してもOK */
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  text-align: center;
}


/* 合計金額下に表示される合計金額超過表示箇所 */
#total_warning {
  text-align: center;
	background: #b30000;
	color: #ffffff !important;
	padding: 10px 20px;
}


/* 受付時間超過表示箇所 */
.souzai-error-banner-fixed {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #b30000;
  color: #ffffff;
  padding: 12px 20px;
  z-index: 9999;
  border-radius: 6px;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}



.member-form-container {
    max-width: 400px;
    margin: 30px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.member-form-container h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.member-form-container p {
    margin-bottom: 12px;
}

.member-form-container input[type="text"],
.member-form-container input[type="email"],
.member-form-container input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.member-form-container button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.member-register button {
    background-color: #4CAF50; /* 緑 */
}

.member-login button {
    background-color: #0073aa; /* 青 */
}


/* ▼ 共通フォームエリア */
form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    box-sizing: border-box;
}
form p {
    margin-bottom: 15px;
}

/* ▼ 会員登録・ログインフォーム枠 */
.souzai-login-box {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}
.souzai-login-box h3 {
    margin-bottom: 20px;
    font-size: 20px;
}
.souzai-login-box input {
    width: 100%; /* ← 90%をやめる */
    padding: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* ▼ ボタン */
.member-btn,
.btn-login,
a.btn-reserve {
    display: block;
    width: 100%; /* 幅を100%に統一 */
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    margin-top: 10px;
    box-sizing: border-box;
}
.btn-login { background: #0073aa; }
.btn-login:hover { background: #005177; }
a.btn-reserve { background: #4CAF50; }
a.btn-reserve:hover { background: #3d8e41; }
.member-btn.btn-register { background: #ff6600; } /* オレンジ */
.member-btn.btn-register:hover { background: #e65c00; }

/* ▼ 上部ログイン案内エリア */
.souzai-login-area {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
}
.souzai-login-text {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
.souzai-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}
.souzai-btn-login { background: #e00; }
.souzai-btn-mypage { background: #4CAF50; }
.souzai-btn-logout { background: #0073aa; }




.mypage-header .btn-area {
    display: flex;
    justify-content: center;
    gap: 10px; /* ボタン間のスペース */
    margin-top: 10px;
}

.mypage-header .btn-area a {
    flex: 1; /* 幅を均等に */
    max-width: 200px; /* 2つ並べるときの最大幅を制御 */
    text-align: center;
}




.member-error {
    background: #d00; color: #fff; font-weight: bold;
    padding: 12px; text-align: center;
    border-radius: 4px; margin-bottom: 20px;
}




/* ===== イベント選択ランディング ===== */
.room-event-landing{
  max-width: 760px;
  margin: 0 auto 32px;
}
.event-landing-title{
  margin: 0 0 8px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #e36f0a; /* 見出しオレンジ */
  letter-spacing: .02em;
}
.event-landing-lead{
  text-align: center;
  color: #333;
  margin: 0 0 20px;
}

/* カード1枚でも複数でもOK。1列で中央寄せに見えるよう幅を制限 */
.event-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* カード */
.event-card{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  overflow: hidden;
}

/* サムネ：周りに余白→内側だけ角丸に */
.event-thumb{
  padding: 18px 22px 0;
  background: #fff;
}
.event-thumb img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* 本文 */
.event-body{ padding: 16px 22px 22px; }
.event-title{
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #e36f0a; /* タイトルもオレンジ */
  margin: 14px 0 10px;
}

/* 日付列：バッジ風＋中央揃え。区切りのスラッシュはCSSで差し込む */
.event-dates{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.event-dates li{
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: .06em;
  color: #222;
  background: #fff;
}
.event-dates li + li{
  position: relative;
}


/* CTAボタン：予約ボタンと同じオレンジで大きめ */
.event-cta{
  display: block;
  width: min(250px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 16px 18px;
  border-radius: 12px;
  background: #e36f0a;   /* オレンジ */
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: transform .02s ease, opacity .2s ease;
}
.event-cta:hover{ opacity: .92; }
.event-cta:active{ transform: translateY(1px); }

/* 2枚以上ある場合はPCで2列に */
@media (min-width: 900px){
  .event-grid{
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-inline: auto;
  }
}





/* ===== 空き状況グリッド ===== */
.slot-grid-wrap{margin:18px 0 8px}
.slot-grid-title{
	text-align: center;
	margin:0 0 8px;
	font-size:16px;
	color:#333;
}

.slot-grid{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
}

.slot-grid table{
  border-collapse:separate;
  border-spacing:0;
  min-width:720px;
  width:100%;
  background:#fff;
  border:1px solid #c9b59a33;
  box-shadow:0 4px 16px rgba(0,0,0,.05);
  border-radius:12px;
  overflow:hidden;
}

.slot-grid th,
.slot-grid td{
  padding:12px 14px;
  text-align:center;
  border-right:1px solid #eae3da;
  border-bottom:1px solid #eae3da;
  font-weight:600;
}

.slot-grid th.date-col{
  white-space:nowrap;
  font-size:18px;
  color:#3a2d22;
  background:#fbf7f1;
}

.slot-grid th.time-col{
  background:#fbf7f1;
  color:#3a2d22;
}

.slot-grid tr:last-child td{ border-bottom:0 }
.slot-grid tr td:last-child,
.slot-grid tr th:last-child{ border-right:0 }

.slot-flag{
  display:inline-flex; align-items:center; justify-content:center;
  width:28px; height:28px; border-radius:50%;
  font-size:16px; line-height:1; user-select:none;
}

.slot-flag.ok{
  border:2px solid #29a6e6; color:#29a6e6; background:#fff;
  cursor:pointer; transition:transform .05s ease;
}
.slot-flag.ok:hover{ transform:scale(1.05) }
.slot-flag.ng{ color:#e63939; font-size:20px; }

.slot-flag.disabled{ color:#bbb } /* 休業やバッファ対象表示 */

.slot-cell{ min-width:86px }

/* クリック時に選択中をうっすら表示 */
.slot-flag.ok.active{ box-shadow:0 0 0 4px rgba(41,166,230,.15) inset }




/* ---- 予約ミニカレンダー ---- */
.slot-mini-cal { margin-top: 16px; border:1px solid #eee; border-radius:12px; overflow:hidden; background:#fff; }
.slot-mini-cal .cal-head { display:flex; align-items:center; justify-content:space-between; padding:10px 12px; border-bottom:1px solid #eee; }
.slot-mini-cal .cal-title { font-weight:700; }
.slot-mini-cal .cal-nav { display:flex; gap:8px; }
.slot-mini-cal .cal-nav button { border:1px solid #ddd; background:#fafafa; padding:6px 10px; border-radius:6px; cursor:pointer; }
.slot-mini-cal .cal-grid { display:grid; grid-template-columns: repeat(7, 1fr); }
.slot-mini-cal .dow { font-size:12px; color:#666; background:#fafafa; padding:6px 0; text-align:center; border-bottom:1px solid #eee; }
.slot-mini-cal .cell { min-height:64px; border-right:1px solid #f2f2f2; border-bottom:1px solid #f2f2f2; padding:6px 6px 8px; position:relative; }
.slot-mini-cal .cell:nth-child(7n) { border-right:none; }
.slot-mini-cal .day { font-size:13px; color:#333; }
.slot-mini-cal .badge { position:absolute; right:6px; bottom:6px; font-size:11px; padding:2px 6px; border-radius:9999px; background:#eee; color:#333; }
.slot-mini-cal .cell.today .day { color:#ff6a00; font-weight:700; }
.slot-mini-cal .cell.available { background:#fff; }
.slot-mini-cal .cell.available .badge { background:#e8f5e9; color:#1b5e20; }
.slot-mini-cal .cell.unavailable { background:#f9f9f9; color:#bbb; }
.slot-mini-cal .cell.unavailable .badge { background:#f2f2f2; color:#999; }
.slot-mini-cal .cell.holiday { background:#fff7f7; }
.slot-mini-cal .cell.holiday .day { color:#d32f2f; }


/* カレンダーの上下余白を少し確保 */
.event-calendar {
  margin-top: 16px;
}


.slot-grid-wrap { margin: 12px 0 20px; }
.slot-grid-title {
	font-size: 18px;
	margin: 0 0 8px;
	color: #e45513;
}

#slot-grid { min-height: 40px; }
.slot-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-grid-empty{
	text-align: center;
	color: #777;
	font-size: 14px;
}

.slot-chip {
  border: 1px solid #e5e5e5;
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.slot-chip:hover { background: #fafafa; }
.slot-chip.selected {
  border-color: #ff7f00;
  background: #ff7f00;
  color: #fff;
}


/* 行ブロック */
.slot-rows__block { margin: 12px 0 18px; }
.slot-rows__date {
  text-align: center;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}
/* 時間バッジ */
/* PC/共通 */
.slot-rows__times{ display:flex; flex-wrap:wrap; gap:10px 12px; justify-content:flex-start; } /* 左揃え */
.time-chip{
  display:inline-flex;              /* 文字の上下センター */
  align-items:center;               /* 文字の上下センター */
  justify-content:center;
  min-width:68px;
  height:38px;                      /* 固定高でズレ防止 */
  padding:0 12px;                   /* 上下の余白は 0 に */
  border-radius:999px;
  border:none;
  font-weight:700;
  cursor:pointer;
}
.time-chip.is-available{ background:#cfeeff; color:#0a3d62; }
.time-chip.is-full{ background:#d9d9d9; color:#555; cursor:not-allowed; }
.time-chip.is-active{ background:#ff8a00; color:#fff; border-color:#ff8a00; }
.time-chip.is-active:focus-visible{ outline:2px solid #ff8a00; outline-offset:2px; }





/* 通常ページでは空き状況一式を隠す */
.is-normal-page #slot-rows,
.is-normal-page .slot-rows__title,
.is-normal-page .slot-matrix-wrap,
.is-normal-page .slot-rows-area,
.is-normal-page .slot-grid-wrap {
  display: none !important;
}

/* バッジの見た目：選択中 */
.time-chip.is-active {
  background: #ff8a00;     /* オレンジ */
  border-color: #ff8a00;
  color: #fff;
}



/* 通常ページは空き状況を出さない */
.is-normal-page #slot-rows,
.is-normal-page .slot-rows__title,
.is-normal-page .slot-matrix-wrap,
.is-normal-page .slot-rows-area {
  display: none !important;
}

/* 時間チップの選択中表示 */
.time-chip.is-active {
  background: #ff8a00;
  border-color: #ff8a00;
  color: #fff;
}

/* キーボード操作時も分かりやすく */
.time-chip.is-active:focus-visible {
  outline: 2px solid #ff8a00;
  outline-offset: 2px;
}