@charset "utf-8";
/*=============================================================

	Date         : 2026-06-08
	CSS Document : ESTIMATE設定

=============================================================*/

/* ------------------------------
  estimate
------------------------------ */

#main.estimate {
  padding: 0 0 88px;
  color: #111;
}

.estimate-intro {
  max-width: 880px;
  margin: 0 auto;
  padding-top: 126px;
  text-align: center;
}

.estimate-intro__title {
  position: relative;
  margin: 0 0 36px;
  padding-bottom: 12px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.estimate-intro__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 404px;
  height: 1px;
  background: #8f8f8f;
  transform: translateX(-50%);
}

.estimate-intro__lead {
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}

.estimate-intro__lead p {
  margin: 0;
}

.estimate-notes {
  max-width: 850px;
  margin: 52px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 14px;
  line-height: 1.9;
}

.estimate-notes li {
  position: relative;
  padding-left: 1em;
}

.estimate-notes li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------
  responsive
------------------------------ */

@media (max-width: 767px) {
  #main.estimate {
    padding: 0 20px 64px;
  }

  .estimate-intro {
    max-width: none;
    padding-top: 72px;
  }

  .estimate-intro__title {
    margin-bottom: 28px;
    font-size: 22px;
  }

  .estimate-intro__title::after {
    width: 260px;
  }

  .estimate-intro__lead {
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
  }

  .estimate-notes {
    margin-top: 40px;
    font-size: 13px;
    line-height: 1.8;
  }

  .estimate-notes li + li {
    margin-top: 8px;
  }
}