/* ===== Hero ===== */
.page-hero--clean .page-hero-overlay {
  background: linear-gradient(90deg, rgba(5,15,30,0.55) 0%, rgba(5,15,30,0.25) 60%, rgba(5,15,30,0.10) 100%);
}

/* ===== 特長 ジグザグ ===== */
.co-features {
  padding: 72px 0;
}
.co-feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.co-feat-row-img {
  overflow: hidden;
  min-height: 300px;
}
.co-feat-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.co-feat-row--rev .co-feat-row-img { order: 2; }
.co-feat-row--rev .co-feat-row-body { order: 1; }
.co-feat-row-body {
  background: #fff;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.co-feat-num {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Caveat', cursive;
}
.co-feat-row-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}
.co-feat-row-body p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 2;
}

/* ===== 日常・定期清掃 ===== */
.co-daily {
  padding: 72px 0;
  background: var(--bg-alt);
}
.co-daily-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 24px;
}
.co-daily-col {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.co-daily-col-img {
  overflow: hidden;
}
.co-daily-col-img img {
  width: 100%;
  height: auto;
  display: block;
}
.co-daily-col-body {
  padding: 24px 28px 28px;
}
.co-daily-col-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e8f0;
}
.co-daily-col-body h3 span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--blue);
  margin-left: 8px;
}
.co-dot-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.co-dot-list li {
  font-size: 0.87rem;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.co-dot-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  font-size: 0.45rem;
  color: var(--navy);
  top: 6px;
}
.co-price-wrap {
  margin-top: 40px;
}
.co-price-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}
.co-price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}
.co-price-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}
.co-price-table td {
  padding: 13px 24px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid #e8eef5;
}
.co-price-table tr:last-child td { border-bottom: none; }
.co-price-table tr:nth-child(even) td { background: var(--bg-alt); }
.co-price-table td.price {
  color: var(--blue);
  font-weight: 700;
}
.co-price-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ===== スポット清掃 ===== */
.co-spot {
  padding: 72px 0;
}
.co-spot-lead {
  font-size: 0.92rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 8px;
}
.co-spot-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.co-spot-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.co-spot-img {
  height: 180px;
  overflow: hidden;
}
.co-spot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.co-spot-body {
  padding: 18px 20px 22px;
  border-top: 3px solid var(--green);
}
.co-spot-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.co-spot-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .co-feat-row { grid-template-columns: 1fr; }
  .co-feat-row-img { min-height: 220px; }
  .co-feat-row--rev .co-feat-row-img { order: 0; }
  .co-feat-row--rev .co-feat-row-body { order: 0; }
  .co-feat-row-body { padding: 28px 24px; }
  .co-daily-cols { grid-template-columns: 1fr; }
  .co-spot-list { grid-template-columns: 1fr 1fr; }
  .co-spot-img { height: 150px; }
}
@media (max-width: 480px) {
  .co-spot-list { grid-template-columns: 1fr; }
}
