@charset "UTF-8";
/* =========================
   こんなお悩みありませんか｜参考画像寄せ
========================= */

.worry-section {
  background: linear-gradient(180deg, #fff 0%, #FAF6EC 38%, #FAF6EC 100%);
  padding: 54px 20px 0;
  box-sizing: border-box;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Yu Gothic", "Meiryo", sans-serif;
  overflow: hidden;
}

.worry-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* 見出し */
.worry-heading {
  text-align: center;
  margin-bottom: 34px;
}

.worry-heading h2 {
  color: #0E2A47;
  font-size: 56px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
}

.heading-decoration {
  position: relative;
  width: 120px;
  height: 18px;
  margin: 10px auto 18px;
}

.heading-decoration::before,
.heading-decoration::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 50px;
  height: 2px;
  background: #B9923F;
}

.heading-decoration::before {
  left: 0;
}

.heading-decoration::after {
  right: 0;
}

.heading-decoration span {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #B9923F;
  transform: translateX(-50%) rotate(45deg);
}

.worry-heading p {
  color: #1F1F1F;
  font-size: 19px;
  line-height: 1.9;
  font-weight: 600;
  margin: 0;
}

/* カード一覧 */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  margin: 0 auto 34px;
  box-sizing: border-box;
}

.worry-card {
  background: #fff;
  border: 1px solid rgba(185, 146, 63, 0.23);
  border-radius: 10px;
  padding: 16px 14px 14px;
  box-shadow: 0 4px 16px rgba(14, 42, 71, 0.09);
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.worry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(14, 42, 71, 0.13);
}

.worry-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 78px;
  margin-bottom: 10px;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  background: #0E2A47;
  color: #fff;
  border-radius: 50%;
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(14, 42, 71, 0.18);
}

.worry-title p {
  color: #0E2A47;
  font-size: 21px;
  line-height: 1.45;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.worry-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

/* 下部メッセージ */
.worry-bottom {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr 250px;
  align-items: center;
  gap: 32px;
  min-height: 190px;
  padding: 26px 44px 28px;
  margin: 20px auto 0;
  box-sizing: border-box;
  overflow: visible;
}

.worry-bottom::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: -104px;
  width: 620px;
  height: 170px;
  background: #0E2A47;
  transform: rotate(8deg);
  z-index: 0;
}

.worry-bottom::after {
  content: "";
  position: absolute;
  right: -210px;
  bottom: -96px;
  width: 680px;
  height: 220px;
  background: #0E2A47;
  border-radius: 75% 0 0 0;
  z-index: 0;
}

.bottom-house,
.bottom-text,
.bottom-person {
  position: relative;
  z-index: 2;
}

.bottom-house {
  text-align: center;
}

.bottom-house img {
  width: 160px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.bottom-text h3 {
  color: #1F1F1F;
  font-size: 27px;
  line-height: 1.7;
  font-weight: 700;
  margin: 0 0 8px;
}

.bottom-text h3 span {
  color: #D97800;
}

.bottom-text p {
  color: #1F1F1F;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
}

.bottom-person {
  align-self: end;
  text-align: right;
  margin-bottom: -12px;
}

.bottom-person img {
  width: 220px;
  max-width: 100%;
  display: inline-block;
}

/* ゴールド斜めライン */
.worry-bottom .bottom-person::before {
  content: "";
  position: absolute;
  right: -250px;
  bottom: 50px;
  width: 680px;
  height: 8px;
  background: #B9923F;
  transform: rotate(-7deg);
  z-index: -1;
}

/* CTA */
.worry-cta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 0;
  padding: 18px 0 22px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 410px;
  min-height: 70px;
  padding: 16px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
}

.cta-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.cta-orange {
  background: linear-gradient(180deg, #F0A020 0%, #D97800 100%);
  color: #fff !important;
  box-shadow: 0 7px 18px rgba(217, 120, 0, 0.32);
}

.cta-line {
  background: #fff;
  color: #0E2A47 !important;
  border: 2px solid #d9d9d9;
  box-shadow: 0 7px 18px rgba(14, 42, 71, 0.18);
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 16px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 6px;
  font-size: 28px;
  line-height: 1;
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-right: 16px;
  border-radius: 50%;
  background: #21C45A;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .worry-heading h2 {
    font-size: 42px;
  }

  .worry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .worry-bottom {
    grid-template-columns: 150px 1fr;
    padding: 26px 28px 28px;
  }

  .bottom-person {
    display: none;
  }

  .worry-bottom::before,
  .worry-bottom::after {
    display: none;
  }

  .cta-button {
    min-width: 330px;
    font-size: 20px;
  }
}

/* スマホ */
@media screen and (max-width: 640px) {
  .worry-section {
    padding: 46px 16px 0;
  }

  .worry-heading {
    margin-bottom: 28px;
  }

  .worry-heading h2 {
    font-size: 30px;
    letter-spacing: 0.04em;
  }

  .worry-heading p {
    font-size: 15px;
    line-height: 1.8;
  }

  .worry-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .worry-title {
    min-height: auto;
  }

  .worry-title p {
    font-size: 17px;
  }

  .check-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .worry-bottom {
    display: block;
    text-align: center;
    padding: 26px 20px 28px;
    background: linear-gradient(135deg, #fff 0%, #FBF8F1 100%);
    border: 1px solid rgba(185, 146, 63, 0.25);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(14,42,71,0.08);
  }

  .bottom-house {
    margin-bottom: 14px;
  }

  .bottom-house img {
    width: 130px;
  }

  .bottom-text h3 {
    font-size: 21px;
    line-height: 1.6;
  }

  .bottom-text p {
    font-size: 15px;
  }

  .worry-cta {
    padding-top: 18px;
    gap: 14px;
  }

  .cta-button {
    width: 100%;
    min-width: auto;
    min-height: 58px;
    font-size: 17px;
    padding: 14px 20px;
  }

  .cta-icon,
  .line-icon {
    width: 34px;
    height: 34px;
    margin-right: 10px;
  }

  .cta-icon {
    font-size: 22px;
  }

  .line-icon {
    font-size: 11px;
  }
}

/* =========================
   調整版：カード文字・下部デザイン
========================= */

/* カードの文字を詰める */
.worry-title {
  min-height: 58px;
  gap: 10px;
  margin-bottom: 12px;
}

.worry-title p {
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* チェックアイコンを少し小さく */
.check-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  font-size: 22px;
}

/* カードの余白を少し詰める */
.worry-card {
  padding: 16px 14px 14px;
}

/* 画像が小さくなりすぎないように */
.worry-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* 下部ブロックを少し上品に */
.worry-bottom {
  grid-template-columns: 180px 1fr 230px;
  gap: 28px;
  min-height: 180px;
  padding: 28px 42px 24px;
  margin-top: 24px;
}

/* 左下の紺帯を控えめに */
.worry-bottom::before {
  left: -180px;
  bottom: -125px;
  width: 620px;
  height: 145px;
  transform: rotate(6deg);
}

/* 右下の紺帯を控えめに */
.worry-bottom::after {
  right: -240px;
  bottom: -125px;
  width: 620px;
  height: 190px;
  border-radius: 70% 0 0 0;
}

/* ゴールドラインを細く・控えめに */
.worry-bottom .bottom-person::before {
  right: -250px;
  bottom: 48px;
  width: 620px;
  height: 5px;
  transform: rotate(-6deg);
  opacity: 0.9;
}

/* 下部テキストを少し整える */
.bottom-text h3 {
  font-size: 26px;
  line-height: 1.65;
}

.bottom-text p {
  font-size: 16px;
  line-height: 1.8;
}

/* 人物画像を少し小さく */
.bottom-person img {
  width: 200px;
}

/* 家アイコンを少し小さく */
.bottom-house img {
  width: 145px;
}

/* CTAボタンを少し落ち着かせる */
.worry-cta {
  padding: 12px 0 28px;
  gap: 20px;
}

.cta-button {
  min-width: 370px;
  min-height: 64px;
  font-size: 21px;
  border-radius: 8px;
}

.cta-icon {
  width: 38px;
  height: 38px;
  font-size: 24px;
}

.line-icon {
  width: 40px;
  height: 40px;
  font-size: 12px;
}