.bh_insert_widget {
  padding: 0;
  /* from bh */
  /* -from bh */
}
.bh_insert_widget .bh_write_form .btn {
  display: inline-block;
  width: auto;
  height: auto !important;
  color: var(--bh_color_white);
  font-size: inherit;
  line-height: 1.4 !important;
  font-weight: 400;
  text-align: center;
  vertical-align: top;
  background: none;
  background-color: var(--bh_color_gray_600);
  border: 1px solid var(--bh_color_gray_600);
  border-radius: 0;
  padding: 0 10px !important;
  cursor: pointer;
  text-shadow: none;
  box-shadow: none;
  box-sizing: border-box;
}
.bh_insert_widget .bh_write_form input.btn, .bh_insert_widget .bh_write_form button.btn {
  width: 44px;
  height: 34px !important;
  font-size: 13px;
  line-height: 31px !important;
  font-weight: 300;
  padding: 0 3px !important;
}
.bh_insert_widget .bh_write_form input.btn:focus, .bh_insert_widget .bh_write_form button.btn:focus {
  outline: none;
}
.bh_insert_widget .bh_write_form input:not([type=hidden]) + input, .bh_insert_widget .bh_write_form button:not([type=hidden]) + input, .bh_insert_widget .bh_write_form .input_with_btn + * {
  margin-left: 3px;
}
.bh_insert_widget .bh_write_form input[type="text"], .bh_insert_widget .bh_write_form input[type="number"], .bh_insert_widget .bh_write_form input[type="password"], .bh_insert_widget .bh_write_form input[type="email"], .bh_insert_widget .bh_write_form input[type="date"], .bh_insert_widget .bh_write_form input[type="tel"], .bh_insert_widget .bh_write_form input[type="url"] {
  display: inline-block;
  font-size: 18px;
  height: 46px;
  color: var(--bh_color_gray_900);
  line-height: 31px;
  background-color: var(--bh_color_white);
  border: 1px solid var(--bh_color_gray_300);
  padding: 0 15px;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-transition: box-shadow 0.2s ease, border-color 0.2s ease;
  border-radius: 5px;
}
.bh_insert_widget .bh_write_form input[type="text"]::placeholder, .bh_insert_widget .bh_write_form input[type="number"]::placeholder, .bh_insert_widget .bh_write_form input[type="password"]::placeholder, .bh_insert_widget .bh_write_form input[type="email"]::placeholder, .bh_insert_widget .bh_write_form input[type="date"]::placeholder, .bh_insert_widget .bh_write_form input[type="tel"]::placeholder, .bh_insert_widget .bh_write_form input[type="url"]::placeholder {
  color: var(--bh_color_gray_400);
}
@media (max-width: 992px) {
  .bh_insert_widget .bh_write_form input[type="text"], .bh_insert_widget .bh_write_form input[type="number"], .bh_insert_widget .bh_write_form input[type="password"], .bh_insert_widget .bh_write_form input[type="email"], .bh_insert_widget .bh_write_form input[type="date"], .bh_insert_widget .bh_write_form input[type="tel"], .bh_insert_widget .bh_write_form input[type="url"] {
    font-size: 16px;
  }
}
.bh_insert_widget .bh_write_form input[type="text"]:hover, .bh_insert_widget .bh_write_form input[type="number"]:hover, .bh_insert_widget .bh_write_form input[type="password"]:hover, .bh_insert_widget .bh_write_form input[type="email"]:hover, .bh_insert_widget .bh_write_form input[type="date"]:hover, .bh_insert_widget .bh_write_form input[type="tel"]:hover, .bh_insert_widget .bh_write_form input[type="url"]:hover {
  background-color: var(--bh_color_white);
  border-color: var(--bh_color_gray_300);
  outline: none;
  box-shadow: 0 1px 5px 0 rgba(28, 35, 69, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.bh_insert_widget .bh_write_form input[type="text"]:focus, .bh_insert_widget .bh_write_form input[type="number"]:focus, .bh_insert_widget .bh_write_form input[type="password"]:focus, .bh_insert_widget .bh_write_form input[type="email"]:focus, .bh_insert_widget .bh_write_form input[type="date"]:focus, .bh_insert_widget .bh_write_form input[type="tel"]:focus, .bh_insert_widget .bh_write_form input[type="url"]:focus {
  background-color: var(--bh_color_white);
  outline: none;
  box-shadow: 0 1px 5px 0 rgba(28, 35, 69, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.bh_insert_widget .bh_write_form textarea {
  display: block;
  width: 100%;
  color: var(--bh_color_gray_900);
  background-color: var(--bh_color_gray_50);
  border: 1px solid var(--bh_color_gray_200);
  padding: 8px 9px;
  box-sizing: border-box;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.bh_insert_widget .bh_write_form textarea::placeholder {
  color: var(--bh_color_gray_400);
}
.bh_insert_widget .bh_write_form textarea:hover {
  background-color: var(--bh_color_white);
  border-color: var(--bh_color_gray_300);
  outline: none;
  box-shadow: 0 1px 5px 0 rgba(28, 35, 69, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.bh_insert_widget .bh_write_form textarea:focus {
  background-color: var(--bh_color_white);
  border-color: var(--bh_color_gray_900);
  outline: none;
  box-shadow: 0 1px 5px 0 rgba(28, 35, 69, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.bh_insert_widget .bh_write_form select {
  display: inline-block;
  min-width: 90px;
  height: 34px;
  line-height: 31px;
  padding: 0 0 0 9px;
  background-color: var(--bh_color_gray_100);
  border: 1px solid var(--bh_color_gray_300);
  border: 1px solid var(--bh_color_gray_200);
  box-sizing: border-box;
}
.bh_insert_widget .bh_write_form select:disabled {
  color: var(--bh_color_gray_600);
  background-color: var(--bh_color_gray_100);
  background-color: var(--bh_color_gray_200);
  opacity: 1;
  -webkit-text-fill-color: none;
}
.bh_insert_widget .bh_write_form input.input_wide {
  width: 100%;
}
.bh_insert_widget .bh_write_form input:not([type=checkbox]):not([type=radio]):disabled, .bh_insert_widget .bh_write_form input:not([type=checkbox]):not([type=radio]):not([type=button]):not([type=submit]):not([type=file]):read-only {
  color: var(--bh_color_gray_600);
  background-color: var(--bh_color_gray_100);
  background-color: var(--bh_color_gray_200);
  opacity: 1;
  -webkit-text-fill-color: none;
}
.bh_insert_widget .bh_write_form input[type="radio"], .bh_insert_widget .bh_write_form input[type="checkbox"] {
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin-top: -2px;
  cursor: pointer;
}
.bh_insert_widget .bh_write_form input[type="radio"] + label, .bh_insert_widget .bh_write_form input[type="checkbox"] + label {
  display: inline-block;
  height: 20px;
  color: var(--bh_color_gray_900);
  line-height: 19px;
  vertical-align: middle;
  padding-left: 5px;
  margin-right: 14px;
  cursor: pointer;
}
.bh_insert_widget .bh_write_form input[type="file"] {
  display: inline-block;
  height: 34px !important;
  color: var(--bh_color_gray_900);
  font-size: 13px;
  line-height: 34px !important;
  font-weight: 300;
  text-align: center;
  vertical-align: top;
  background: none;
  background-color: var(--bh_color_gray_50);
  border: 1px solid var(--bh_color_gray_200);
  border-radius: 0;
  padding: 0 9px !important;
  cursor: pointer;
  text-shadow: none;
  box-shadow: none;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .bh_insert_widget .bh_write_form input:not([type=hidden]) + input, .bh_insert_widget .bh_write_form button:not([type=hidden]) + input, .bh_insert_widget .bh_write_form .input_with_btn + * {
    margin-left: 0;
  }
  .bh_insert_widget .bh_write_form input[type="text"], .bh_insert_widget .bh_write_form input[type="password"], .bh_insert_widget .bh_write_form input[type="email"] {
    width: 100%;
  }
  .bh_insert_widget .bh_write_form input[type="number"] {
    width: auto;
  }
  .bh_insert_widget .bh_write_form input[type="text"].date, .bh_insert_widget .bh_write_form input[type="text"].krzip-postcode {
    width: calc(100% - 48px);
  }
  .bh_insert_widget .bh_write_form input[type="date"], .bh_insert_widget .bh_write_form input[type="tel"], .bh_insert_widget .bh_write_form input[type="file"], .bh_insert_widget .bh_write_form input.input_with_btn {
    width: calc(100% - 48px);
  }
  .bh_insert_widget .bh_write_form input[type="text"].tel, .bh_insert_widget .bh_write_form input[type="tel"].tel {
    width: calc(33.333% - 3px);
  }
  .bh_insert_widget .bh_write_form select ~ input[type="text"].tel, .bh_insert_widget .bh_write_form select ~ input[type="tel"].tel {
    width: calc(33.333% - 90px);
  }
  .bh_insert_widget .bh_write_form textarea {
    width: 100%;
  }
}
.bh_insert_widget .bh_write_form .form_item {
  display: block;
  margin-bottom: 30px;
}
.bh_insert_widget .bh_write_form .form_item ul > li {
  display: inline-block;
}
.bh_insert_widget .bh_write_form .form_item label {
  display: inline-block;
  min-width: 70px;
  font-size: 13px;
}
.bh_insert_widget .bh_write_form .form_item .krZip .krzip-postcode-wrap {
  margin-bottom: 5px;
}
.bh_insert_widget .bh_write_form .form_item .krZip .krzip-postcode-wrap .krzip-delete {
  display: none;
}
.bh_insert_widget .bh_write_form .form_item .krZip .krzip-address-wrap {
  margin-bottom: 5px;
}
.bh_insert_widget .bh_write_form .form_item .krZip .krzip-address-wrap .krzip-jibunAddress, .bh_insert_widget .bh_write_form .form_item .krZip .krzip-address-wrap .krzip-extraAddress {
  display: none;
}
.bh_insert_widget .bh_write_form .form_item .item_title {
  position: relative;
  color: var(--bh_color_gray_900);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.bh_insert_widget .bh_write_form .form_item .item_input {
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
}
.bh_insert_widget .bh_write_form .form_item .item_input.style2 {
  height: 100%;
  display: flex;
  align-items: end;
}
.bh_insert_widget .bh_write_form .form_item .item_input ul {
  display: flex;
  flex-wrap: wrap;
}
.bh_insert_widget .bh_write_form .form_item .item_input ul li {
  width: 50%;
}
.bh_insert_widget .bh_write_form .form_item .item_input ul li input {
  appearance: none;
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid var(--bh_color_gray_400);
  vertical-align: middle;
  margin-top: -2px;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 50px;
}
.bh_insert_widget .bh_write_form .form_item .item_input ul li input:checked {
  appearance: auto;
}
.bh_insert_widget .bh_write_form input:not([type=hidden]) + input, .bh_insert_widget .bh_write_form button:not([type=hidden]) + input, .bh_insert_widget .bh_write_form .input_with_btn + * {
  margin-left: 0;
}
.bh_insert_widget .bh_write_form input[type="text"], .bh_insert_widget .bh_write_form input[type="password"], .bh_insert_widget .bh_write_form input[type="email"], .bh_insert_widget .bh_write_form input[type="url"] {
  width: 100%;
}
.bh_insert_widget .bh_write_form input[type="number"] {
  width: auto;
}
.bh_insert_widget .bh_write_form input[type="text"].date, .bh_insert_widget .bh_write_form input[type="text"].krzip-postcode {
  width: calc(100% - 48px);
}
.bh_insert_widget .bh_write_form input[type="date"], .bh_insert_widget .bh_write_form input[type="tel"], .bh_insert_widget .bh_write_form input[type="file"], .bh_insert_widget .bh_write_form input.input_with_btn {
  width: calc(100% - 48px);
}
.bh_insert_widget .bh_write_form input[type="text"].tel, .bh_insert_widget .bh_write_form input[type="tel"].tel {
  width: calc(33.333% - 3px);
}
.bh_insert_widget .bh_write_form select ~ input[type="text"].tel, .bh_insert_widget .bh_write_form select ~ input[type="tel"].tel {
  width: calc(33.333% - 90px);
}
.bh_insert_widget .bh_write_form .write_editor {
  position: relative;
}
.bh_insert_widget .bh_write_form .write_editor div[id^="ckeditor_"], .bh_insert_widget .bh_write_form .write_editor div[id^="ckeditor_"] *, .bh_insert_widget .bh_write_form .write_editor div[id^="ckeditor_"] *:before, .bh_insert_widget .bh_write_form .write_editor div[id^="ckeditor_"] *:after {
  -webkit-box-sizing: initial !important;
  -moz-box-sizing: initial !important;
  box-sizing: initial !important;
}
.bh_insert_widget .bh_write_form .write_editor.editor_file_only div[id^="ckeditor_"], .bh_insert_widget .bh_write_form .write_editor.editor_file_only div[id^="simpleeditor_instance_"], .bh_insert_widget .bh_write_form .write_editor.editor_file_only .editor_autosaved_message {
  display: none !important;
}
.bh_insert_widget .bh_write_form .write_editor div[id^="simpleeditor_"] {
  font-size: 16px;
}
.bh_insert_widget .bh_write_form .write_editor .rx_simpleeditor.light {
  font-size: 18px;
  color: var(--bh_color_gray_900);
  padding: 10px 15px;
  border-color: var(--bh_color_gray_300);
  border-radius: 5px;
  max-height: 120px;
}
.bh_insert_widget .bh_write_form .write_editor .editor_placeholder {
  position: absolute;
  top: 10px;
  left: 15px;
  color: var(--bh_color_gray_400);
  font-size: 18px;
}
.bh_insert_widget .bh_write_form .write_editor .editor_placeholder.hide {
  display: none;
}
@media (max-width: 992px) {
  .bh_insert_widget .bh_write_form .write_editor .rx_simpleeditor.light {
    font-size: 16px;
  }
  .bh_insert_widget .bh_write_form .write_editor .editor_placeholder {
    font-size: 16px;
  }
}
.bh_insert_widget .agreement .confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bh_color_gray_50);
  text-align: center;
  padding: 10px 15px;
  border-radius: 5px;
  /*background: #f5f5f5;*/
}
.bh_insert_widget .agreement .confirm a {
  width: 85px;
  text-align: center;
  line-height: 30px;
  margin-left: 15px;
}
.bh_insert_widget .agreement .confirm input[type="radio"] {
  appearance: none;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid var(--bh_color_gray_400);
  vertical-align: middle;
  margin-top: -2px;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 50px;
}
.bh_insert_widget .agreement .confirm input[type="radio"]:checked {
  appearance: auto;
}
.bh_insert_widget .agreement .confirm label {
  cursor: pointer;
}
.bh_insert_widget .bh_btn {
  width: 200px;
  line-height: 50px;
  padding: 0;
  text-align: center;
  color: var(--bh_color_white);
  background-color: var(--bh_color_main);
  font-size: 20px;
  font-weight: 800;
  border-color: var(--bh_color_main);
  box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.bh_insert_widget .bh_btn:hover {
  color: var(--bh_color_white);
  background-color: var(--bh_color_gray_900) !important;
  border-color: var(--bh_color_gray_900);
}
@media (max-width: 992px) {
  .bh_insert_widget .bh_write_form {
    padding: 0;
  }
  .bh_insert_widget .bh_write_form .form_item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .bh_insert_widget .bh_write_form .form_item .item_title {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    height: auto;
  }
  .bh_insert_widget .bh_write_form .form_item .item_title .name {
    position: relative;
  }
  .bh_insert_widget .bh_write_form .form_item .item_input {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .bh_insert_widget .agreement .confirm {
    display: block;
  }
  .bh_insert_widget .agreement .confirm a {
    width: 75px;
    line-height: 26px;
  }
  .bh_insert_widget .bh_btn {
    line-height: 45px;
    font-size: 18px;
  }
}
.bh_insert_widget .insert_done_wrap {
  border-radius: 3px;
  padding: 30px;
}
.bh_insert_widget .insert_done_wrap .bh_title {
  font-size: 3.4rem;
  text-align: center;
}
.bh_insert_widget .insert_done_wrap .insert_btn_wrap {
  text-align: center;
  margin-top: 40px;
}
/*# sourceMappingURL=29d16cd68d872020055019f7d1c2ac21afff35cf.widget.scss.map */
