@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #333;
  line-height: 1.7;
  background: linear-gradient(to bottom, #fafafa, #fff);
}

.hanzam-common-info {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.service-cards {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.service-card h3 {
  color: #2c5282;
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-weight: 600;
  text-decoration: underline;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
}
.service-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 15px 0 30px;
}

.highlight {
  color: #d63638;
  font-weight: 600;
}

.service-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.ecsite-banner {
  text-align: center;
  margin: 30px 0;
}
.ecsite-banner img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-box {
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
}
.contact-box h4 {
  font-size: 0.95rem;
  margin-bottom: 10px;
  opacity: 0.95;
}
.contact-box .phone-number {
  color: #ff4500;
}

.phone-number {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.business-hours {
  font-size: 0.9rem;
  opacity: 0.9;
}

.area-section {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
  color: #2c5282;
  font-size: 1.15rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}

.area-note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
}

.area-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .area-grid-container {
    grid-template-columns: 1fr;
  }
}
.area-grid-container .area-additional-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
}

.area-group h5 {
  color: #4a5568;
  font-size: 1rem;
  margin-bottom: 12px;
  padding: 5px 10px;
  background: #f7fafc;
  border-left: 3px solid #667eea;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-list span {
  background: #f7fafc;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #4a5568;
  border: 1px solid #e2e8f0;
}

.payment-section {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.payment-methods {
  margin: 20px 0;
}
.payment-methods p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.payment-methods img {
  max-width: 300px;
  height: auto;
  margin: 0 0 15px;
}
.payment-methods .smart-payment-info {
  margin-top: 20px;
}

.point-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}
.point-card h5 {
  color: #2c5282;
  margin-bottom: 15px;
}
.point-card img {
  margin: 0 0 15px;
}

.point-features {
  list-style: none;
  padding: 0;
}
.point-features li {
  font-size: 0.9rem;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}
.point-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}

.store-info {
  background: linear-gradient(to right, #f8f9fa, #fff);
  padding: 30px;
  border-radius: 12px;
  margin: 30px 0;
  border: 1px solid #e2e8f0;
}

.store-header {
  text-align: center;
  margin-bottom: 25px;
}
.store-header h4 {
  color: #2c5282;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.company-number {
  font-size: 0.85rem;
  color: #666;
}

.store-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.detail-item {
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.detail-item dt {
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.detail-item dd {
  color: #333;
  font-size: 0.95rem;
}

.access-section {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}
.access-section h5 {
  color: #4a5568;
  margin-bottom: 10px;
  font-size: 1rem;
}
.access-section p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
}

.access-link {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid #667eea;
  transition: color 0.3s ease;
}
.access-link:hover {
  color: #764ba2;
}

.invoice-badge {
  text-align: center;
  margin-top: 20px;
}
.invoice-badge img {
  max-width: 300px;
  height: auto;
}

@media (max-width: 640px) {
  .hanzam-common-info {
    padding: 20px 15px;
  }
  .phone-number {
    font-size: 1.5rem;
  }
  .store-details {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=brand.css.map */