@charset "UTF-8";

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  height: 53px;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", source-han-sans-japanese, -apple-system, blinkmacsystemfont, roboto, "Segoe UI", "Helvetica Neue", helveticaneue, verdana, meiryo, sans-serif;
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 0.3rem;
  transition: all 0.4s ease;
  font-size: 16px;
}

textarea {
  height: 120px;
  padding: 12px 20px;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #a2a2a2;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #a2a2a2;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border: 1px solid #cb1414;
  outline: none;
}

input[type=text]:focus::-moz-placeholder,
input[type=email]:focus::-moz-placeholder,
input[type=tel]:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: #a2a2a2;
}

input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=tel]:focus::placeholder,
textarea:focus::placeholder {
  color: #a2a2a2;
}

input:-moz-read-only,
textarea:-moz-read-only {
  background: #efefef;
  border: none;
}

input:read-only,
textarea:read-only {
  background: #efefef;
  border: none;
}

input:-moz-read-only:focus,
textarea:-moz-read-only:focus {
  border: none;
}

input:read-only:focus,
textarea:read-only:focus {
  border: none;
}

textarea {
  resize: vertical;
}

select {
  width: 100%;
  padding: 12px 20px;
  letter-spacing: 0.1em;
  background-color: #F4F6F8;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  transition: all 0.4s ease;
  font-size: 16px;
}

.selectbox {
  position: relative;
  width: 100%;
  max-width: 250px;
}

.selectbox::after {
  position: absolute;
  top: 23px;
  right: 20px;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  content: "";
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
}

.radio-btns input[type=radio].radio-btns__item {
  display: none;
}

.radio-btns label {
  display: inline-block;
  margin: 0.5rem 0;
}

.radio-btns .radio-btns__item+span {
  position: relative;
  display: inline-block;
  padding-left: 4rem;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

.radio-btns .radio-btns__item+span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  content: "";
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 50%;
}

.radio-btns .radio-btns__item+span::after {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: #cb1414;
  border-radius: 50%;
  opacity: 0;
}

.radio-btns .radio-btns__item:checked+span::after {
  opacity: 1;
}

.checkbox input[type=checkbox].checkbox__item {
  display: none;
}

.checkbox label {
  display: inline-block;
  margin: 0.5rem 0;
}

.checkbox .checkbox__item+span {
  position: relative;
  display: inline-block;
  padding-left: 4rem;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", source-han-sans-japanese, -apple-system, blinkmacsystemfont, roboto, "Segoe UI", "Helvetica Neue", helveticaneue, verdana, meiryo, sans-serif;
  letter-spacing: 0;
  font-size: 16px;
  font-size: 1.6rem;
}

.checkbox .checkbox__item+span>a {
  text-decoration: underline;
}

.checkbox .checkbox__item+span::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  content: "";
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: 0.5rem;
}

.checkbox .checkbox__item+span::after {
  position: absolute;
  top: 0.65rem;
  left: 1rem;
  display: block;
  width: 0.6rem;
  height: 0.95rem;
  content: "";
  border-right: 0.2rem solid #cb1414;
  border-bottom: 0.2rem solid #cb1414;
  opacity: 0;
  transform: rotate(45deg);
}

.checkbox .checkbox__item:checked+span::after {
  opacity: 1;
}

.contact-form {
  position: relative;
  z-index: 2;
  padding: 2.5rem 0 6rem;
}

.contact-form__txt-wrap {
  margin-bottom: 3rem;
}

.contact-form__txt {
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.contact-form__note {
  margin-top: 0.25em;
  line-height: 1.75;
  text-align: center;
  letter-spacing: 0;
  opacity: 0.6;
  font-size: 14px;
  font-size: 1.4rem;
}

.contact-form__note:first-child {
  margin-top: 0;
}

.contact-form__gray-box {
  padding: 3rem 2rem;
  background: #efefef;
  border-radius: 0.5rem;
}

.contact-form__table {
  width: 100%;
}

.contact-form__table tr {
  position: relative;
}

.contact-form__table th,
.contact-form__table td {
  display: block;
  width: 100%;
}

.contact-form__table th {
  position: relative;
  padding: 1rem 5rem 0 0;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.contact-form__table th .th-txt {
  font-weight: 400;
  opacity: 0.6;
  font-size: 12px;
  font-size: 1.2rem;
}

.contact-form__table th .required,
.contact-form__table th .optional {
  position: absolute;
  top: 1.1rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 1.6rem;
  font-weight: 700;
  line-height: 0;
  color: #fff;
  letter-spacing: 0;
  font-size: 10px;
  font-size: 1rem;
}

.contact-form__table th .required.--en,
.contact-form__table th .optional.--en {
  width: 6rem;
}

.contact-form__table th .required {
  background: #cb1414;
}

.contact-form__table th .optional {
  background: #666;
}

.contact-form__table td {
  padding: 0.85rem 0;
}

.contact-form__table td .td-txt {
  margin-top: 0.5em;
  font-weight: 400;
  opacity: 0.6;
  font-size: 12px;
  font-size: 1.2rem;
}

.contact-form__table td .checkbox:nth-of-type(3) {
  margin-top: 0.5rem;
}

.contact-form__submitwrap {
  margin-top: 3rem;
  text-align: center;
}

.contact-form__submitwrap .c-btn.--red.--arw .btn-arw::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ccircle fill='none' stroke='%23fff' stroke-miterlimit='10' cx='16' cy='16' r='15'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' d='M17,13l3,3l-3,3 M12,16H20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: filter 0.3s ease;
}

.contact-form__submitwrap .c-btn.--red.--arw.--back {
  justify-content: flex-end;
  padding: 0.25rem 2rem 0.25rem 1rem;
}

.contact-form__submitwrap .c-btn.--red.--arw.--back .btn-arw {
  right: auto;
  left: 1.3rem;
}

.contact-form__submitwrap .c-btn.--red.--arw.--back .btn-arw::before {
  transform: scale(-1, 1);
}

.contact-form__submitwrap .c-btn+.c-btn {
  margin: 0 0 0 1rem;
}

.contact-form__thanks-mes h3 {
  position: relative;
  margin-bottom: 1em;
  font-weight: 700;
  line-height: 1.5;
  color: #cb1414;
  text-align: center;
  letter-spacing: 0;
  font-size: 22px;
  font-size: 2.2rem;
}

.contact-form__thanks-mes p {
  margin-bottom: 1.5em;
  line-height: 1.6666666667;
  text-align: center;
  letter-spacing: 0;
  font-size: 12px;
  font-size: 1.2rem;
}

.contact-form__thanks-mes p:last-child {
  margin-bottom: 0 !important;
}

.contact-form__thanks-mes .contact-form__submitwrap {
  margin-top: 15.25rem;
  text-align: center;
}

.mw_wp_form .vertical-item {
  display: block;
}

.mw_wp_form .horizontal-item {
  margin: 0 1.5rem 0 0 !important;
}

.mw_wp_form .g-recaptcha {
  display: flex;
  justify-content: center;
}

.mw_wp_form_confirm .contact-form__table th .th-txt,
.mw_wp_form_confirm .contact-form__table th .td-txt {
  display: none;
}

.mw_wp_form_confirm .contact-form__table th .required,
.mw_wp_form_confirm .contact-form__table th .optional {
  display: none;
}

.mw_wp_form_confirm .contact-form__table td {
  font-weight: 400;
  letter-spacing: 0;
  border-bottom: 1px solid #dadada;
  font-size: 14px;
  font-size: 1.4rem;
}

.mw_wp_form_confirm .contact-form__table tr:last-child th,
.mw_wp_form_confirm .contact-form__table tr:last-child td {
  border-bottom: none;
}


/*hubspot*/
.hbspt-form{
  width: 100% !important;
  margin: 0 auto;
  position: relative !important;
}

.hbspt-form fieldset{
  width: 100% !important;
  max-width: 100% !important;
}

.hbspt-form .form-columns-1 .hs-form-field{
  width: 100% !important;
  max-width: 100% !important;
  padding: 24px 0 !important;
  border-block: 1px solid #e3e3e3 !important;
  margin-bottom: -1px;
}

.hbspt-form .form-columns-2 .hs-form-field{
  padding: 24px 0 !important;
  width: 100% !important;
  float: none !important;
}

.hbspt-form .form-columns-2 .hs-form-field:last-child{
  padding: 0 0 24px !important;
}

.hbspt-form strong,.hs-form-checkbox,.hs-form-radio-display{
  font-size: 15px !important;
}

input[type=text], input[type=email], input[type=tel],select {
  padding: 0 1rem !important;
  height: 53px !important;
}

.grecaptcha-badge{
  width: 300px !important; /* v3の展開時の最大幅を決め打ち */
  height: 60px;
  margin: 0 auto;
  display: block;
  transition: right 0.3s;
  position: absolute;
  bottom: -90px;
  left: 0;
  right: 0;
  box-shadow: gray 0px 0px 5px;
  border-radius: 2px;
  overflow: visible !important;
  background-color: #f9f9f9 !important;
}

.grecaptcha-badge iframe{
  width: auto !important;
  -webkit-box-shadow:none !important;
}


.hbspt-form .input{
  width: 100% !important;
  display: contents;
  margin: 0;
}

.hs-fieldtype-text input,
.hs_phone input,
.hbspt-form textarea{
  background-color: #f8f8f8;
  width: 100% !important;
}

.hbspt-form textarea{
  height: 120px;
  padding: 1rem;
}

.hbspt-form .form-columns-1 .field label{
  width: 254px;
}

.hbspt-form .form-columns-1 .field label p{
  display: inline-block;
}

.hbspt-form .form-columns-2 .field label{
  width: 100px !important;
}

.form-columns-2 select{
  width: 100% !important;
}

.hbspt-form .multi-container{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 20px;
}

.hs-form-checkbox-display,.hs-form-radio-display{
  display: flex;
  gap: 10px;
  width: auto !important;
  align-items: center;
}

.hbspt-form input[type=checkbox],.hbspt-form input[type=radio]{
  width: 26px !important;
  height: 26px !important;
  accent-color: #eb5b5b;
}

.hs-error-msg,.hs_error_rollup{
  color: #cb1414;
  font-size: 13px !important;
}

.hs-form-required{
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    padding: 4px 9px;
    margin-left: 15px;
    background: #eb5b5b;
    color: #fff;
    border-radius: 0 !important;
    font-size: 0;
    font-weight: 400;
    -webkit-border-radius: 0.6rem;
    line-height: 1;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
}

.hs-form-required::before:lang(en){
  content: 'required';
  display: block;
  font-size: 13px;
}

.hs-form-required::before{
  content: '必須';
  display: block;
  font-size: 13px;
}

#hsForm_073e0074-2fd0-43bd-b8a9-ea1dd1359bda .hs-form-required::before,
#hsForm_44642cb4-189b-400c-8ec5-5c19f80a87c1 .hs-form-required::before{
  content: 'Required' !important;
}

.hs_submit{
  margin: 40px auto;
  text-align: center;
}
.hs_submit input{
  position: relative;
  display: inline-flex;
  padding: 14px 64px 18px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  background: #cb1414;
  border-radius: 36px;
}

.svelte-select{
  height: 55px !important;
}

.hbspt-form select{
  height: 55px;
}

.hs-field-desc a{
  text-decoration:underline;
}

.document-detail-cont__form .hbspt-form{
  background-color: #fff;
  padding: 3rem 1.5rem 10rem;
}

.hbspt-form .form-columns-0 .hs-main-font-element{
  padding: 36px 0 !important;
  font-size: min(2.4rem, 24px) !important;
  font-weight: bolder;
  display: flex;
  gap: 10px;
}

.hbspt-form .form-columns-0 .hs-main-font-element::before{
  content: "";
  width: 6px;
  height: 40px;
  background-color: #cb1414;
  display: block;
}


/*251027 formボタン*/

.contact-form .btn-box{
  margin-top: 2rem;
  text-align: center;
}

.contact-form .c-btn.--b-red{
  border: 1px solid #cb1414;
  height: auto;
  justify-content: center;
}


@media (hover: hover) and (pointer: fine) and (min-width: 768px) {

  .checkbox .checkbox__item+span>a:hover {
    text-decoration: none;
  }

  .contact-form__submitwrap .c-btn:hover.--red.--arw .btn-arw::before {
    filter: invert(89%) sepia(100%) saturate(4358%) brightness(85%) contrast(100%);
  }

  .contact-form__submitwrap .c-btn:hover.--red.--arw.--back .btn-arw::before {
    filter: invert(89%) sepia(100%) saturate(1797%) brightness(95%) contrast(100%);
  }
}

@media screen and (min-width: 768px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  textarea{
    padding: 1.2rem 3rem;
    border-radius: 0.6rem;
  }

  select {
    padding: 0 45px;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .selectbox::after {
    top: 30px;
  }

  .radio-btns,
  .checkbox {
    margin: 1.375rem -2.5rem 1.375rem 0;
  }

  .radio-btns label {
    margin: 0.75rem 0;
  }

  .checkbox label {
    margin: 0.75rem 0;
  }

  .contact-form {
    padding: 5rem 0 10rem;
  }

  .contact-form__txt-wrap {
    margin-bottom: 4.5rem;
  }

  .contact-form__txt {
    font-size: 16px;
    font-size: 1.6rem;
  }

  .contact-form__note {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .contact-form__gray-box {
    padding: 7rem 8rem;
    border-radius: 1rem;
  }

  .contact-form__table th,
  .contact-form__table td {
    display: table-cell;
    vertical-align: middle;
  }

  .contact-form__table th {
    width: 26rem;
    padding: 1.3rem 3rem 1.3rem 0;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .contact-form__table th .th-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .contact-form__table th .required,
  .contact-form__table th .optional {
    top: 50%;
    width: 3.2rem;
    height: 1.8rem;
    margin-top: -0.8em;
    font-size: 12px;
    font-size: 1.2rem;
  }

  .contact-form__table th .required.--en,
  .contact-form__table th .optional.--en {
    width: 7rem;
  }

  .contact-form__table td {
    width: calc(100% - 21.8rem);
    padding: 1.3rem 0 1.3rem 2.5rem;
  }

  .contact-form__table td .td-txt {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .contact-form__table td .checkbox:nth-of-type(2) {
    margin-top: 1rem;
  }

  .contact-form__table td .checkbox:nth-of-type(3) {
    margin-top: 1.5rem;
  }

  .contact-form__submitwrap {
    margin-top: 4rem;
  }

  .contact-form__submitwrap .c-btn.--red.--arw.--back {
    padding: 0.5rem 2.5rem 0.5rem 6rem;
  }

  .contact-form__submitwrap .c-btn.--red.--arw.--back .btn-arw {
    left: 1.8rem;
  }

  .contact-form__submitwrap .c-btn+.c-btn {
    margin: 0 0 0 5rem;
  }

  .contact-form__thanks-mes h3 {
    font-size: 28px;
    font-size: 2.8rem;
  }

  .contact-form__thanks-mes p {
    line-height: 1.75;
    font-size: 16px;
    font-size: 1.6rem;
  }

  .contact-form__thanks-mes .contact-form__submitwrap {
    margin-top: 10.5rem;
  }

  .mw_wp_form .horizontal-item {
    margin: 0 2.5rem 0 0 !important;
  }

  .mw_wp_form_input .contact-form__table th.v-top {
    padding: 3.5rem 3rem 0.3rem 0;
    vertical-align: top;
  }

  .mw_wp_form_input .contact-form__table th.v-top .required,
  .mw_wp_form_input .contact-form__table th.v-top .optional {
    top: 3.9rem;
    margin-top: 0;
  }

  .mw_wp_form_confirm .contact-form__table th {
    padding: 3rem 0;
    border-bottom: 1px solid #dadada;
  }

  .mw_wp_form_confirm .contact-form__table th.v-top {
    padding-top: 3rem;
    vertical-align: top;
  }

  .mw_wp_form_confirm .contact-form__table td {
    padding: 3rem 6rem 3rem 0;
    font-size: 16px;
    font-size: 1.6rem;
  }

/*hubspot*/
.hbspt-form{
  max-width: 924px !important;
}

.hbspt-form strong,.hs-form-checkbox,.hs-form-radio-display{
  font-size: 1.6rem !important;
}

.hbspt-form .form-columns-1 .hs-form-field{
  font-size: 1.3rem !important;
}

.hs-form-required::before{
  font-size: 1.3rem;
}

.svelte-select{
  height: 53px !important;
}

.hbspt-form select{
  height: 53px;
  padding: 0 1.5rem;
}

.hs_submit{
  margin: 40px auto;
  text-align: center;
}
.hs_submit input{
  position: relative;
  display: inline-flex;
  padding: 14px 84px 18px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  background: #cb1414;
  border-radius: 36px;
}

.hbspt-form .form-columns-2{
  display: flex;
  gap: 40px;
}

.hbspt-form .form-columns-2 .hs-form-field:last-child{
  padding: 24px 0 !important;
}

}

@media screen and (max-width: 767px) {


  .contact-form__submitwrap .c-btn.--red {
    width: 15rem;
  }
}

/* 2024.08.02 */

.contact-form_sales .c-btn.--red {
  background: #0057b8;
  border: solid 1px #0057b8;
}

.contact-form_sales .c-btn:hover.--red {
  color: #0057b8;
  background: transparent;
}

.contact-form_sales .contact-form__submitwrap .c-btn:hover.--red.--arw .btn-arw::before {
  filter: brightness(0) saturate(100%) invert(21%) sepia(86%) saturate(2358%) hue-rotate(200deg) brightness(93%) contrast(102%);
}