:root {
  --yellow: #FDF53D;
}

/* ========================================
   共通CTAバナー（緑背景）
   .lp_cta として使用
======================================== */

.lp_cta {
  background: var(--corp);
  padding: 35px var(--side_padding);
  box-sizing: border-box;
  margin-bottom: var(--margin_bottom);
}

.lp_cta_inner {
  max-width: 900px;
  margin: 0 auto;
}

/* 上部テキスト */
.lp_cta_lead {
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* ボタン群 */
.lp_cta_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 電話ボタン */
.lp_cta_tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 5px;
  padding: 14px 20px;
  gap: 10px;
}

.lp_cta_tel .freedial {
  width: 36px;
  filter: var(--svg_general);
}

.lp_cta_tel .num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--general);
  line-height: 1;
}

.lp_cta_tel .time {
  font-size: 1.1rem;
  color: var(--t_gray);
  margin-top: 3px;
}

/* LINEボタン */
.lp_cta_line a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--line);
  border-radius: 5px;
  padding: 14px 20px;
  gap: 10px;
}

.lp_cta_line img {
  width: 32px;
}

.lp_cta_line .text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}

/* メールボタン */
.lp_cta_mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg_orange);
  border-radius: 5px;
  padding: 14px 20px;
  gap: 10px;
}

.lp_cta_mail i {
  font-size: 2.4rem;
  color: #fff;
}

.lp_cta_mail .comment {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.lp_cta_mail .text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}

/****************************** 600px ******************************/
@media (min-width: 600px) {

  .lp_cta_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .lp_cta_tel,
  .lp_cta_line,
  .lp_cta_mail {
    width: calc(50% - 8px);
  }

  .lp_cta_tel a,
  .lp_cta_line a,
  .lp_cta_mail a {
    height: 100%;
    min-height: 70px;
  }

}

/****************************** 800px ******************************/
@media (min-width: 800px) {

  .lp_cta {
    padding: 45px var(--side_padding);
  }

  .lp_cta_lead {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .lp_cta_list {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
  }

  .lp_cta_tel,
  .lp_cta_line,
  .lp_cta_mail {
    width: auto;
    flex: 1;
  }

}

/****************************** 1025px ******************************/
@media (min-width: 1025px) {

  .lp_cta {
    padding: 50px var(--side_padding);
  }

  .lp_cta_lead {
    font-size: 1.6rem;
    margin-bottom: 22px;
  }

  .lp_cta_tel .freedial {
    width: 42px;
  }

  .lp_cta_tel .num {
    font-size: 3.4rem;
  }

  .lp_cta_tel .time {
    font-size: 1.2rem;
  }

  .lp_cta_line img {
    width: 36px;
  }

  .lp_cta_line .text {
    font-size: 1.8rem;
  }

  .lp_cta_mail i {
    font-size: 2.8rem;
  }

  .lp_cta_mail .text {
    font-size: 1.8rem;
  }

  .lp_cta_mail .comment {
    font-size: 1.2rem;
  }

}

/****************************** 1400px ******************************/
@media (min-width: 1400px) {

  .lp_cta {
    padding: 60px var(--side_padding);
  }

  .lp_cta_lead {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }

  .lp_cta_tel .num {
    font-size: 4rem;
  }

}
