/* ================================================================
   taxonomy-prefecture.php 専用スタイル
   ================================================================ */

/* ------------------------------
   全体レイアウト
-------------------------------- */
.store-listing-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

main#main {
  padding: 0;
}

/* ------------------------------
   ページヘッダー
-------------------------------- */
.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  border-bottom: 3px solid #ff008c;
  padding-bottom: 0.75rem;
}

.page-meta-info {
  font-size: 0.85rem;
  color: #666;
}

/* ------------------------------
   イントロダクション
-------------------------------- */
.intro-section {
  background: linear-gradient(135deg, #f8f9fa, #fff5f7);
  border-left: 4px solid #ff008c;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.intro-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

/* ------------------------------
   アンカーボタン
-------------------------------- */
.anchor-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.anchor-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff008c, #ff1493);
  color: #fff;
  border-radius: 24px;
  padding: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 0, 140, 0.3);
  transition: all 0.3s;
}

.anchor-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 0, 140, 0.4);
  color: #fff;
}

/* ------------------------------
   キャンペーンボタン
-------------------------------- */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
  75% {
    transform: translateX(-3px);
  }
}

.rakuten-campaign-button {
  display: block;
  width: 90%;
  margin: 0 auto 1.5rem;
  background: #ff008c;
  color: #fff;
  text-align: center;
  padding: 0.75rem 0;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: bold;
  animation: shake 2s infinite;
}

.rakuten-campaign-button:hover {
  transform: scale(1.03);
  color: #fff;
}

/* ------------------------------
   店舗一覧
-------------------------------- */
.stores-section h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  border-left: 4px solid #ff008c;
  padding-left: 0.75rem;
}

/* 修正後 */
.chain-title {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  border-left: 4px solid #ff008c;
  padding-left: 0.75rem;
}
.store-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
/* 修正後 */
.shop-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.store-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ddd;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

/* 修正後（HTMLに合わせる） */
.shop-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ddd;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.shop-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.store-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.store-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.store-details p {
  font-size: 0.95rem;
  margin: 0.4rem 0;
}

.new-label {
  background: #ff008c;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  margin-left: 0.5rem;
}

/* ------------------------------
   店舗アクション
-------------------------------- */
.store-actions {
  margin-top: 1rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-actions a {
  font-weight: 600;
  color: #0073aa;
  text-decoration: none;
}

.store-actions a:hover {
  text-decoration: underline;
}

/* ------------------------------
   FAQ
-------------------------------- */
.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-label {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.4rem;
}

.faq-q {
  background: #bf0000;
}
.faq-a {
  background: #ff008c;
}

.faq-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ------------------------------
   市区郡一覧
-------------------------------- */
.prefecture-cities-section {
  margin: 3rem 0;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.2rem;
}

.city-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.city-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.city-item.no-stores {
  opacity: 0.6;
}

/* ------------------------------
   関連リンク
-------------------------------- */
.related-links {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
}

.related-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}

.related-links a {
  color: #007cba;
  font-weight: 600;
}

/* ------------------------------
   レスポンシブ
-------------------------------- */
@media (max-width: 768px) {
  .anchor-buttons {
    flex-direction: column;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
  .store-list {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   city-archive-container / page-title 補強
   ================================================================ */

.city-archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.page-title .subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #777;
  margin-top: 0.5rem;
}

/* ================================================================
   キャンペーンCTAボックス
   ================================================================ */

.campaign-cta-box {
  background: #fff5f9;
  border: 2px dashed #ff008c;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.shop_cp_text {
  color: #d4006a;
  font-weight: 600;
}

.small-note {
  font-size: 0.9rem;
}

/* ================================================================
   店舗情報 dl デザイン
   ================================================================ */

.store-info-list {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
}

.store-info-list dt {
  font-weight: 700;
  color: #444;
}

.store-info-list dd {
  margin: 0;
  color: #555;
}

.map-link-text {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  color: #0073aa;
  text-decoration: none;
}

.map-link-text:hover {
  text-decoration: underline;
}

/* ================================================================
   campaign-summary セクション
   ================================================================ */

.campaign-summary-section {
  margin: 4rem 0;
  padding: 2rem 1.5rem;
  background: #f9fafb;
  border-radius: 20px;
}

.campaign-summary-section h2 {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.summary-intro p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.marker-yellow {
  background: linear-gradient(transparent 60%, #fff3a0 60%);
  font-weight: 700;
}

/* ================================================================
   キャンペーンBOX
   ================================================================ */

.campaign-pickup-list {
  display: grid;
  gap: 1.5rem;
}

.campaign-box {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
}

.campaign-box.recommend {
  border: 2px solid #ff008c;
}

.campaign-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  background: #ff008c;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.campaign-badge.sub {
  background: #777;
}

.btn-campaign-primary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #ff008c, #ff1493);
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  text-decoration: none;
}

.btn-campaign-primary:hover {
  opacity: 0.9;
  color: #fff;
}

.note-small {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
}

/* ================================================================
   内部リンクカード
   ================================================================ */

.internal-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  margin-top: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.internal-link-card:hover {
  transform: translateY(-3px);
}

.internal-link-card .icon {
  font-size: 1.8rem;
}

.internal-link-card .arrow {
  margin-left: auto;
  font-size: 1.4rem;
}

/* ================================================================
   通信エリア（local-info）
   ================================================================ */

.local-info {
  margin: 4rem 0;
}

.area-content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  line-height: 1.9;
}

.area-content h2,
.area-content h3 {
  margin-top: 2rem;
}

.area-content hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid #eee;
}

/* ================================================================
   パンくず
   ================================================================ */

.breadcrumb {
  margin: 3rem 0 1rem;
  font-size: 0.85rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.breadcrumb li::after {
  content: "›";
  margin-left: 0.5rem;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: #0073aa;
  text-decoration: none;
}

/* ================================================================
   モバイル調整
   ================================================================ */

@media (max-width: 768px) {
  .page-title {
    font-size: 1.5rem;
  }

  .store-info-list {
    grid-template-columns: 1fr;
  }

  .campaign-summary-section {
    padding: 1.5rem 1rem;
  }
}

/* ================================================================
   0店舗時：no-stores-found / 近隣エリア提案
   ================================================================ */

.no-stores-found {
  margin: 3rem 0;
}

/* ------------------------------
   近隣エリア全体
-------------------------------- */

.nearby-suggestions {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 16px;
}

.nearby-suggestions h3 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid #ff008c;
  padding-left: 0.75rem;
}

/* ------------------------------
   市区郡リスト
-------------------------------- */

.other-cities-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}

.other-cities-list li {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.other-cities-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* ------------------------------
   リンクデザイン
-------------------------------- */

.other-cities-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

.other-cities-list a:hover {
  color: #ff008c;
}

/* 店舗数 */
.other-cities-list .count {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #ff008c;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
}

/* ------------------------------
   モバイル調整
-------------------------------- */

@media (max-width: 768px) {
  .other-cities-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   サポート情報セクション（support-info）
   ================================================================ */

.support-info {
  background: linear-gradient(135deg, #fff5f9, #f9fafb);
  border: 2px solid #ff008c;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.support-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1rem;
}

.support-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.btn-support {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #ff008c, #ff1493);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 0, 140, 0.3);
  transition: all 0.3s;
}

.btn-support:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 0, 140, 0.4);
  color: #fff;
}

@media (max-width: 768px) {
  .support-info {
    padding: 1.5rem 1rem;
  }

  .support-info h3 {
    font-size: 1.1rem;
  }

  .btn-support {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ================================================================
   no-store-campaign 専用スタイル
   ================================================================ */

.campaign-summary-section.no-store-campaign .campaign-pickup-list {
  margin-bottom: 2rem;
}

.campaign-summary-section.no-store-campaign .info-box {
  background: linear-gradient(135deg, #f0f7ff, #fff5f7);
  border: 1px solid #b3e5fc;
}

.merit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.merit-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.merit-list strong {
  color: #ff008c;
}

/* ================================================================
   prefecture-archive-container 用スタイル
   ================================================================ */

.prefecture-archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  margin: 1rem 0;
}

.back-to-parent {
  margin: 1.5rem 0;
}

.back-to-parent a {
  color: #0073aa;
  text-decoration: none;
  font-weight: 600;
}

.back-to-parent a:hover {
  text-decoration: underline;
}

/* ================================================================
   ガイドリンクボックス
   ================================================================ */

.guide-link-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #ff008c;
}

.guide-link-box.pillar-main {
  background: linear-gradient(135deg, #f8f9fa, #fff5f7);
}

.guide-link-box a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.guide-link-box .icon {
  font-size: 1.5rem;
}

.guide-link-box strong {
  color: #ff008c;
  font-weight: 700;
}

.internal-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ================================================================
   キャンペーンバナー
   ================================================================ */

.campaign-banner {
  background: linear-gradient(135deg, #fff5f7, #f9fafb);
  border: 2px solid #ff008c;
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.campaign-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.campaign-text .highlight {
  color: #ff008c;
  background: linear-gradient(transparent 60%, #fff3a0 60%);
}

.campaign-link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, #ff008c, #ff1493);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 24px;
  transition: all 0.3s;
}

.campaign-link:hover {
  transform: translateY(-2px);
  color: #fff;
}

.campaign-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 1rem;
}

/* ================================================================
   目次（page-toc）
   ================================================================ */

.page-toc {
  background: #f9fafb;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.page-toc h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.page-toc ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.page-toc li {
  background: #fff;
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.page-toc li:hover {
  border-color: #ff008c;
  box-shadow: 0 4px 12px rgba(255, 0, 140, 0.1);
}

.page-toc a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

.page-toc a:hover {
  color: #ff008c;
}

/* ================================================================
   店舗リストコンテナ
   ================================================================ */

.shop-list-container {
  margin: 3rem 0;
}

/* ================================================================
   チェーンセクション
   ================================================================ */

.chain-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.chain-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 3px solid #ff008c;
  padding-bottom: 0.75rem;
}

.chain-title .count {
  font-size: 1rem;
  color: #666;
  margin-left: auto;
}

.chain-guide-link {
  background: linear-gradient(135deg, #f0f7ff, #fff5f7);
  border-left: 4px solid #0073aa;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.chain-guide-link a {
  color: #0073aa;
  text-decoration: none;
  font-weight: 600;
}

.chain-guide-link a:hover {
  text-decoration: underline;
}

/* ================================================================
   アコーディオン（store-accordion）
   ================================================================ */

.store-accordion {
  margin: 1.5rem 0;
}

.accordion-trigger {
  display: block;
  padding: 1rem;
  background: #f9fafb;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  transition: all 0.3s;
}

.accordion-trigger:hover {
  background: #f0f0f0;
}

details[open] .accordion-trigger {
  background: #ff008c;
  color: #fff;
  border-color: #ff008c;
}

.accordion-content {
  padding: 1.5rem 0;
}

/* ================================================================
   ショップリスト（shop-list）
   ================================================================ */

.shop-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.shop-list li {
  list-style: none;
}

/* ================================================================
   ショップアイテム（shop-item）
   ================================================================ */

.shop-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.shop-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.shop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
  font-weight: 600;
}

.service-badge {
  background: #e8f4f8;
  color: #0073aa;
}

.shop-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.shop-title a {
  color: #333;
  text-decoration: none;
}

.shop-title a:hover {
  color: #ff008c;
  text-decoration: underline;
}

.shop-meta {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-meta .address,
.shop-meta .hours {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.map-link {
  text-align: center;
}

.map-link a {
  display: inline-block;
  color: #0073aa;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 1px solid #0073aa;
  border-radius: 8px;
  transition: all 0.3s;
}

.map-link a:hover {
  background: #0073aa;
  color: #fff;
}

/* ================================================================
   結果なし
   ================================================================ */

.no-results {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
  color: #666;
}

/* ================================================================
   市区町村セクション
   ================================================================ */

.city-list-container {
  margin: 3rem 0;
}

.city-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ================================================================
   FAQ セクション
   ================================================================ */

.faq-section {
  margin: 3rem 0;
}

.faq-section h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid #ff008c;
  padding-left: 0.75rem;
}

.faq-list {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
}

.faq-question,
.faq-answer {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  align-items: flex-start;
}

.faq-question {
  background: #f8f9fa;
  border-bottom: 1px solid #ddd;
}

.faq-answer {
  background: #fff;
}

.faq-label {
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 40px;
  text-align: center;
  padding: 0.25rem 0;
}

.faq-question .faq-label {
  color: #bf0000;
}

.faq-answer .faq-label {
  color: #ff008c;
}

.faq-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

/* ================================================================
   近隣都道府県セクション
   ================================================================ */

.nearby-prefectures {
  margin: 3rem 0;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
}

.nearby-prefectures h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.nearby-prefectures ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.nearby-prefectures li {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s;
}

.nearby-prefectures li:hover {
  border-color: #ff008c;
  box-shadow: 0 4px 12px rgba(255, 0, 140, 0.1);
}

.nearby-prefectures a {
  display: block;
  padding: 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
}

.nearby-prefectures a:hover {
  color: #ff008c;
}

/* ================================================================
   レスポンシブ調整
   ================================================================ */

@media (max-width: 768px) {
  .campaign-banner {
    padding: 1.5rem 1rem;
  }

  .page-toc ul {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .shop-list {
    grid-template-columns: 1fr;
  }

  .chain-title {
    font-size: 1.2rem;
  }

  .nearby-prefectures ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================================
   prefecture archive 共通レイアウト
   ================================================================ */

.prefecture-archive-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ------------------------------
   戻るリンク
-------------------------------- */

.back-to-parent {
  margin: 1.5rem 0;
}

.back-to-parent a {
  font-weight: 600;
  text-decoration: none;
  color: #0073aa;
}

/* ------------------------------
   ガイドリンク（ピラー）
-------------------------------- */

.guide-link-box {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 1.25rem;
  margin: 2rem 0;
}

.guide-link-box a {
  font-weight: 700;
  text-decoration: none;
  color: #333;
}

/* ================================================================
   キャンペーンバナー（prefecture）
   ================================================================ */

.campaign-banner {
  background: linear-gradient(135deg, #fff0f6, #fff);
  border: 2px solid #ff008c;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  margin: 2.5rem 0;
}

.campaign-text {
  font-size: 1.1rem;
  font-weight: 700;
}

.campaign-text .highlight {
  color: #ff008c;
}

.campaign-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ff008c;
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  text-decoration: none;
}

.campaign-note {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: #666;
}

/* ================================================================
   目次（page-toc）
   ================================================================ */

.page-toc {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 16px;
  margin: 3rem 0;
}

.page-toc ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.page-toc a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

/* ================================================================
   チェーン別セクション
   ================================================================ */

.chain-section {
  margin: 4rem 0;
}

.chain-title {
  font-size: 1.5rem;
  border-left: 4px solid #ff008c;
  padding-left: 0.75rem;
  margin-bottom: 1rem;
}

.chain-title .count {
  font-size: 0.9rem;
  color: #666;
}

.chain-guide-link {
  margin-bottom: 1rem;
}

.chain-guide-link a {
  font-weight: 600;
  color: #0073aa;
  text-decoration: none;
}

/* ------------------------------
   サービスバッジ
-------------------------------- */

.shop-badges {
  margin-bottom: 0.5rem;
}

.service-badge {
  background: #ff008c;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  margin-right: 0.3rem;
}

/* ================================================================
   レスポンシブ
   ================================================================ */

@media (max-width: 768px) {
  .shop-list {
    grid-template-columns: 1fr;
  }
}

.faq-question .faq-label {
  background: #bf0000;
}

.faq-answer .faq-label {
  background: #ff008c;
}

.page-toc h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.store-accordion {
  margin-top: 1rem;
}

.accordion-trigger {
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.accordion-content {
  margin-top: 1rem;
}

/* ================================================================
   「もっと見る」ボタンとアイテム隠蔽
   ================================================================ */
.show-more-button-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  padding: 1rem 0;
}

.show-more-button {
  background: linear-gradient(135deg, #ff008c 0%, #ff1493 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 0, 140, 0.3);
  text-decoration: none;
}

.show-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 0, 140, 0.4);
  background: linear-gradient(135deg, #ff1493 0%, #ff008c 100%);
}

.show-more-button:active {
  transform: translateY(0);
}

.show-more-button.expanded {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff008c 100%);
}

.shop-item-hidden {
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ================================================================
   都道府県内の市区郡一覧セクション
   ================================================================ */
.prefecture-cities-section {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
}

.prefecture-cities-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.city-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.city-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.city-item.no-stores {
  background: #f8f9fa;
  border-color: #dee2e6;
  opacity: 0.7;
}

.city-item.no-stores:hover {
  transform: none;
  box-shadow: none;
}

.city-link {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.city-link:hover {
  text-decoration: none;
}

.city-item h3 {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #333;
  font-weight: 600;
  float: left;
  margin-right: 15px;
}

.city-item .store-count {
  display: inline-block;
  background: #bf0000;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.no-store-text {
  display: inline-block;
  background: #6c757d;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
}

.city-description {
  font-size: 14px;
  color: #666;
  margin: 8px 0 0 0;
  line-height: 1.4;
}

.troubleshooting-section {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.troubleshooting-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #333;
}

.troubleshooting-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
}

.troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.troubleshooting-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.troubleshooting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #333;
}

.card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-block;
  color: #bf0000;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.card-link:hover {
  color: #8b0000;
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .troubleshooting-section {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .troubleshooting-section h2 {
    font-size: 1.4rem;
  }

  .troubleshooting-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .troubleshooting-card {
    padding: 1.25rem;
  }
}

/* ================================================================
   現在開催中キャンペーン（campaign-current-section）
   ================================================================ */

.campaign-current-section {
  margin: 4rem 0;
  padding: 2.5rem 2rem;
  background: #f9fafb;
  border-radius: 20px;
}

.campaign-current-section h2 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 3px solid #ff008c;
  padding-bottom: 0.75rem;
}

.campaign-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* ------------------------------
   ブロック単位
-------------------------------- */

.campaign-block {
  margin-bottom: 3rem;
}

.campaign-block h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ff008c;
  padding-left: 0.75rem;
  color: #333;
}

/* ------------------------------
   メインカード（紹介キャンペーン）
-------------------------------- */

.campaign-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid #ddd;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.campaign-card.highlight-card {
  border: 2px solid #ff008c;
  background: linear-gradient(135deg, #fff5f9, #ffffff);
}

.campaign-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

/* ------------------------------
   メタ情報リスト
-------------------------------- */

.campaign-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #555;
}

.campaign-meta strong {
  color: #333;
}

/* ------------------------------
   CTAバナーエリア
-------------------------------- */

.campaign-cta-box {
  margin: 2rem 0;
}

.campaign-cta-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #d4006a;
  margin-bottom: 0.75rem;
}

.campaign-banner-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(255, 0, 140, 0.2);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.campaign-banner-image:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 0, 140, 0.3);
}

/* ------------------------------
   ポイント表ブロック
-------------------------------- */

.campaign-table-box {
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #eee;
}

.campaign-table-box .table-intro {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #555;
}

/* 既存 .points-table を拡張 */
.campaign-current-section .points-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.campaign-current-section .points-table th,
.campaign-current-section .points-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.campaign-current-section .points-table thead th {
  background: #fff0f6;
  color: #333;
  font-weight: 700;
}

.campaign-current-section .points-table tbody tr.highlight {
  background: #fff5f9;
}

.campaign-current-section .points-table .points {
  font-weight: 700;
  color: #ff008c;
}

/* ------------------------------
   キャンペーン一覧（カード型）
-------------------------------- */

.campaign-list {
  display: grid;
  gap: 1.25rem;
}

.campaign-item {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.campaign-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* ------------------------------
   詳細リンク（CTA）
-------------------------------- */

.campaign-detail-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: #0073aa;
  text-decoration: none;
  font-size: 0.9rem;
}

.campaign-detail-link:hover {
  text-decoration: underline;
  color: #005f8d;
}

/* ------------------------------
   注意文
-------------------------------- */

.campaign-note {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  background: #fff5f9;
  border-left: 4px solid #ff008c;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.75rem;
}

/* ------------------------------
   レスポンシブ
-------------------------------- */

@media (max-width: 768px) {
  .campaign-current-section {
    padding: 2rem 1.25rem;
    margin: 3rem 0;
  }

  .campaign-current-section h2 {
    font-size: 1.4rem;
  }

  .campaign-block h3 {
    font-size: 1.15rem;
  }

  .campaign-card {
    padding: 1.5rem 1.25rem;
  }

  .campaign-item {
    padding: 1.25rem;
  }

  .campaign-current-section .points-table {
    font-size: 0.8rem;
  }
}

/* エリアから探すリンク（目立たせる） */
.area-search {
  padding: 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0 2rem 0;
  text-align: center;
}

.area-search-link {
  display: inline-block;
  padding: 1rem 2rem;
  background: #ffffff;
  color: white;
  text-decoration: none;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(191, 0, 0, 0.3);
  border: 2px solid #bf0000;
}

.area-search-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(191, 0, 0, 0.4);
}

.area-search-link:active {
  transform: translateY(-1px);
}
