/* sidebar 無効 */
.bs-sub-contents {
  display: none !important;
}

#MainImage {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================================
   北設楽郡の公共交通情報
========================================= */
.transport-info {
  margin: 0 0 48px;
}

.transport-info h2 {
  margin: 0 0 24px;
}

/* 概要部分 */
.transport-intro {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 0 0 28px;
}

.transport-intro-map {
  flex: 0 0 180px;
}

.transport-intro-map img {
  max-width: 100%;
  height: auto;
  display: block;
}

.transport-intro-text {
  flex: 1 1 auto;
}

.transport-intro-text p {
  margin: 0 0 12px;
  line-height: 1.9;
}

/* 交通手段カード */
.transport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 20px 0 32px;
}

.transport-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 22px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.transport-card h3 {
  margin: 0 0 12px;
  padding-left: 10px;
  border-left: 4px solid #d97a17;
  font-size: 1.4rem;
  line-height: 1.4;
}

.transport-card p {
  margin: 0 0 16px;
  line-height: 1.8;
}

/* バスは主役なので少しだけ強調 */
.transport-card-bus {
  border-color: #e7b277;
  box-shadow: 0 3px 12px rgba(217, 122, 23, 0.12);
}

/* 小リンク一覧 */
.transport-link-list {
  margin: 0 0 16px 1.2em;
  padding: 0;
}

.transport-link-list li {
  margin: 0 0 8px;
}

.transport-link-list a {
  text-decoration: underline;
}

.transport-card-links {
  margin-top: 12px;
}

/* 主要導線ボタン群 */
.transport-main-links {
  margin-top: 8px;
}

/* =========================================
   レスポンシブ
========================================= */
@media screen and (max-width: 900px) {
  .transport-cards {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .transport-intro {
    display: block;
  }

  .transport-intro-map {
    margin: 0 0 16px;
    max-width: 180px;
  }
}

/* スポット情報 */
.spot-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 24px 0 40px;
}

.spot-card {
  background: #ffffff;
  border-radius: 8px; 
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
  overflow: hidden;
  transition: 0.2s;
}
.spot-cards {
  background: #f7f7f7;
  padding: 24px;
  border-radius: 8px;
}

.spot-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.spot-card img {
  width: 100%;
  height: 220px;
  object-position: center; 
  object-fit: cover;
  display: block;
}

.spot-card-body {
  padding: 16px;
}

.spot-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  border-left: 4px solid #d97917;
  padding-left: 8px;
}

.spot-card-body p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.spot-link {
  display: inline-block;
  padding: 8px 14px;
  background: #d97917;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .spot-cards {
    grid-template-columns: 1fr;
  }

  .spot-card img {
    height: 200px;
  }
}