@charset "UTF-8";
/* お見積もりシミュレーション */
.EstimateWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: self-start;
  gap: 30px;
  max-width: 1280px;
  margin: 30px auto;
}

.selectOptions {
  width: calc(65% - 15px);
}

.EstimateResult {
  width: calc(35% - 15px);
  background: #e5f7fe;
  padding: 15px;
}

.EstimateResult.fixed {
  position: fixed;
  top: 100px;
  z-index: 1;
  max-height: 65vh;
  overflow-y: auto;
}

.EstimateResult.end {
  opacity: 0;
  transition: all 0.5s;
}

@media only screen and (max-width: 768px) {
  .EstimateWrap {
    display: flex;
    flex-wrap: wrap;
  }
  .selectOptions, .EstimateResult {
    width: 100%;
  }
}
p.estimateTitle {
  align-items: center;
  color: #20537d;
  display: flex;
  font-size: 25px;
  font-weight: bold;
  margin: 50px 0 20px;
  text-align: left;
}

p.estimateTitle:first-child {
  margin-top: 0;
}

.estimatePlan, .estimateOption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.estimatePlan input {
  display: none;
}

label.planSelect {
  border: 2px solid #bcbdbf;
  border-radius: 10px;
  color: #bcbdbf;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5em;
  margin: 0;
  padding: 20px 0;
  text-align: center;
  transition: ease 0.2s opacity;
  width: calc(33.3% - 10px);
}

input[name=plans]:checked + label.planSelect {
  border-color: #007cd8;
  color: #007cd8;
}

.optionItem {
  width: calc(50% - 7.5px);
}

label.optionSelect {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

input[name=options] {
  display: none;
}

span.checkBtn {
  display: inline-block;
  min-width: 30px;
  height: 20px;
  border: 3px solid #ddd;
  border-radius: 50px;
  position: relative;
}

span.checkBtn:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50px;
  top: 0;
  bottom: 0;
  left: 2px;
  margin: auto 0;
  position: absolute;
  transition: all 0.2s ease;
}

input[name=options]:checked + span.checkBtn {
  border-color: #007cd8;
}

input[name=options]:checked + span.checkBtn:after {
  background: #007cd8;
  left: calc(50% - 2px);
}

p.paymentTitle {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #007cd8;
  margin-top: 0;
  margin-bottom: 15px;
}

.EstimateList {
  display: flex;
  justify-content: end;
  align-items: center;
  border-bottom: 1px solid #007cd8;
}

.EstimateList:first-child {
  color: #007cd8;
  font-weight: bold;
}

.EstimateList:last-child {
  border-bottom: none;
}

.EstimateList span:first-child {
  flex: auto;
}

.EstimateList span:nth-child(2) {
  min-width: 5em;
  text-align: right;
}

.EstimateList:first-child span:nth-child(2) {
  text-align: center;
}

.EstimateList span:last-child {
  white-space: nowrap;
  margin-left: 15px;
}

.details {
  border-top: 2px solid #007cd8;
  border-bottom: 1px solid #007cd8;
}

.paymentContent {
  margin-bottom: 30px;
}

input.input_num, span.input_num {
  width: 3em;
  text-align: center;
}

span.input_num {
  padding-right: 15px;
}

span.taxExcluded {
  font-size: 14px;
}

#payment {
  color: #007cd8;
  text-align: center;
  font-size: 60px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
  line-height: 1;
  margin-top: 15px;
  margin-bottom: 0;
}

#payment span.yen {
  font-size: 30px;
  font-weight: 600;
}

.suboption {
  transition: all 0.5s;
  height: 0;
  overflow: hidden;
}

.suboption div {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

#tax {
  color: #007cd8;
  text-align: center;
  font-family: "Rubik", sans-serif;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  margin-top: 0;
}

#tax span {
  font-size: 16px;
  font-weight: 600;
}

.EstimateList input[type=number] {
  max-width: 3em;
  padding-left: 0 !important;
}

@media only screen and (max-width: 400px) {
  .optionItem {
    width: 100%;
  }
}
.repletion {
  padding-left: 1.2em;
  font-size: 0.9rem;
  position: relative;
}

.repletion:before {
  content: "※";
  position: absolute;
  left: 0;
}

.options_notes {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1280px;
  margin: auto;
}

.options_summary .repletion {
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.4;
}

.options_summary .repletion:last-child {
  margin-bottom: 0;
}

/**/
input#select_plan, input#estimated_amount {
  pointer-events: none;
}

div#form_options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}/*# sourceMappingURL=estimate.css.map */