/* css/price/price.css */

/* フェードインアニメーション */
body.fade-enter {
  opacity: 0;
  transition: opacity 0.8s ease;
}
body.fade-enter.fade-enter-active {
  opacity: 1;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-modal);
}
.modal-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.swiper-pagination {
  position: absolute;
  bottom: -20px;
  text-align: center;
  width: 100%;
}
.swiper-pagination-bullet {
  background: #007acc;
  opacity: 0.5;
  margin: 0 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: opacity 0.3s;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

.price-section {
  padding: 4em 2em;
  background: #fcfcfc;
  max-width: 1000px;
  margin: 0 auto;
}

.page-title {
  font-size: 2rem;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 2rem;
  font-weight: bold;
}

.lead {
  text-align: center;
  margin-bottom: 3rem;
  color: #555;
}

.tab-menu {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-menu li {
  list-style: none;
  padding: 0.6em 1.2em;
  background: #eee;
  border-radius: 999px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.tab-menu li.active {
  background: #333;
  color: #fff;
}

.tab-content {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  min-height: 300px;
  overflow: hidden;
}

.price-tab h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.price-tab .catch {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.category-description p {
  color: #555;
  margin-bottom: 0.5rem;
}

.sample-gallery {
  position: relative;
  margin: 2rem 0;
}
.swiper-slide {
  width: 250px;
  height: auto;
  text-align: center;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  cursor: pointer;
}
.swiper-slide img:hover {
  transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  color: #b3b3b3 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: var(--z-ui);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.swiper-button-prev {
  left: -30px !important;
}

.swiper-button-next {
  right: -30px !important;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}
.service-card {
  flex: 1 1 280px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
}
.service-card i {
  font-size: 1.4rem;
  margin-right: 0.5rem;
  color: #007acc;
}
.service-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #222;
}
.service-detail {
  font-size: 0.95rem;
  color: #444;
  margin: 0.5rem 0 1rem;
}
.price {
  font-size: 0.85rem;
  color: #666;
  font-style: italic;
}

.disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
}

.price-tab-cta {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 4rem;
}

.price-tab-cta .btn-inquiry {
  display: inline-block;
  padding: 1em 2em;
  font-weight: bold;
  background: #007acc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.price-tab-cta .btn-inquiry:hover {
  background: #005fa3;
}

/* スライド画像の最大幅制限（PC用） */
@media screen and (min-width: 768px) {
  .swiper-slide img {
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }
}


.fa-solid {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
