/* ===========================
   ページヘッダー
=========================== */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--gray-50);
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.page-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  font-weight: 300;
}

/* アクティブナビ */
.nav-link-active {
  color: var(--orange) !important;
  background: var(--orange-light);
}

/* ===========================
   サービスセクション共通
=========================== */
.sv-section {
  padding: 100px 0;
}

.sv-section-white { background: var(--white); }
.sv-section-gray  { background: var(--gray-50); }

.sv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sv-layout-reverse { direction: rtl; }
.sv-layout-reverse > * { direction: ltr; }

.sv-number {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--orange);
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.sv-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.4;
}

.sv-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sv-body {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.9;
  margin-bottom: 24px;
}

.sv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sv-list li {
  font-size: 14px;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.sv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ビジュアルボックス */
.sv-visual {
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.sv-visual-orange { background: linear-gradient(135deg, #FFF0E0 0%, #FFE0C0 100%); }
.sv-visual-green  { background: linear-gradient(135deg, #F0F7E0 0%, #E0F0C8 100%); }

.sv-visual-photo {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
}

.sv-photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.sv-visual-contain {
  background: #fdf8f3;
  min-height: auto;
}

.sv-visual-contain .sv-photo {
  height: auto;
  min-height: auto;
  object-fit: contain;
}

.sv-icon-box {
  text-align: center;
}

.sv-icon {
  font-size: 80px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.sv-icon-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.05em;
}

/* コンテンツ紹介画像 */
.contents-img-wrap {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contents-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ===========================
   導入の流れ
=========================== */
.flow-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.flow-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.flow-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

.flow-arrow {
  font-size: 24px;
  color: var(--gray-200);
  padding-top: 16px;
  flex-shrink: 0;
}

/* ===========================
   CTA
=========================== */
.sv-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-light) 0%, #E8F5D8 100%);
}

.sv-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.sv-cta-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.sv-cta-text {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 768px) {
  .sv-section { padding: 64px 0; }

  .sv-layout,
  .sv-layout-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .sv-visual { min-height: 220px; }
  .sv-icon   { font-size: 56px; }

  .flow-section { padding: 64px 0; }
  .flow-steps   { flex-direction: column; align-items: center; gap: 0; }
  .flow-arrow   { transform: rotate(90deg); padding: 0; margin: 8px 0; }
  .flow-step    { width: 100%; max-width: 320px; padding: 20px 16px; }

  .sv-cta { padding: 64px 0; }
}

@media (max-width: 480px) {
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 48px; }
  .sv-icon   { font-size: 48px; }
}
