@charset "UTF-8";
/* ============================================
   乗合・コミュニティバスページ専用スタイル
   ============================================ */
.bus-section {
  background: #fff;
  padding: 60px 0;
}
.bus-section-alt {
  background: #def7ff;
}
.bus-section-alt .bus-category-title {
  background: #5fb79e;
}

.bus-category {
  width: 100%;
}

.bus-category-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  padding: 16px 24px;
  background: #5fb79e;
  margin-bottom: 40px;
  border-radius: 4px;
}

.bus-intro {
  margin-bottom: 40px;
}

.bus-start-date {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.bus-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}

.bus-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.bus-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bus-image {
  flex: 0 0 448px;
}
.bus-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #e0e0e0;
}

.bus-image-caption {
  font-size: 16px;
  color: #666;
  text-align: center;
  margin-top: 12px;
}

.bus-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: start;
}
.bus-details dt {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  grid-column: 1;
}
.bus-details dd {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  margin-left: 0;
  grid-column: 2;
}

.bus-schedule-info {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 16px;
}

.bus-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bus-pdf-link,
.bus-external-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d32f2f;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.3s;
  width: -moz-fit-content;
  width: fit-content;
}
.bus-pdf-link svg,
.bus-external-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.bus-pdf-link:hover,
.bus-external-link:hover {
  opacity: 0.7;
}

.bus-external-link {
  color: #036789;
}

@media (max-width: 1000px) {
  .bus-section {
    padding: 8vw 0;
  }
  .bus-category-title {
    font-size: 5.87vw;
    padding: 3.2vw 4vw;
    margin-bottom: 5.33vw;
  }
  .bus-intro {
    margin-bottom: 5.33vw;
  }
  .bus-start-date {
    font-size: 4.27vw;
    margin-bottom: 2.67vw;
  }
  .bus-description {
    font-size: 4.27vw;
  }
  .bus-content {
    flex-direction: column;
    gap: 5.33vw;
  }
  .bus-info {
    gap: 5.33vw;
  }
  .bus-image {
    flex: 0 0 auto;
    width: 100%;
  }
  .bus-image img {
    width: 100%;
  }
  .bus-image-caption {
    font-size: 3.73vw;
    margin-top: 2.67vw;
  }
  .bus-details dt {
    font-size: 4.27vw;
    margin: 0;
  }
  .bus-details dd {
    font-size: 4.27vw;
  }
  .bus-schedule-info {
    font-size: 4.27vw;
  }
  .bus-links {
    gap: 3.2vw;
  }
  .bus-pdf-link,
  .bus-external-link {
    font-size: 4.27vw;
  }
  .bus-pdf-link svg,
  .bus-external-link svg {
    width: 4.8vw;
    height: 4.8vw;
  }
}/*# sourceMappingURL=bus.css.map */