/* 店舗情報セクション専用CSS */

.stores-area {
  padding: 120px 0 130px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.stores-area::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(54, 144, 217, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.stores-area .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.stores-area .section-title .line {
  height: 3px;
  width: 60px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, #3B82F6 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.stores-area .section-title .title {
  font-size: 42px;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.stores-area .section-title .title span {
  background: linear-gradient(135deg, var(--theme-color1) 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stores-area .section-title p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.store-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.store-image {
  position: relative;
  overflow: hidden;
  height: 450px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.store-card:hover .store-image img {
  transform: scale(1.05);
}

.store-status {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #3B82F6 !important;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.store-info {
  padding: 40px !important;
}

.store-info h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--headings-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.store-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--theme-color1) 0%, #3B82F6 100%);
  border-radius: 2px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.icon-box {
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.detail-item:hover .icon-box {
  background: rgba(8, 145, 105, 0.15);
  transform: scale(1.1);
}

.icon-box i {
  font-size: 20px;
  color: #3B82F6;
}

.detail-item h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--headings-color);
  margin-bottom: 5px;
}

.detail-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Googleマップ */
.map-container {
  margin: 30px 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* 設備バッジ */
.facilities .badge {
  background: #f8f9fa !important;
  color: #333 !important;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px !important;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.facilities .badge:hover {
  background: var(--theme-color1) !important;
  color: white !important;
  border-color: var(--theme-color1);
}

.facilities .badge i {
  font-size: 16px;
  color: var(--theme-color1);
  transition: color 0.3s ease;
}

.facilities .badge:hover i {
  color: white;
}

/* ギャラリー */
.store-gallery {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  overflow-x: auto;
  padding-bottom: 10px;
}

.gallery-item {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 200px;
  height: 150px;
  object-fit: cover;
}

/* アクションボタン */
.action-buttons {
  margin-top: 30px;
  gap: 10px;
}

.main-btn {
  background: linear-gradient(135deg, var(--theme-color1) 0%, #3B82F6 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(54, 144, 217, 0.3);
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(54, 144, 217, 0.4);
  color: white;
}

.main-btn i {
  font-size: 18px;
  margin-right: 8px;
}

.btn-outline-secondary {
  background: transparent;
  color: #666;
  border: 2px solid #e9ecef;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-outline-secondary:hover {
  background: #f8f9fa;
  border-color: var(--theme-color1);
  color: var(--theme-color1);
}

/* レスポンシブ対応 */
@media (max-width: 991.98px) {
  .stores-area {
    padding: 80px 0 90px;
  }
  
  .stores-area .section-title .title {
    font-size: 36px;
  }
  
  .store-image {
    height: 350px;
  }
  
  .store-info {
    padding: 30px !important;
  }
  
  .store-info h3 {
    font-size: 28px;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .stores-area {
    padding: 60px 0 70px;
  }
  
  .stores-area .section-title .title {
    font-size: 32px;
  }
  
  .store-image {
    height: 250px;
  }
  
  .store-info {
    padding: 25px 20px !important;
  }
  
  .store-info h3 {
    font-size: 24px;
  }
  
  .detail-item {
    margin-bottom: 15px;
  }
  
  .icon-box {
    width: 40px;
    height: 40px;
  }
  
  .icon-box i {
    font-size: 18px;
  }
  
  .detail-item h6 {
    font-size: 15px;
  }
  
  .detail-item p {
    font-size: 14px;
  }
  
  .facilities .badge {
    font-size: 13px;
    padding: 8px 12px !important;
  }
  
  .gallery-item img {
    width: 150px;
    height: 120px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .main-btn,
  .btn-outline-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .stores-area .section-title .title {
    font-size: 28px;
  }
  
  .stores-area .section-title p {
    font-size: 15px;
  }
  
  .store-info h3 {
    font-size: 22px;
  }
  
  .map-container iframe {
    height: 250px;
  }
}