@charset "utf-8";
/*===========================
add
===========================*/

.cleaning-section {
  background: #F4FBFF;
  padding: 80px 0;
}

.wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/*.sec-ttl {
  font-size: 2.4rem;
  text-align: center;
  color: #1a4f6b;
  margin-bottom: 10px;
}*/

.sec-sub {
  text-align: center;
  color: #6b8a99;
  margin-bottom: 50px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.plan-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card h3 {
  font-size: 1.2rem;
  color: #1a4f6b;
 
}

.price {
  font-size: 1.8rem;
  color: #00a0e9;
  margin-bottom: 15px;
  font-weight: bold;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
  color: #444;
}

.note {
	font-size: 0.8rem;
	color: #888;
	margin-top: 10px;
	line-height: 1.5em;
}

/* おすすめ */
.featured {
  border: 2px solid #00a0e9;
  position: relative;
}

.badge {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #00a0e9;
  color: #fff;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 5px;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

/* 1カラム用 */
.plan-grid.single {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
}

/* 画像 */
.plan-img {
  margin-bottom: 15px;
}

.plan-img img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* 価格2パターン */
.price-box {
  background: #F4FBFF;
  border: 1px solid #d0eaf7;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
}

.price-box p {
  margin: 5px 0;
  font-size: 1.1rem;
  color: #1a4f6b;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.price-box span {
  color: #666;
  font-weight: normal;
}


/* 蛍光マーカー */
.tx-em {
  display: inline;
  background-image: linear-gradient(transparent 37%, #fff400b5 17% 62%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: left bottom;
  transition: background-size 1s ease-out;
}

/* スクロール後に付与 */
.tx-em.is-active {
  background-size: 100% 100%;
}