html {
  font-size: 10px;
}

body {
  font-size: 1.4rem;
  background: #eee;
  font-family: "Noto Sans JP", sans-serif;
}

h1 {
  font-size: 2rem;
}

p {
  margin-bottom: 0;
}

.page-quotation {
  width: 720px;
  margin: 80px auto 3% auto;
}

.page-quotation .description {
  margin-top: 1em;
}

.card {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2em;
  position: relative;
}

.card.head-line {
  border-top: 5px solid #00967b;
}

.form-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
}

.form-item .select-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 20px;
  width: calc(50% - 50px);
  min-width: 188px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.4s;
}

.select-button img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  display: inline-block;
}

.select-button .item-desc .texts {
  font-weight: normal;
  margin-top: 5px;
  font-size: 1.2rem;
}

.form-item .select-button .price {
  font-size: 1.2rem;
  margin-top: 5px;
}

.form-item .select-button.active {
  background: #e5fff9;
  border-color: #00755f;
  color: #00755f;
}

.card-inner:last-child {
  margin-top: 3rem;
}

.modal-wrapper {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal-wrapper .modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  position: relative;
  width: 450px;
  max-width: 100%;
}

.modal-wrapper .modal-content label {
  display: block;
  margin-bottom: 5px;
}

.modal-wrapper .modal-content label span {
  display: inline-block;
  margin-left: 10px;
  font-size: 1.1rem;
  padding: 5px;
}

.modal-wrapper .modal-content label span.required {
  background: rgb(255, 76, 76);
  color: #fff;
}

.modal-wrapper .modal-content label span.optional {
  background: rgb(126, 126, 126);
  color: #fff;
}

.modal-wrapper .modal-content .btn-square {
  margin-top: 1em;
  width: 100%;
  padding: 10px;
}

.modal-wrapper .modal-content .fa-times {
  position: absolute;
  right: 1em;
  top: 1em;
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-wrapper .modal-content .modal-form-item {
  margin-top: 1em;
}

.modal-wrapper .modal-content .modal-form-item [type=text],
.modal-wrapper .modal-content .modal-form-item [type=mail],
.modal-wrapper .modal-content .modal-form-item [type=tel] {
  width: 100%;
  padding: 5px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

.total-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-content .total {
  font-weight: bold;
}

.total-content .total span {
  font-size: 2.5rem;
}

.btn-square {
  background: #004896;
  border: none;
  padding: 20px;
  color: #fff;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
}

.btn-square:hover {
  opacity: 0.9;
}

.btn-square:disabled {
  color: #555;
  background: #999;
  cursor: not-allowed;
}

.btn-square:disabled:hover {
  opacity: 1;
}

.copyright {
  display: block;
  text-align: center;
  margin-bottom: 1em;
}

.complete-wrapper {
  display: flex;
  justify-content: center;
  padding: 5%;
}

.complete-wrapper .complete-content {
  background: #fff;
  max-width: 600px;
  text-align: center;
  padding: 5%;
}

.complete-wrapper .complete-content .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.complete-wrapper .complete-content img {
  margin-top: 5em;
  max-width: 100%;
  width: 200px;
}

.contact-address {
  margin-top: 30px;
  border: 1px solid #ccc;
  padding: 1em;
  background: #fafafa;
}

@media screen and (max-width: 960px) {
  .page-quotation {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .card {
    padding: 20px;
    margin-bottom: 1em;
  }
  .form-item {
    justify-content: flex-start;
  }
  .form-item .select-button {
    margin-bottom: 5px;
    padding: 15px;
    margin-right: 0;
    width: 100%;
    min-width: auto;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .total-content {
    display: block;
  }
  .total-content .btn-square {
    width: 100%;
    margin-top: 10px;
  }
  .modal-wrapper .modal-content {
    max-width: 90%;
  }
  .complete-wrapper .complete-content {
    padding: 30px;
  }
  .complete-wrapper .complete-content img {
    width: 150px;
    margin-top: 3em;
  }
  .select-button .item-desc {
    width: 55%;
  }
}
.card .bigttl {
  border-radius: 10px 10px 0 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 1.3rem 1rem;
  color: #fff;
  background: #00967b;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.card .ttl {
  margin-bottom: 1.8rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.card:not(.foundprice-box) .ttl {
  margin-top: 2.5rem;
}

.price-form .img-box {
  display: flex;
  justify-content: center;
}

.price-form .img-box img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.price-form-item .form-item {
  display: flex;
  align-items: center;
}

.price-form-item .notice {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.price-form-item .notice .text + .text {
  margin-top: 0.5rem;
}

.form-cntl {
  border: 1px solid #ccc;
  padding: 1rem 1.2rem;
  line-height: 1.5;
  font-size: 16px;
  width: 100%;
  max-width: 150px;
}

.kit-price-box {
  margin-top: 2rem;
}

.kit-price {
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .card:not(.foundprice-box) .ttl {
    margin-top: 4.6rem;
  }
  .card:not(.foundprice-box) .card-inner2:not(:first-child) .ttl {
    margin-top: 2.5rem;
  }
}
.complete-content img.mailed-icon {
  margin-top: 30px;
  max-width: 100%;
  width: 200px;
}

.home-link {
  display: block;
  margin-top: 30px;
}

.card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-inner .select-button {
  width: calc(50% - 15px);
}

.card-inner2:nth-child(n+2) {
  margin-top: 2rem;
}

.card-inner2 + .para {
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3;
}

.select-button .btn-in-img {
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  .card-inner {
    display: block;
  }
  .card-inner .select-button {
    width: 100%;
  }
  .card-inner .select-button:last-child {
    margin-top: 2.5rem;
  }
  .card-inner2:nth-child(2) {
    margin-top: 4.5rem;
  }
}
.page-quotation h1 {
  line-height: 1.3;
}

.estimate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  padding-left: 10px;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  min-height: 50px;
}

.estimate-header a {
  display: inline-block;
  width: 100%;
  height: auto;
}

.estimate-header img {
  width: 100px;
  height: auto;
}

.pc-nav a {
  margin-right: 40px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}/*# sourceMappingURL=estimate-style.css.map */