/* =================================================================
   プロフェッショナル企業サイト専用CSS
   ================================================================= */

/* ヒーローセクション */
.hero {
  background: linear-gradient(135deg, #E8F3EE 0%, #B8D4CC 30%, #C8DDD5 50%, #E8F3EE 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,20 50,0 100,20 0,100"/></svg>') repeat-x;
  opacity: 0.1;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .highlight {
  color: var(--primary-color);
  position: relative;
}

.hero .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(70, 126, 113, 0.08);
  border: 1px solid rgba(70, 126, 113, 0.15);
}

.feature-icon {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* 商品カード */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(70, 126, 113, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(70, 126, 113, 0.2);
}

.product-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.product-icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.product-details {
  margin-bottom: 1.5rem;
}

.product-details p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* feature-tagのアイコンを完全に削除 */
.feature-tag::before,
.feature-tag::after {
  content: none !important;
  display: none !important;
}

/* 品質管理プロセス */
.quality-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.step-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.step-icon .process-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.process-step h3 {
  color: var(--text-dark);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* 認証グリッド */
.quality-certifications {
  margin-top: 3rem;
  text-align: center;
}

.quality-certifications h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(70, 126, 113, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.cert-icon {
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* 選ばれる理由 */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.advantage-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.advantage-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.advantage-icon img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.advantage-card h3 {
  color: var(--text-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.advantage-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.advantage-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.advantage-card li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.advantage-card li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* お客様の声 */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--accent-color);
  line-height: 1;
}

.testimonial-content p {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.testimonial-author {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.author-info strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.author-info span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.company-type {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* ニュース一覧 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.news-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--secondary-color);
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateX(5px);
}

.news-date {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.news-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0.5rem 0;
}

.news-category.new {
  background: #E8F3EE;
  color: var(--secondary-color);
}

.news-category.update {
  background: #e3f2fd;
  color: #1976d2;
}

.news-category.certification {
  background: #fff3e0;
  color: #f57c00;
}

.news-title {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* 会社概要テーブル */
.company-info-table {
  margin: 2rem 0;
}

.company-info-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.company-info-table th,
.company-info-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.company-info-table th {
  background: var(--bg-light);
  color: var(--text-dark);
  font-weight: 600;
  width: 30%;
}

.company-info-table td {
  color: var(--text-light);
}

.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
  border-bottom: none;
}

/* 概要コンテンツ */
.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.overview-visual {
  position: sticky;
  top: 100px;
}

.map-section h3 {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.access-info {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.access-info p {
  margin: 0.5rem 0;
  color: var(--text-light);
}

/* CTAセクション */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* CTAセクション内のセカンダリボタン（電話番号）を白に */
.cta-section .btn-secondary {
  background: transparent;
  color: white !important;
  border: 2px solid white;
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white !important;
  border-color: white;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item span {
  opacity: 0.9;
}

/* 統計セクション */
.stats-section {
  background: linear-gradient(135deg, #E8F3EE 0%, #B8D4CC 50%, #E8F3EE 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="0,20 50,0 100,20 0,100"/></svg>') repeat-x;
  opacity: 0.3;
}

.stats-section .section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.stats-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.stats-section .section-description {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 4rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
  justify-items: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.stat-card {
  background: white;
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  border: 3px solid rgba(70, 126, 113, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 24px 24px 0 0;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(70, 126, 113, 0.25);
  border-color: var(--secondary-color);
}

.stat-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(70, 126, 113, 0.15));
  line-height: 1;
  color: var(--secondary-color);
}

.stat-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.stat-number {
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-unit {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
}

.stat-label {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.stat-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 500;
  text-align: center;
}

/* セクション共通 */
.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

/* タブレット対応 */
@media (max-width: 1200px) {
  .stats-section .section-container {
    max-width: 1000px;
    padding: 0 30px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 800px;
  }
  
  .stat-card {
    max-width: 350px;
    min-height: 320px;
  }
  
  .stat-icon {
    font-size: 4.5rem;
  }
  
  .stat-number {
    font-size: 4.5rem;
  }
  
  .stat-unit {
    font-size: 2.2rem;
  }
  
  .stat-label {
    font-size: 1.4rem;
  }
  
  .stat-description {
    font-size: 1rem;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-section .section-container {
    padding: 0 20px;
  }
  
  .stats-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .stats-section .section-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  /* 統計グリッドのモバイル対応 */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .stat-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
    max-width: none;
  }
  
  .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
  
  .stat-unit {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  .stat-description {
    font-size: 0.9rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .quality-process {
    grid-template-columns: 1fr;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .overview-visual {
    position: static;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .company-info-table th {
    width: 40%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .feature-item {
    padding: 0.5rem 1rem;
  }
  
  .stats-section {
    padding: 40px 0;
  }
  
  .stats-section .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .stats-section .section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  /* 統計セクションの極小画面対応 */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .stat-card {
    padding: 2rem 1.5rem;
    min-height: 250px;
  }
  
  .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-unit {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  
  .stat-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .product-card,
  .advantage-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .process-step {
    padding: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}