/* ========================================
  Button
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 700;

  transition: .3s;
}

.btn img {
  width: 22px;
  height: auto;
}

.btn:hover {
  opacity: .85;
}

/* ------------------------------
Primary
------------------------------ */

.btn-primary {
  background: #222;
  color: #fff;
  padding: 20px 40px;
}

/* ------------------------------
LINE
------------------------------ */

.btn-line {
  background: #06C755;
  color: #fff;
}

/* ------------------------------
Download
------------------------------ */

.btn-download {
  font-size: 18px;
}

/* ========================================
  Button
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 62px;
  padding: 18px 30px;
  border-radius: 8px;
  box-sizing: border-box;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;

  transition: opacity .3s;
}

.btn:hover {
  opacity: .85;
}

.btn img {
  width: 22px;
  height: auto;
  flex-shrink: 0;
}

.btn-line {
  min-height: 70px;
  background: #06c755;
  color: #fff;
}

.btn-primary {
  background: #222;
  color: #fff;
}

.btn-download {
  background: #222;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .btn {
    min-height: 56px;
    padding: 16px 20px;
    font-size: 16px;
  }

  .btn-line {
    min-height: 60px;
    border-width: 3px;
  }
}
/* ------------------------------
  Estimate Button
------------------------------ */

.btn-estimate {
  min-height: 62px;
  padding: 18px 30px;
  background: #ffe400;
  color: #222;
}

.btn-estimate img {
  width: 22px;
  height: auto;
}

/* ------------------------------
  Text Link
------------------------------ */

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.text-link img {
  width: 8px;
  height: auto;
  flex-shrink: 0;
}

.text-link-line {
  color: #06c755;
}

@media screen and (max-width: 767px) {
  .text-link {
    font-size: 16px;
  }
}

/* ========================================
  Link Hover / Text Link Override
======================================== */

/* 修正：ボタン hover は透過で統一 */
.btn {
  transition: opacity .3s ease;
}

.btn:hover {
  opacity: .8;
}

/* 修正：ボタンではないテキストリンクには下線を付与 */
.text-link {
  text-decoration: underline;
  text-underline-offset: .22em;
  transition: opacity .3s ease;
}

.text-link:hover {
  opacity: .7;
}
/* ========================================
 * 共通見出し
 * 修正：PC/SP共通見出しサイズ
 * ======================================== */

.heading {
    text-align: center;
}

.heading__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

@media screen and (max-width: 767px) {
    .heading__title {
        font-size: 24px;
    }
}

/* ========================================
  Heading Lead
======================================== */

.heading__lead {
  margin-top: 12px;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: #555;
}

@media screen and (max-width: 767px) {
  .heading__lead {
    margin-top: 8px;

    font-size: 15px;
    line-height: 1.8;
  }
}
/* ========================================
 * 修正：reCAPTCHAバッジを非表示
 * 注意：フォーム付近にreCAPTCHA利用文言を表示する
 * ======================================== */

.grecaptcha-badge {
  visibility: hidden;
}