/* ===== Hero ===== */
.page-hero--duskin .page-hero-overlay {
  background: linear-gradient(90deg, rgba(5,15,35,0.62) 0%, rgba(5,15,35,0.3) 55%, rgba(5,15,35,0.05) 100%);
}

/* ===== セクション共通 ===== */
.ds-section {
  padding: 80px 0;
  background: #fff;
}
.ds-section--alt {
  background: var(--bg-alt);
}
.ds-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.ds-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--teal);
  margin-bottom: 8px;
}

/* ===== フィーチャー（ララモップ） ===== */
.ds-featured {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 48px 48px 48px 40px;
  overflow: hidden;
}
.ds-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.ds-featured-img img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  display: block;
  padding: 24px;
}
.ds-product-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.ds-product-catch {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
  line-height: 1.8;
}
.ds-product-desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 2;
  margin-bottom: 24px;
}
.ds-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ds-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.6;
}
.ds-features .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}
.ds-spec {
  background: #fff;
  border-radius: 8px;
  padding: 18px 20px;
  border: 1px solid #e0e8f0;
}
.ds-spec-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.ds-spec dl {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 6px 12px;
  margin: 0;
}
.ds-spec dt {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.ds-spec dd {
  font-size: 0.82rem;
  color: var(--text);
  margin: 0;
}

/* ===== 家庭用 3列グリッド ===== */
.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ds-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ds-card-img {
  background: #fff;
  border-bottom: 1px solid #edf2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
.ds-card-img img {
  width: auto;
  height: 160px;
  object-fit: contain;
}
.ds-card-body {
  padding: 24px 22px 28px;
  flex: 1;
}
.ds-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.ds-card-catch {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.6;
}
.ds-card-desc {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.85;
}

/* ===== 事業所用グリッド ===== */
.ds-biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ds-biz-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ds-biz-img {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  border-bottom: 1px solid #edf2f8;
}
.ds-biz-img img {
  width: auto;
  height: 140px;
  object-fit: contain;
}
.ds-biz-img--cover {
  height: 200px;
}
.ds-biz-img--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ds-biz-sub-img {
  width: 100%;
  border-radius: 6px;
  margin-top: 14px;
  display: block;
}
.ds-biz-body {
  padding: 22px 20px 26px;
  flex: 1;
}
.ds-type {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--bg-alt);
  color: var(--text-muted);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}
.ds-mini-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ds-mini-list li {
  font-size: 0.82rem;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.ds-mini-list li::before {
  content: '•';
  position: absolute;
  left: 2px;
  color: var(--teal);
  font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .ds-featured {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .ds-featured-img img { height: 260px; }
  .ds-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-biz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ds-grid { grid-template-columns: 1fr; }
  .ds-biz-grid { grid-template-columns: 1fr; }
  .ds-featured-img img { height: 200px; }
  .ds-section { padding: 56px 0; }
}
