.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;
}








/*各ショップの配送料金について*/
.shop-info{
  text-align: center;
  padding: 10px;
  border: #0052a3 solid 3px;
  background-color: rgb(243, 243, 255);
 }
.shop-name{
  font-size: 1.2em;
  font-weight:bold;
}



/* ボタン本体 */
.shop-shipping-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0066cc; /* メインの青色 */
  color: #ffffff !important;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 16px 12px 24px;
  border-radius: 8px;
  width: 100%;
  max-width: 380px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* 右側の丸型矢印アイコン */
.shop-shipping-btn .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e6f2ff; /* 薄い青の丸背景 */
  color: #0066cc;            /* 青い矢印 */
  font-size: 14px;
  transition: all 0.3s ease;
  margin-left: 12px;
  flex-shrink: 0;           /* アイコンがつぶれるのを防止 */
}

/* ホバー（マウスオーバー）時の動き */
.shop-shipping-btn:hover {
  background-color: #0052a3; /* ボタン全体を少し濃い青に */
}

.shop-shipping-btn:hover .btn-arrow {
  background-color: #ffffff; /* アイコンの背景を白に反転 */
  color: #0052a3;            /* 矢印を濃い青に */
  transform: translateX(5px); /* 右に5px移動 */
}

/* スマホ表示対応 */
@media (max-width: 600px) {
  .shop-shipping-btn {
    max-width: 100%;
    font-size: 0.95rem;
    padding: 10px 14px 10px 20px;
  }
}