.guide-container {
  max-width: 600px;
  margin: 0 auto;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333333;
  line-height: 1.6;
  padding: 15px;
  box-sizing: border-box;
}
















.coment-content{
   background-color: #f9f9f9;
  border-radius: 4px;
  padding: 15px;
 /* margin: 0 16px 20px 16px;*/
 margin-bottom: 20px; 
}









/* アラートエリア（重要なお知らせ） */
.alert-box {
  background-color: #fff3f3;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
.alert-title {
  color: #d90000;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.alert-list {
  margin: 0;
  padding-left: 20px;
  font-weight: bold;
}
.alert-list li {
  margin-bottom: 5px;
}

/* 見出し（共通） */
.section-title {
  font-size: 1.1em;
  font-weight: bold;
  border-left: 4px solid #0066cc;
  padding-left: 10px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0066cc;
}

/* テーブル（共通） */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.info-table th, 
.info-table td {
  border: 1px solid #e0e0e0;
  padding: 10px;
  text-align: left;
  font-size: 0.95em;
}
.info-table th {
  background-color: #f8f9fa;
  width: 30%;
  white-space: nowrap;
}

/* 補足テキスト・注記 */
.note-text {
  font-size: 0.85em;
  color: #666666;
  margin-top: 5px;
}

/* 店舗カード（リンク付き共通カード） */
a.shop-card {
  text-decoration: none;
  display: block;
  color: inherit;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
a.shop-card:hover {
  background-color: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}
.shop-card {
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 15px;
}
.shop-name {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 8px;
  color: #0066cc;
}
.shop-info-item {
  font-size: 0.95em;
  margin-bottom: 4px;
}
.shop-info-item:last-child {
  margin-bottom: 0;
}
.shop-info-item a {
  color: #0066cc;
  text-decoration: underline;
}
