/* ================================================================================================ */
/* CTA（既存 .order と分離） */
/* ================================================================================================ */
.cta {
  --cta_green: #16c017;
  --cta_green_dark: #219822;
  --cta_orange: #ffa11d;
  --cta_orange_dark: #ff851d;
  --cta_bg: #e6f8e6;
  --cta_text: #333333;
  padding: 80px 20px;
  background: var(--cta_bg);
  box-sizing: border-box;
}

.cta__inner {
  width: 100%;
  max-width: 996px;
  margin: 0 auto;
}

.cta__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 384px;
  margin: 0 auto -52px;
  position: relative;
  z-index: 2;
}

.cta__head_icon {
  display: block;
  width: 40px;
  height: 40px;
}

.cta__ttl {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  color: var(--cta_text);
  text-align: center;
  white-space: nowrap;
}

.cta__body {
  position: relative;
}

.cta__illust {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.cta__illust--man {
  left: -17px;
  top: -42px;
  width: 160px;
  height: 160px;
  object-fit: cover;
}

.cta__illust--woman {
  right: 0;
  top: -38px;
  width: 113px;
  height: 160px;
  object-fit: cover;
}

.cta__grid {
  list-style: none;
  margin: 0;
  padding: 96px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cta__card {
  position: relative;
  width: calc(50% - 12px);
  max-width: 486px;
  padding-top: 20px;
  box-sizing: border-box;
}

.cta__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 8px 24px;
  background: #fff;
  border: 2px solid var(--cta_green);
  border-radius: 20px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--cta_text);
  white-space: nowrap;
}

.cta__badge--orange {
  border-color: var(--cta_orange);
}

.cta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 96px;
  padding: 0 56px;
  border-radius: 4px;
  box-sizing: border-box;
  text-decoration: none;
  overflow: hidden;
}

.cta__btn_icon {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: auto;
  pointer-events: none;
}

.cta__btn--line .cta__btn_icon {
  width: 20px;
  height: 32px;
}

.cta__btn_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cta__btn_tel {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}

.cta__btn_hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: #fff;
}

.cta__btn_label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  color: #fff;
  white-space: nowrap;
}

.cta__btn--tel,
.cta__btn--contact {
  background: linear-gradient(to bottom, var(--cta_green), var(--cta_green_dark));
}

.cta__btn--estimate {
  background: linear-gradient(to bottom, var(--cta_orange), var(--cta_orange_dark));
}

.cta__btn--line {
  background: #fff;
  border: 2px solid var(--cta_green);
}

.cta__btn--line .cta__btn_label {
  color: var(--cta_green);
}

@media screen and (max-width: 1100px) {
  .cta__illust--man {
    left: 0;
  }

  .cta__illust--woman {
    right: 0;
  }
}

@media screen and (max-width: 900px) {
  .cta__ttl {
    font-size: 36px;
    white-space: normal;
  }

  .cta__head {
    margin-bottom: 24px;
  }

  .cta__illust {
    display: none;
  }

  .cta__grid {
    padding-top: 0;
  }

  .cta__card {
    width: 100%;
    max-width: 486px;
  }
}

@media screen and (max-width: 480px) {
  .cta {
    padding: 56px 16px;
  }

  .cta__ttl {
    font-size: 28px;
  }

  .cta__badge {
    min-width: 0;
    width: calc(100% - 24px);
    max-width: 280px;
    padding: 6px 12px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .cta__btn {
    height: 88px;
    padding: 0 40px 0 48px;
  }

  .cta__btn_icon {
    left: 16px;
    width: 20px;
  }

  .cta__btn_tel {
    font-size: 24px;
  }

  .cta__btn_label {
    font-size: 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
}
