/* ================================
   Services.html 専用スタイル
   読み込み順: style.css → style-services.css
================================ */

/* Hero 部分（事業紹介） */
.page-services .business-hero{
  position:relative;
  background:#fff;
  min-height:420px;
  padding:60px var(--gutter);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.page-services .business-hero h1{
  margin:0;
  font-size:clamp(28px,4vw,44px);
  font-weight:700;
  color:var(--blue-deep);
}
.page-services .business-hero p{
  margin-top:12px;
  font-size:clamp(15px,2vw,18px);
  color:var(--muted);
}

/* セクション（各事業のボックス） */
.page-services .business-section{
  max-width:var(--container);
  margin:60px auto;
  padding:0 var(--gutter);
}
.page-services .business-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:40px;
}
.page-services .business-card{
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  padding:24px;
  display:flex;
  flex-direction:column;
  transition:.25s ease;
}
.page-services .business-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 24px rgba(0,0,0,.08);
}
.page-services .business-card img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:16px;
}
.page-services .business-card h2{
  margin:0 0 10px;
  font-size:20px;
  font-weight:700;
  color:#111;
}
.page-services .business-card p{
  font-size:15px;
  line-height:1.6;
  color:#333;
  flex:1;
}
.page-services .business-card .btn-outline{
  align-self:flex-start;
  margin-top:16px;
}

/* 背景ウォーターマーク（BUSINESS） */
.page-services .business-watermark{
  position:absolute;
  inset:0;
  font-size:clamp(80px,16vw,180px);
  font-weight:900;
  color:rgba(33,47,91,.06);
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
  user-select:none;
}

/* Responsive */
@media (max-width:640px){
  .page-services .business-hero{ padding:40px 20px; }
  .page-services .business-card img{ height:160px; }
}
