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



/* 各ブロック */
.feature-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}

/* 逆配置 */
.feature-item.reverse {
  flex-direction: row-reverse;
}

/* 画像 */
.feature-img {
  flex: 1;
}

.feature-img img {
  width: 100%;
  border-radius: 10px;
}

/* テキスト */
.feature-text {
  flex: 1;
}

.feature-text h3 {
	font-size: 20px;
	margin-bottom: 15px;
	position: relative;
	padding-left: 15px;
	text-align: left;
}

/* 左ラインアクセント */
.feature-text h3:before {
	content: "";
	width: 4px;
	height: 100%;
	background-color: #34A139;
	position: absolute;
	left: 0;
	top: 0;
}
.feature-text h3:after {
	height: 0;
}

.feature-text p {
  line-height: 1.9;
  color: #555;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    gap: 20px;
  }

  .feature-item.reverse {
    flex-direction: column;
  }

  .sec-title {
    font-size: 22px;
  }
}




/* 説明 */
.pricing-lead {
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.8;
}

.pricing-notes {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
.pricing-notes {
  text-align: left;
}
}
/* グリッド */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* カード */
.pricing-card {
  border: 1px solid #ddd;
  padding: 30px;
  background: #fafafa;
  text-align: center;
  transition: 0.3s;
}

/* 強調カード */
.pricing-card.featured {
  border: 2px solid #34a139;
  background: #e8fee9;
  transform: scale(1.05);
}

/* タイトル */
.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.pricing-card h3:after {
    height: 0;
}

/* 価格 */
.price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #34a139;
}

.price span {
  font-size: 14px;
  color: #555;
}

/* 説明 */
.desc {
  font-size: 13px;
  margin-bottom: 15px;
}

/* リスト */
.pricing-card ul {
  text-align: left;
  margin-bottom: 15px;
  padding-left: 20px;
}

.pricing-card li {
  margin-bottom: 5px;
}

/* ターゲット */
.target {
  font-size: 13px;
  color: #333;
  margin-top: 10px;
}

/* ホバー */
.pricing-card:hover {
  transform: translateY(-5px);
}

/* スマホ */
@media screen and (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* お試し案内ボックス */
.trial-box {
	max-width: 800px;
	margin: 60px auto 0;
	padding: 25px 30px;
	background-color: #F3FFF4;
	border: 1px solid #75C779;
	border-radius: 10px;
	text-align: center;
}

/* テキスト */
.trial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* アイコン */
.trial-text i {
	display: block;
	font-size: 58px;
	color: #34A139;
	margin-bottom: 10px;
}


/* CTAセクション */
.contact-cta {
  background: linear-gradient(135deg, #34a139, #157b1a);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

/* タイトル */
.cta-title {
	font-size: 26px;
	margin-bottom: 15px;
	letter-spacing: 2px;
	text-shadow: none;
	font-weight: bold;
}

h2.cta-title:after {
    height: 0;
}

/* テキスト */
.cta-text {
  margin-bottom: 30px;
  font-size: 15px;
}

/* 電話ボタン */
.cta-tel {
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  padding: 15px 30px;
  background: #fff;
  color: #16701a;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

/* アイコン */
.cta-tel i {
  margin-right: 10px;
}

/* ホバー */
.cta-tel:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}

/* スマホ */
@media screen and (max-width: 768px) {
  .cta-title {
    font-size: 20px;
  }

  .cta-tel {
    font-size: 22px;
    padding: 12px 20px;
  }
}

/* セクション */
.rules {
  padding: 80px 0;
  background: #f9fafb;
}

/* タイトル */
.sec-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 50px;
}

/* グリッド */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* カード */
.rule-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* 画像 */
.rule-img img {
  /*width: 100%;*/
  border-radius: 8px;
  margin-bottom: 15px;
	box-shadow: none;
}

/* タイトル */
.rule-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #5CB360;
}
.rule-card h3:after {
	height: 0;
}

/* テキスト */
.rule-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ホバー */
.rule-card:hover {
  transform: translateY(-5px);
}

/* 下説明 */
.rules-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .rules-grid {
    grid-template-columns: 1fr;
  }
}