.estimate-form {
  background-color: #f0f0f0;
  width: 100%;
  border-radius: 2px;
  font-size: 16px;
  padding-bottom: 15px;
}

.estimate-form__container {
  margin: 0 15px;
}

.estimate-form__header {
  font-size: 28px;
  font-family: -apple-system,BlinkMacSystemFont,Hiragino Kaku Gothic ProN,Hiragino sans,Meiryo,sans-serif;
  font-weight: 700;
  line-height: 1.28571429em;
  text-transform: none;
  color: rgba(0,0,0,.87);
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
}

.estimate-form__body {
  background: #fff;
  padding: 20px;
}

.estimate-form__title {
  text-align: left;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #333;
  padding: 6px 8px;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 5px solid #f0f0f0;
}

.estimate-form__items {
  padding: 6px 8px;
}

.estimate-form__cols {
  display: flex;
  flex-wrap: wrap;
}

.estimate-form__cols > .estimate-form__item:not(:last-child) {
  margin-right: 20px;
}
.estimate-form__devices.is-hidden {
  display: none;
}

.estimate-form__item {
  margin-bottom: 30px;
}

.estimate-form__item--flex {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.estimate-form__plusIcon {
  background: #F0F0F0;
  border: 1px solid #C4C4C4;
  border-radius: 3px;
  color: #828282;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 11px;
}

.estimate-form__item--flex.js-estimate-form__plus {
  display: none;
}

.estimate-form__item--flex.js-estimate-form__plus.is-active {
  display: flex;
}

.estimate-form__item--inline {
  display: inline-block;
}

.estimate-form__item.estimate-form__item--inline {
  margin-bottom: 20px;
}

.estimate-form__item--inline.js-estimate__options {
  display: none;
}

.estimate-form__item--inline.js-estimate__options.is-active {
  display: inline-block;
}

.estimate-form__item > .estimate-form__item--text {
  width: 200px;
  height: 36px;
  font-size: 14px;
  padding: 8px 12px;
  line-height: 1;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
}

.estimate-form__notice {
  font-size: 12px;
  font-weight: 400;
  color: #828282;
  line-height: 1.3;
  margin-top: 2px;
  margin-bottom: 0;
  padding: 0;
}

.estimate-form__item--label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
  margin-bottom: 6px;
}

.estimate-form__item--label.required::after {
  content: "*";
  color: #EB5757;
}

.estimate-form__plusText.estimate-form__item--label {
  margin: 0;
}

.estimate-form__item--radioLabel,.estimate-form__item--checkboxLabel {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
  margin-bottom: 10px;
}

input[type=radio].estimate-form__item--radio,input[type=checkbox].estimate-form__item--checkbox {
  margin: 0 8px;
  transform: scale(1.2);
  border: 1px solid #c4c4c4;
}

.estimate-form__item > .estimate-form__item--textarea {
  width: 100%;
  font-size: 14px;
  padding: 8px 12px;
  line-height: 1.2;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
}

.estimate-form__item--term {
  color: #2D9CDB;
  text-decoration-line: underline;
}

.estimate-form__buttonContainer {
  display: flex;
  justify-content: center;
}

.estimate-form__button {
  width: 360px;
  height: 50px;
  background: #DF3677;
  border-radius: 5px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.estimate-form__buttonConfirm {
  width: 360px;
  height: 50px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #B94A73;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #B94A73;
  margin-right: 40px;
}

.estimate-form__item--select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: '';
  background: white;
  vertical-align: middle;
  font-size: 14px;
  -webkit-appearance: button;
  appearance: button;
  padding: 8px 12px;
  border: 1px solid #c4c4c4;
  color: #3D5266;
  font-weight: 400;
  width: 200px;
  height: 36px;
  border-radius: 3px;
}

.estimate-form__item--select > option {
  text-align: left;
}

.estimate-form__ipPhone {
  margin-top: 180px;
}

.js-estimate-form__device.is-hidden {
  display: none;
} 

.js-estimate-form__device--other.is-hidden {
  display: none;
}

label.error {
  display: block;
  color: #EB5757;
  font-size: 12px;
  line-height: 1.5;
}

/* 600pixel start */
@media screen and ( max-width : 600px ){
  .estimate-form {
    padding-top: 14px;
  }

  .estimate-form__header {
    font-size: 22px;
  }

  .estimate-form__cols {
    flex-direction: column;
  }


  .estimate-form__cols > .estimate-form__item:not(:last-child) {
    margin-right: 0;
  }

  .estimate-form__item {
    margin-bottom: 20px;
  }
  
  .estimate-form__item.estimate-form__item--inline {
    margin-bottom: 16px;
  }
  
  .estimate-form__item > .estimate-form__item--text {
    width: 100%;
  }
}