/* 美容電気脱毛 ページ固有のスタイル
共通の料金表は pages/treatment-pricing.css にあります */

.owner-message-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(44, 62, 80, 0.08);
  border: 1px solid #e9ecef;
  margin-bottom: 60px;
  position: relative;
}

.owner-message-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
}

.owner-message-header {
  text-align: center;
  padding: 40px 30px 30px;
  position: relative;
}

.message-badge {
  display: inline-block;
  background: #2c3e50;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.owner-title {
  font-size: 1.8rem;
  color: #2c3e50;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}

.owner-content {
  padding: 0 30px 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.owner-photo-area {
  flex-shrink: 0;
  text-align: center;
}

.owner-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.owner-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.owner-position {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

.owner-fullname {
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.message-content {
  flex: 1;
}

.history-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.05);
  border-left: 4px solid #17a2b8;
}

.history-years {
  font-size: 2rem;
  font-weight: 700;
  color: #17a2b8;
}

.history-text {
  font-size: 1rem;
  color: #495057;
  font-weight: 500;
}

.message-text {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.highlight-person {
  background: linear-gradient(180deg, transparent 60%, rgba(23, 162, 184, 0.2) 60%);
  padding: 2px 4px;
  font-weight: 600;
  color: #2c3e50;
}

.message-text.closing {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 0;
}

.time-column {
  background: #f8f9fa;
  font-weight: 600;
  color: #2c3e50;
  width: 20%;
}

.campaign-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #dc3545;
}

.regular-price {
  color: #6c757d;
  text-decoration: line-through;
  font-size: 0.85rem;
  margin-left: 10px;
}

.treatment-details {
  padding: 30px;
  background: #f8f9fa;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.detail-item {
  background: white;
  padding: 18px;
  border-radius: 6px;
  border-left: 3px solid #dee2e6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.detail-time {
  display: inline-block;
  background: #f8f9fa;
  color: #495057;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  border: 1px solid #e9ecef;
}

.detail-description {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .owner-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 30px;
  }
  .owner-photo-area {
  margin-bottom: 20px;
  }
  .message-text {
  text-align: left;
  }
  .history-highlight {
  display: flex;
  justify-content: center;
  width: 100%;
  }
  .philosophy-quote {
  font-size: 1.1rem;
  }
  .owner-title {
  font-size: 1.5rem;
  }
  .hero-title {
  font-size: 2rem;
  }
  .trial-price {
  font-size: 1.8rem;
  }
  .detail-grid {
  grid-template-columns: 1fr;
  }
  .treatment-details {
  padding: 20px;
  }
}
