.care-box {
background: linear-gradient(
  180deg,
  #F5B8A4,
  #F2AB96,
  #F59E81
);
  border-radius: 20px;
  padding: 10px 20px 0px;
  color: #fff;
  max-width: 650px;
  margin: 20px auto;
  border: 2px solid #E97132;
}

/* 上の見出し */
.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* メイン文章 */
.main-text {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 5px;
}

/* 下のリンク行 */
.link-text {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  margin-bottom: 5px;
}

/* 「こちら」部分 */
.link-text a {
  color: red;
  text-decoration: underline;
}


/* 上の見出し */
.title2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

/* メイン文章 */
.main-text2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 5px;
}

/* 下のリンク行 */
.link-text2 {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  margin-bottom: 5px;
}

/* 「こちら」部分 */
.link-text2 a {
  color: red;
  text-decoration: underline;
}



/* ===== スマホ対応 ===== */
@media (max-width: 768px) {

  .care-box {
    padding: 30px 20px;
    border-radius: 30px;
    margin: 20px;
  }

  .title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .main-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .link-text {
    font-size: 20px;
    text-align: left; /* ←中央に変更 */
    margin: 12px 0;
  }

  .link-text a {
    display: inline-block;
    margin-top: 5px;
  }


  .title2 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .main-text2 {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .link-text2 {
    font-size: 24px;
    text-align: left; /* ←中央に変更 */
    margin: 12px 0;
  }

  .link-text2 a {
    display: inline-block;
    margin-top: 5px;
  }




}




/* 全体 */
.card-wrap {
  display: flex;
  gap: 10px;
  max-width: 800px;
  margin: 20px auto;
}

/* カード */
.card {
  flex: 1;
  background: #fff;
  border: 5px solid #f4b400;
  border-radius: 20px;
  padding: 20px 10px;
}

/* タイトル */
.card-title {
  color: #E97132!important;
  font-size: 18px!important;
  font-weight: bold;
text-align:center;
  margin-bottom: 20px;
}

/* 本文 */
.card-body p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* リスト */
.card-body ul {
  margin-bottom: 25px;
  padding-left: 15px;
}

.card-body li {
  margin-bottom: 8px;
}

.bb{font-weight:bold;}

/* ===== スマホ ===== */
@media (max-width: 768px) {

  .card-wrap {
    flex-direction: column;
    gap: 10px;
    margin: 20px;
  }

  .card {
    border-radius: 30px;
    padding: 25px;
    min-height: auto;
  }

  .card-title {
    font-size: 20px;
  }

  .card-body p {
    font-size: 15px;
  }


}