@charset "UTF-8";
/* ============================================
   タクシー・貸切バスページ専用スタイル
   ============================================ */
h2.content-header {
  font-size: 32px;
  display: inline-block;
  padding-bottom: 60px;
}

.vehicle-info-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #036789;
  font-size: 20px;
  font-weight: 700;
  transition: opacity 0.3s;
  text-decoration: underline;
}
.vehicle-info-link:hover {
  opacity: 0.7;
}

.vehicle-section {
  background: #fff;
  padding: 0;
}
.vehicle-section-alt {
  background: #def7ff;
}
.vehicle-section-alt .vehicle-category-title {
  background: #5fb79e;
}

.vehicle-category {
  width: 100%;
  scroll-margin-top: 120px;
}

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

.vehicle-item {
  margin-bottom: 60px;
}
.vehicle-item:last-child {
  margin-bottom: 0;
}

.vehicle-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}

.vehicle-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 16px;
}

.vehicle-image-wrapper {
  width: 100%;
  aspect-ratio: 313.7463/180.578;
  overflow: hidden;
  border-radius: 8px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.vehicle-specs {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-top: 8px;
}

.fare-link-wrapper {
  margin-top: 40px;
  text-align: left;
}

.fare-link {
  display: inline-block;
  color: #036789;
  font-size: 24px;
  text-decoration: underline;
  transition: opacity 0.3s;
  font-weight: bold;
}
.fare-link:hover {
  opacity: 0.7;
}

.vehicle-contact-section {
  background: #fff;
  padding: 0;
  border-top: 1px solid #8b8b8b;
}
.vehicle-contact-section.vehicle-section-alt {
  background: #def7ff;
}

.vehicle-contact-box {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-contact-title {
  font-size: 28px;
  font-weight: 700;
  color: #036789;
  margin-bottom: 24px;
}

.vehicle-contact-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}

@media (max-width: 1000px) {
  h2.content-header {
    font-size: 6vw;
    display: inline-block;
    padding-bottom: 8vw;
  }
  .vehicle-info-link-section {
    padding: 5.33vw 0 2.67vw;
  }
  .vehicle-info-link {
    font-size: 4.27vw;
    gap: 2.67vw;
  }
  .vehicle-info-link svg {
    width: 5.33vw;
    height: 5.33vw;
  }
  .vehicle-section {
    padding: 8vw 0;
  }
  .vehicle-category-title {
    font-size: 5.87vw;
    padding: 3.2vw 4vw;
    margin-bottom: 5.33vw;
  }
  .vehicle-item {
    margin-bottom: 8vw;
  }
  .vehicle-name {
    font-size: 4.8vw;
    margin-bottom: 4vw;
    line-height: 1.6;
  }
  .vehicle-images {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
  .vehicle-specs {
    font-size: 4vw;
  }
  .fare-link-wrapper {
    margin-top: 5.33vw;
  }
  .fare-link {
    font-size: 6vw;
  }
  .vehicle-contact-section {
    padding: 8vw 0;
  }
  .vehicle-contact-box {
    padding: 5.33vw;
  }
  .vehicle-contact-title {
    font-size: 5.87vw;
    margin-bottom: 4vw;
  }
  .vehicle-contact-text {
    font-size: 4.27vw;
  }
}/*# sourceMappingURL=taxi.css.map */