.mktoForm,
.mktoHtmlText.mktoHasWidth,
.mktoForm .mktoCheckboxList,
.mktoForm .mktoRadioList,
.mktoLayoutLeft .mktoLabel {
  width: 100% !important;
}
.mktoForm p {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
.mktoForm .mktoLabel { padding-top: 0.3em; }
.mktoForm .mktoField {
  float: left;
  line-height: 1.2em;
}
.mktoForm .mktoLabel {
  font-family: "NotoSansJP-Bold";
  font-weight: 600;
  font-size: 16px;
}

/* Required */
.mktoForm .required.language-ja::After {
  display: inline-block;
  width: 38px;
  margin-left: 10px;
  padding: 1px 6px;
  color: #dc1e00;
  font-size: 13px;
  content: "*";
}

/* .form-row1 { padding: 30px 30px 0 !important; }
.form-row9 { padding-bottom: 30px !important; }
.page-seminar-inquiry .mktoFormRow.form-row9 {
  padding-top: 30px !important;
  padding-bottom: 0 !important;
}
.form-row10 { padding-top: 30px !important; } */
.mktoFormRow a {
  font-family: "NotoSansJP";
  color: #007bff !important;
  font-size: 18px;
}
.mktoFormRow a:hover {
  color: #0056b3 !important;
  text-decoration: underline !important;
}
.mktoFormRow input[type="text"],
.mktoFormRow input[type="number"],
.mktoFormRow input[type="email"],
.mktoFormRow input[type="url"],
.mktoFormRow input[type="date"],
.mktoFormRow input[type="tel"],
.mktoFormRow select,
.mktoFormRow textarea {
  width: 100% !important;
  border: 1px solid #ccc !important;
  padding: 9px 8px !important;
  font-size: 14px !important;
  background: #fff !important;
}
.mktoFormRow input[type="checkbox"],
.mktoFormRow input[type="radio"] { margin: 3px 3px 3px 0; }
.mktoForm textarea.mktoField { resize: vertical; }
.mktoFormRow label {
  font-family: "NotoSansJP-Regular";
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.mktoForm .mktoRadioList label:hover,
.mktoForm .mktoRadioList input:hover,
.mktoForm .mktoFieldDescriptor select:hover,
.mktoForm .mktoCheckboxList label:hover,
.mktoForm .mktoCheckboxList input:hover,
.mktoForm .mktoButtonRow button:hover {
  cursor: pointer;
}

/* BUTTON STYLE */
.mktoButtonRow {
  padding-bottom: 24px;
  background-color: transparent;
 }
.mktoButtonWrap {
  position: relative;
  background: #f07800;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 50px;
}
.mktoButtonWrap::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  height: 100%;
  width: 100%;
  background: #fff;
  content: "";
    -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
    -webkit-transform: scaleX(0);
  transform: scaleX(0);
    -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.mktoButtonWrap:hover {
  opacity: .999;
  background: transparent !important;
}
.mktoButtonWrap:hover::after {
  -webkit-transform: none;
  transform: none;
  border-radius: 50px;
}
.mktoButton {
  position: relative;
  display: block;
  width: 100%;
    -webkit-transition: all .3s;
  transition: all .3s;
      -webkit-appearance: none;
    -moz-appearance: none;
  appearance: none;
}
.mktoButton,
.mktoButton:focus {
  border: 0;
    -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}
.mktoButton:hover {
  color: #f07800 !important;
  background: transparent !important;
  opacity: .999;
}
.mktoForm textarea:focus,
.mktoForm input:focus { outline: none; }
.mktoButtonRow input {
  padding: 25px 0;
  font-size: 20px;
}
.mktoButtonRow input:hover { text-decoration: underline; }
.form-field { font-size: 14px; }
.form-field span:last-child { display: none; }
.button-responsive {width: 250px;}
/* BUTTON STYLE */

/* Reset button */
.mktoForm .mktoButtonWrap.mktoGlow .mktoButton {
  border: 2px solid #f07800 !important;
  font-family: "NotoSansJP-Black";
  width: 100% !important;
  padding: 18px 8px !important;
  background: transparent !important;
  font-size: 17px !important;
  color: #fff;
  box-shadow: inherit !important;
  border-radius: 50px;
}
.mktoForm .mktoButtonWrap:hover .mktoButton {
  background: transparent !important;
  color: #db6700;
  border-radius: 50px;
}
/* Reset */

/* Error Message */
.mktoForm .mktoError {
  position: absolute;
  z-index: 99;
  bottom: unset !important;
  right: unset !important;
  color: #bf0000;
}
.mktoForm .mktoError .mktoErrorArrowWrap {
  position: absolute;
  top: 0;
  left: 5px;
  z-index: 100;
  height: 8px;
  width: 16px;
  overflow: hidden;
}
.mktoForm.ie7 .mktoError .mktoErrorArrowWrap { top: -8px; }
.mktoForm .mktoError .mktoErrorArrow {
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-top: 5px;
  background-color: #e51b00;
  border: 1px solid #9f1300;
  border-right: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

/** These two styles are for browsers that don't support css transforms */
.mktoForm .mktoError .mktoErrorArrowWrap.mktoArrowImage {
  bottom: -7px;
  background: transparent url("../images/callout-arrow-up-red.png") top center no-repeat;
}
.mktoForm .mktoError .mktoErrorArrowWrap.mktoArrowImage .mktoErrorArrow { display: none; }
.mktoForm .mktoError .mktoErrorMsg {
  display: block;
  margin-top: 7px;
  padding: 0.4em 0.6em;
  background-color: #e51b00;
  color: #f3f3f3;
  background-image: -webkit-linear-gradient(#e51b00 43%, #ba1600 100%);
  background-image: -moz-linear-gradient(#e51b00 43%, #ba1600 100%);
  background-image: linear-gradient(#e51b00 43%, #ba1600 100%);
  background-image: -ms-linear-gradient(#e51b00 43%, #ba1600 100%);
  border: 1px solid #9f1300;
  -webkit-border-radius: 6px;
  border-radius: 6px !important;
  -webkit-box-shadow: rgba(0,0,0,0.65) 0 2px 7px, inset #ff3c3c 0 1px 0px;
  box-shadow: rgba(0,0,0,0.65) 0 2px 7px, inset #ff3c3c 0 1px 0px;
  text-shadow: #901100 0 -1px 0;
  font-size: 1em;
  line-height: 1.2em;
}
/* Error Message */

@media screen and (max-width: 991px) {
  .mktoForm .mktoLabel{ width: 100% !important; }
  .mktoFieldWrap { flex-direction: column; }
}
@media screen and (max-width: 767px) {
  .mktoFormRow { padding: 5px 0 5px; }
}
@media (min-width: 992px) {
  .marketo-form .col-adjust {
    -ms-flex: 0 0 37.5% !important;
    flex: 0 0 37.5% !important;
    max-width: 37.5% !important;
  }
}
@media (min-width: 768px) {
  .mktoFormRow { padding: 0; }
  .mktoForm .mktoLabel {
    position: relative;
    padding-right: 50px;
    font-size: 18px;
  }
}

.marketo-maintenance h5 {
  font-size: 20px;
  line-height: 1.5;
}
