
/* 左ナビ店舗情報 */
.business-hours-container {
  text-align: center;
  font-family: sans-serif; /* 見やすいフォントを指定 */
}

.business-hours {
  color: #c60001; 
  font-weight: bold;
  margin-bottom: 8px;
}

.note {
  font-size: 0.8em;
  line-height: 1.5; /* 行間を調整して読みやすくする */
  text-align: left;
}

.caution {
  color: red;
  font-size: 0.7em; 
  margin-bottom: 16px;

}


/* 画面下　お買い物のご案内 */
.shopping-guide-container {
  width: 100%;
}

.shopping-guide-table {
  width: 100%;
  border: 0;
  text-align: left;
  border-collapse: collapse; /* tableのセル間の隙間をなくす */
}

.shopping-guide-table th {
  vertical-align: top;
  padding: 10px; /* セルの内側の余白 */
  font-weight: normal;
}

.guide-item {
  width: 50%
}

.spacer {
  width: 50px;
}

.guide-headline {
  background-color: #007a6a !important;
  color: #ffffff !important;
  text-align: center;
  margin: 0;
  padding: 10px;
}

.guide-sub-headline {
  border: solid 1px #007a6a;
  text-align: center;
  color: #007a6a !important;
  background-color: #ffffff !important;
  margin: 0;
  padding: 10px;
}

.highlight {
  color: red !important;
  font-weight: bold;
}

.guide-link {
  text-decoration: underline !important;
  color: #007a6a !important; /* リンクの色を統一 */
}

