@charset "utf-8";

/*
  File Name   : contact.css
  Description : コンテンツエリア関係 他
*/

/* com-kv-wrap
============================================================ */
.com-kv-wrap {
  background: url(../img/contact/kv-img.jpg) center no-repeat;
  background-size: cover;
}
/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .com-kv-wrap {
    background: url(../img/contact/kv-img-sp.jpg) center no-repeat;
    background-size: cover;
  }
}

/* -info
============================================================ */
.-info {
  text-align: center;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .hoge {
  }
}

/* -flow
============================================================ */
.-flow {
  margin-top: 60px;
  padding: 27px 20px;
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .05);
}
.-flow ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.-flow li {
  line-height: 1;
  color: rgba(0, 0, 0, .3);
  padding-right: 38px;
  margin-right: 30px;
  position: relative;
}
.-flow li:last-child:last-child {
  padding-right: 0;
  margin-right: 0;
}
.-flow li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/contact/contact-flow-arrow.svg) 0 0 no-repeat;
  background-size: 7px auto;
}
.-flow li:last-child::after {
  display: none;
}
.-flow li.current {
  color: #d36900;
}

.-flow.-confirm {
  margin-top: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .-flow {
    margin-top: 50px;
    padding: 16px 10px;
  }
  .-flow li {
    padding-right: 30px;
    margin-right: 22px;
  }
  .-flow li:last-child:last-child {
    padding-right: 0;
    margin-right: 0;
  }
}

/* top-text
============================================================ */
.top-text {
  text-align: center;
  margin-top: 50px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .top-text {
    text-align: left;
    margin-top: 30px;
  }
}



/* icon-xxxxx
============================================================ */
.icon-required {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  /* letter-spacing: 1px; */
  color: #fff;
  text-align: center;
  background-color: #cc1414;
  padding: 9px 10px 8px;
  border-radius: 3px;
  box-sizing: border-box;
}
.icon-any {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  /* letter-spacing: 1px; */
  color: #d36900;
  text-align: center;
  background-color: #fff;
  padding: 9px 10px 8px;
  border-radius: 3px;
  box-sizing: border-box;
}
p .icon-required {
  margin-right: 10px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .icon-required,
  .icon-any {
    font-size: 12px;
    padding: 7px 12px;
  }
  p .icon-required {
    margin-right: 5px;
  }
}

/* contact-table
============================================================ */
.contact-table {
  margin: 40px 0 0;
}
.contact-table table {
  border-top: solid 1px #e2cebb;
}
.contact-table th,
.contact-table td {
  /* font-size: 12px; */
  font-weight: normal;
  padding: 38px 0 30px;
  border-bottom: solid 1px #e2cebb;
}
/* .contact-table tr:nth-child(odd) th,
.contact-table tr:nth-child(odd) td {
  background-color: #f5faff;
} */
.contact-table th {
  width: 250px;
  /* padding-top: 36px; */
  padding-left: 0;
  vertical-align: top;
  font-weight: bold;
}
.contact-table th .th-head .icon-required,
.contact-table th .th-head .icon-any {
  position: relative;
  top: -2px;
  margin-right: 7px;
}
.contact-table td {
  padding-left: 40px;
  padding-right: 40px;
}
.contact-table td {
  padding: 28px 0 30px;
}

/* -confirm */
.-confirm .contact-table th {
  padding-top: 28px;
  vertical-align: middle;
}
.-confirm .contact-table td {
  padding: 34px 0 32px;
}

/* input */
.contact-input-wrap input[type="text"] {
  width: 100%;
  height: 60px;
  padding: 20px 20px;
  outline: none;
  -webkit-appearance: none;
  /* border-radius: 5px; */
  border: none;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .05);
}
.contact-input-wrap.-tel input[type="text"] {
  max-width: 300px;
}

/* textarea */
.contact-input-wrap textarea {
  width: 100%;
  min-height: 300px;
  padding: 20px 20px;
  outline: none;
  border: none;
  border: none;
  -webkit-appearance: none;
  /* border-radius: 5px; */
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .05);
}

/* selectbox */
.mod-selectbox-orig select {
  width: 450px;
  height: 60px;
  padding: 12px 20px 12px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, .05);
}
.mw_wp_form_confirm .mod-selectbox-orig::after {
  content: none;
}

/* error */
.error-text,
.mw_wp_form .error {
  display: block;
  color: #de2222 !important;
  margin-top: 10px;
  font-size: 100% !important;
}

/* inner-table */
.contact-table .inner-table {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.mw_wp_form_confirm .contact-table .inner-table,
.mw_wp_form_confirm .contact-table .inner-table * {
  display: inline;
  margin-top: 0;
}
.contact-table .inner-table:first-of-type {
  margin-top: 0;
}
.mw_wp_form_confirm .contact-table .inner-table:first-of-type {
  display: block;
}
.contact-table .inner-th {
  width: 130px;
}
.mw_wp_form_confirm .contact-table .inner-th {
  display: none;
}
.contact-table .inner-th + *,
.contact-table .inner-th + * .-max-w-240px {
  width: 240px;
}
.contact-table .inner-th + .-max-w-full {
  width: calc(100% - 130px);
}
.contact-table .inner-table .mod-selectbox-orig select {
  width: 240px !important;
}

.-confirm .com-btn-wrap {
  position: relative;
}
.-confirm .contact-form-back-btn {
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.-confirm .contact-form-back-btn span {
  position: relative;
  padding-left: 25px;
}
.-confirm .contact-form-back-btn span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 10px;
  background: url(../img/common/icon-arrow-left-or.svg) 0 0 no-repeat;
  background-size: 7px auto;
}

.completion-text-A,
.completion-text-B,
.completion-text-C,
.completion-text-D {
  text-align: center;
}
.completion-text-A {
  margin-top: 73px;
  padding-bottom: 65px;
  margin-bottom: 60px;
  border-bottom: solid 1px #e2cebb;
}
.completion-text-C {
  margin-top: 60px;
}
.completion-text-D {
  margin-top: 20px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .contact-table {
    margin: 40px 0 0;
  }
  .contact-table th,
  .contact-table td {
    font-size: 16px;
    padding: 18px 20px 10px !important;
    display: block;
    box-sizing: border-box;
  }
  .contact-table th {
    font-weight: bold;
    width: 100%;
    padding-top: 16px;
    border-bottom: none;
    padding-bottom: 0;
  }
  .contact-table th .th-head .icon-required,
  .contact-table th .th-head .icon-any {
    position: relative;
    top: -1px;
  }
  .contact-table td {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0 !important;
    padding-bottom: 14px !important;
    width: 100%;
  }
  .contact-table .com-section-inner {
    padding: 0 0 0;
  }
  .contact-table .inner-table {
    display: block;
    margin-top: 15px;
  }
  .contact-table .inner-table:first-of-type {
    margin-top: 0;
  }
  .contact-table .inner-th {
    width: 100%;
    padding-bottom: 5px;
  }
  .contact-table .inner-th + *,
  .contact-table .inner-th + * .-max-w-240px {
    width: 100%;
  }
  .contact-table .inner-th + .-max-w-full {
    width: 100%;
  }

  /* -confirm */
  .-confirm .contact-table th {
    padding-top: 18px;
  }

  /* input */
  .contact-input-wrap input[type="text"] {
    height: 50px;
    padding: 10px 10px;
  }
  .contact-input-wrap.-tel input[type="text"] {
    max-width: 100%;
  }

  /* textarea */
  .contact-input-wrap textarea {
    width: 100%;
    min-height: 170px;
    padding: 10px 10px;
  }
  .mod-selectbox-orig select {
    width: 100% !important;
  }
  .mod-selectbox-orig {
    min-width: 100%;
  }

  /* error */
  .error-text,
  .mw_wp_form .error {
    margin-top: 5px;
  }

  .contact-table .inner-table .mod-selectbox-orig select {
    width: 100% !important;
  }

  .-confirm .contact-form-back-btn {
    position: static;
    transform: translateY(0);
    text-align: center;
    margin-top: 40px;
  }
  .-confirm .contact-form-back-btn span {
    position: relative;
    padding-left: 25px;
  }
  .-confirm .contact-form-back-btn span::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 7px;
    height: 10px;
    background: url(../img/common/icon-arrow-left-or.svg) 0 0 no-repeat;
    background-size: 7px auto;
  }

  .completion-text-A {
    margin-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
  .completion-text-B {
    text-align: left;
  }
  .completion-text-C {
    margin-top: 60px;
  }
  .completion-text-D {
    margin-top: 20px;
  }
}

/* file-block
============================================================ */
.file-block .inner {
  display: flex;
}
.file-block label {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 1.6px;
  text-align: center;
  padding: 15px 20px;
  border-radius: 50px;
  background-color: #d36900;
  display: inline-block;
  min-width: 280px;
  min-height: 60px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .05);
  transition: all .2s ease-in-out;
}
.file-block label:hover {
  opacity: .7;
  cursor: pointer;
}
.file-block label span {
  position: relative;
  padding-left: 38px;
}
.file-block label span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 14px;
  background: url(../img/common/icon-file-wh.svg) 0 0 no-repeat;
  background-size: 20px auto;
}
.mw_wp_form_confirm .file-block label {
  display: none;
}
.file-block input[type="file"],
.file-block input[type="file"] + .mwform-file-delete,
.file-block .mw-wp-form_file {
  display: none !important;
}
.file-block .file-on-text {
  font-size: 14px;
  padding: 8px 0 9px 20px;
}
.file-block .file-on-text + .mwform-file-delete {
  display: inline-block;
  padding-top: 8px;
}
.mw_wp_form_confirm .file-block .file-on-text {
  padding: 0;
}
.mw_wp_form_confirm .file-block .file-on-text + .mwform-file-delete {
  display: none;
}
.file-block .text {
  margin: 15px 0 0;
}
.mw_wp_form_confirm .file-block .text {
  display: none;
}
.mw_wp_form_send_error {
  margin: 0 0 2em;
  padding: 10px 20px;
  color: #de2222;
  border: 5px solid #de2222;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .file-block {
    margin-top: 10px;
  }
  .file-block .inner {
    display: block;
    text-align: center;
  }
  .file-block .inner .com-flex-box {
    align-items: baseline;
    justify-content: flex-start;
  }
  .file-block label:hover {
    opacity: 1;
  }
  .file-block input[type="file"],
  .file-block input[type="file"] + .mwform-file-delete,
  .file-block .mw-wp-form_file {
    display: none !important;
  }
  .file-block .file-on-text {
    font-size: 14px;
    padding: 24px 0 0 20px;
  }
  .mw_wp_form_confirm .file-block .file-on-text {
    padding: 0;
  }
  .file-block .text {
    font-size: 16px;
    margin: 15px 0 0;
  }
  .mw_wp_form_send_error {
    padding: 5px 10px;
    font-size: 16px;
  }
}

/* checkbox and radio-wrap
============================================================ */
.checkbox-wrap,
.radio-wrap {
  padding: 0 0;
  border: none;
  display: inline-block;
  margin: 0 0 0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0;
}
.checkbox-wrap.single,
.radio-wrap.single {
  margin: 15px 0;
  width: 100%;
}
.radio-wrap {
  padding: 0 0 0 0;
}
.checkbox-wrap,
.radio-wrap {
  min-width: 50%;
}
.radio-list.mod-panel-layout {
  width: auto;
}
.mwform-radio-field {
  display: inline-block;
}
.checkbox-wrap .mwform-checkbox-field span a,
.checkbox-wrap ul li span a,
.radio-wrap .mwform-radio-field span a,
.radio-wrap ul li span a {
  text-decoration: underline;
}
.checkbox-wrap .mwform-checkbox-field span a:hover,
.checkbox-wrap ul li span a:hover,
.radio-wrap .mwform-radio-field span a:hover,
.radio-wrap ul li span a:hover {
  text-decoration: none;
}
.checkbox-wrap input[type="checkbox"],
.radio-wrap input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkbox-wrap ul:after,
.radio-wrap ul:after {
  display: block;
  content: '';
  clear: both;
}
.checkbox-wrap .mwform-checkbox-field label,
.checkbox-wrap ul li label,
.radio-wrap .mwform-radio-field label,
.radio-wrap ul li label {
  position: relative;
  display: inline-block;
  word-break: break-all;
  cursor: pointer;
  width: 100%;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span,
.checkbox-wrap ul li label input[type="checkbox"] + span {
  position: relative;
  padding: 0 20px 0 40px;
}

/* CHECKBOX */
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
.checkbox-wrap ul:nth-of-type(1) label input[type="checkbox"] + span:before {
  border-color: #707070 !important;
  background-color: #fff !important;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span:before,
.checkbox-wrap ul:nth-of-type(1) label input[type="checkbox"]:checked + span:before {
  border-color: #ff416e !important;
  background-color: #ff416e !important;
}
.checkbox-wrap .mwform-checkbox-field label span,
.checkbox-wrap ul li label span,
.mw_wp_form_confirm .checkbox-wrap ul li {
  display: inline-block;
  font-size: 13px;
  line-height: 2;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"],
.checkbox-wrap ul li label input[type="checkbox"] {
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
.checkbox-wrap ul li label input[type="checkbox"] + span:before,
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:after,
.checkbox-wrap ul li label input[type="checkbox"] + span:after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
.checkbox-wrap ul li label input[type="checkbox"] + span:before {
  z-index: 0;
  background-color: transparent;
  width: 26px;
  height: 26px;
  border: 1px #616161 solid;
  border-radius: 3px;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:after,
.checkbox-wrap ul li label input[type="checkbox"] + span:after {
  z-index: 1;
  margin: 6px 9px;
  width: 8px;
  height: 12px;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span:before,
.checkbox-wrap ul li label input[type="checkbox"]:checked + span:before {
  background-color: #616161;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span:after,
.checkbox-wrap ul li label input[type="checkbox"]:checked + span:after {
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* RADIO */
.radio-wrap .mwform-radio-field label input[type="radio"] + span,
.radio-wrap ul li label input[type="radio"] + span {
  position: relative;
  padding: 0 40px 0 28px;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span:before,
.radio-wrap ul:nth-of-type(1) label input[type="radio"] + span:before {
  border-color: #2c3e9c !important;
}
.radio-wrap .mwform-radio-field label span,
.radio-wrap ul li label span {
  display: inline-block;
  line-height: 1.1;
  font-size: 14px;
}
.radio-wrap .mwform-radio-field label input[type="radio"],
.radio-wrap ul li label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span:before,
.radio-wrap ul li label input[type="radio"] + span:before {
  position: absolute;
  display: inline-block;
  content: '';
  box-sizing: border-box;
  border-radius: 18px;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span:before,
.radio-wrap ul li label input[type="radio"] + span:before {
  z-index: 0;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 18px;
  height: 18px;
  border: 2px #000 solid;
}
.radio-wrap .mwform-radio-field label input[type="radio"]:checked + span:before,
.radio-wrap ul li label input[type="radio"]:checked + span:before {
  border-width: 6px;
}
.radio-wrap .body-block {
  display: inline;
}
.radio-wrap .body-block select {
  width: auto;
}
select .platform-only {
  display: none;
}
html[data-platform="iOS"] select .platform-only,
html[data-platform="Android"] select .platform-only {
  display: block;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .checkbox-wrap .mwform-checkbox-field,
  .checkbox-wrap ul li,
  .radio-wrap .mwform-radio-field,
  .radio-wrap ul li {
    margin-bottom: 10px;
  }
  .checkbox-wrap .mwform-checkbox-field:last-of-type,
  .checkbox-wrap ul li:last-child,
  .radio-wrap .mwform-radio-field:last-of-type,
  .radio-wrap ul li:last-child {
    margin-bottom: 0 !important;
  }
  .checkbox-wrap,
  .radio-wrap {
    padding: 0 0 0 0;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
  .checkbox-wrap ul li label input[type="checkbox"] + span:before {
    width: 20px;
    height: 20px;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:after,
  .checkbox-wrap ul li label input[type="checkbox"] + span:after {
    margin: 5px 7px;
    width: 6px;
    height: 8px;
  }
  .mod-selectbox-orig select {
    height: 40px;
    padding: 5px 30px 5px 10px;
  }
}

/* checkbox and radio-wrap
============================================================ */
.checkbox-wrap {
  padding: 0 0 0 0;
  /* background-color: #fff; */
  border: none;
  display: inline-block;
  margin: 0 0 5px;
  width: auto !important;
  box-sizing: border-box;
  border-radius: 8px;
}
.checkbox-wrap.single,
.radio-wrap.single {
  margin: 15px 0;
  width: 100%;
}
.checkbox-wrap,
.radio-wrap {
  min-width: 50%;
}
.radio-list.mod-panel-layout {
  width: auto;
}
.mwform-radio-field {
  display: block;
  margin-bottom: 10px;
}
.checkbox-wrap .mwform-checkbox-field span a,
.checkbox-wrap ul li span a,
.radio-wrap .mwform-radio-field span a,
.radio-wrap ul li span a {
  text-decoration: underline;
}
.checkbox-wrap .mwform-checkbox-field span a:hover,
.checkbox-wrap ul li span a:hover,
.radio-wrap .mwform-radio-field span a:hover,
.radio-wrap ul li span a:hover {
  text-decoration: none;
}
.checkbox-wrap input[type="checkbox"],
.radio-wrap input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkbox-wrap ul:after,
.radio-wrap ul:after {
  display: block;
  content: '';
  clear: both;
}
.checkbox-wrap .mwform-checkbox-field label,
.checkbox-wrap ul li label,
.radio-wrap .mwform-radio-field label,
.radio-wrap ul li label {
  position: relative;
  display: inline-block;
  word-break: break-all;
  cursor: pointer;
  width: 100%;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span,
.checkbox-wrap ul li label input[type="checkbox"] + span {
  position: relative;
  padding: 0 20px 2px 40px;
}

/* CHECKBOX */
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
.checkbox-wrap ul:nth-of-type(1) label input[type="checkbox"] + span:before {
  border-color: #d36900 !important;
  background-color: #fff !important;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span:before,
.checkbox-wrap ul:nth-of-type(1) label input[type="checkbox"]:checked + span:before {
  border-color: #d36900 !important;
  background-color: #d36900 !important;
}
.checkbox-wrap .mwform-checkbox-field label span,
.checkbox-wrap ul li label span,
.mw_wp_form_confirm .checkbox-wrap ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
}
.checkbox-wrap .mwform-checkbox-field label span.icon-required,
.checkbox-wrap ul li label span.icon-required {
  font-size: 12px;
  line-height: 1 !important;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"],
.checkbox-wrap ul li label input[type="checkbox"] {
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
.checkbox-wrap ul li label input[type="checkbox"] + span:before,
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:after,
.checkbox-wrap ul li label input[type="checkbox"] + span:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
.checkbox-wrap ul li label input[type="checkbox"] + span:before {
  z-index: 0;
  background-color: transparent;
  width: 26px;
  height: 26px;
  border: 1px #616161 solid;
  border-radius: 3px;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:after,
.checkbox-wrap ul li label input[type="checkbox"] + span:after {
  z-index: 1;
  margin: 6px 9px;
  width: 8px;
  height: 12px;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span:before,
.checkbox-wrap ul li label input[type="checkbox"]:checked + span:before {
  background-color: #616161;
}
.checkbox-wrap .mwform-checkbox-field label input[type="checkbox"]:checked + span:after,
.checkbox-wrap ul li label input[type="checkbox"]:checked + span:after {
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* RADIO */
.radio-wrap .mwform-radio-field label input[type="radio"] + span,
.radio-wrap ul li label input[type="radio"] + span {
  position: relative;
  padding: 0 40px 0 28px;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span:before,
.radio-wrap ul:nth-of-type(1) label input[type="radio"] + span:before {
  border-color: #c7c7c7 !important;
}
.radio-wrap .mwform-radio-field label span,
.radio-wrap ul li label span {
  display: inline-block;
  line-height: 1.4;
  font-size: 14px;
}
.radio-wrap .mwform-radio-field label input[type="radio"],
.radio-wrap ul li label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span::after,
.radio-wrap ul li label input[type="radio"] + span::after,
.radio-wrap .mwform-radio-field label input[type="radio"] + span:before,
.radio-wrap ul li label input[type="radio"] + span:before {
  position: absolute;
  display: inline-block;
  content: '';
  box-sizing: border-box;
  border-radius: 18px;
}
.radio-wrap .mwform-radio-field label input[type="radio"] + span:before,
.radio-wrap ul li label input[type="radio"] + span:before {
  z-index: 0;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 1px #000 solid;
}
.radio-wrap .mwform-radio-field label input[type="radio"]:checked + span:before,
.radio-wrap ul li label input[type="radio"]:checked + span:before {
  border-width: 2px;
  background-color: #3875fa;
}
.radio-wrap .mwform-radio-field label input[type="radio"]:checked + span::after,
.radio-wrap ul li label input[type="radio"]:checked + span::after {
  z-index: 0;
  top: 1px;
  left: 1px;
  background-color: transparent;
  width: 18px;
  height: 18px;
  border: 3px #fff solid;
}
.radio-wrap .body-block {
  display: inline;
}
.radio-wrap .body-block select {
  width: auto;
}
select .platform-only {
  display: none;
}
html[data-platform="iOS"] select .platform-only,
html[data-platform="Android"] select .platform-only {
  display: block;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .checkbox-wrap .mwform-checkbox-field,
  .checkbox-wrap ul li,
  .radio-wrap .mwform-radio-field,
  .radio-wrap ul li {
    margin-bottom: 10px;
  }
  .checkbox-wrap .mwform-checkbox-field:last-of-type,
  .checkbox-wrap ul li:last-child,
  .radio-wrap .mwform-radio-field:last-of-type,
  .radio-wrap ul li:last-child {
    margin-bottom: 0 !important;
  }
  .checkbox-wrap {
    padding: 0 0 0 0;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
  .checkbox-wrap ul li label input[type="checkbox"] + span:before {
    width: 20px;
    height: 20px;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:after,
  .checkbox-wrap ul li label input[type="checkbox"] + span:after {
    margin: 5px 7px;
    width: 6px;
    height: 8px;
  }
  .mod-selectbox-orig select {
    height: 50px;
    padding: 5px 30px 5px 10px;
  }
  .checkbox-wrap .mwform-checkbox-field label span,
  .checkbox-wrap ul li label span,
  .mw_wp_form_confirm .checkbox-wrap ul li {
    font-size: 14px;
  }
  .checkbox-wrap .mwform-checkbox-field label span.icon-required, .checkbox-wrap ul li label span.icon-required {
    font-size: 11px;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span,
  .checkbox-wrap ul li label input[type="checkbox"] + span {
    padding: 0 20px 2px 30px;
  }
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:before,
  .checkbox-wrap ul li label input[type="checkbox"] + span:before,
  .checkbox-wrap .mwform-checkbox-field label input[type="checkbox"] + span:after,
  .checkbox-wrap ul li label input[type="checkbox"] + span:after {
    top: 3px;
  }
}

/* privacy-checkbox
============================================================ */
.privacy-checkbox {
  margin-top: 55px;
  margin-bottom: 30px;
}
.privacy-checkbox .checkbox-wrap {
  margin-top: 20px;
}
.com-btn-wrap .com-btn-base {
  margin: 0 auto;
}
.mw_wp_form_confirm .privacy-checkbox .bottom-lead-text {
  display: none;
}
.privacy-checkbox .bottom-lead-text a {
  text-decoration: underline;
  color: #d36900;
}
.privacy-checkbox .bottom-lead-text a:hover {
  text-decoration: none;
}
.privacy-checkbox .-iflx {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.-confirm .privacy-checkbox .-iflx {
  gap: 10px;
}

.-confirm .privacy-checkbox .checkbox-wrap {
  margin-top: 0;
}
.-confirm .privacy-checkbox {
  margin-top: 30px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .hoge {
  }
}


/* checkbox and radio-wrap
============================================================ */
.checkbox-wrap-B {
  padding: 0 0 0 0;
  /* background-color: #fff; */
  border: none;
  display: inline-block;
  margin: 0 0 5px;
  width: auto !important;
  box-sizing: border-box;
  border-radius: 8px;
}
.checkbox-wrap-B.single {
  margin: 15px 0;
  width: 100%;
}
.checkbox-wrap-B {
  min-width: 50%;
}
.checkbox-wrap-B ul {
  gap: 15px;
}
.radio-list.mod-panel-layout {
  width: auto;
}
.mwform-radio-field {
  display: block;
  margin-bottom: 10px;
}
.checkbox-wrap-B .mwform-checkbox-field span a,
.checkbox-wrap-B ul li span a {
  text-decoration: underline;
}
.checkbox-wrap-B .mwform-checkbox-field span a:hover,
.checkbox-wrap-B ul li span a:hover {
  text-decoration: none;
}
.checkbox-wrap-B label {
  color: #d36900;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px 15px;
}
.checkbox-wrap-B label:has(input[type="radio"]:checked) {
  color: #fff;
  background-color: #d36900;
}
.checkbox-wrap-B input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkbox-wrap-B ul:after {
  display: block;
  content: '';
  clear: both;
}
.checkbox-wrap-B .mwform-checkbox-field label,
.checkbox-wrap-B ul li label {
  position: relative;
  display: inline-block;
  word-break: break-all;
  cursor: pointer;
  width: 100%;
}
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"] + span,
.checkbox-wrap-B ul li label input[type="radio"] + span {
  position: relative;
  padding: 0 0 2px 30px;
}

/* CHECKBOX */
.checkbox-wrap-B .mwform-checkbox-field label span,
.checkbox-wrap-B ul li label span,
.mw_wp_form_confirm .checkbox-wrap-B ul li {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
}
.checkbox-wrap-B .mwform-checkbox-field label span.icon-required,
.checkbox-wrap-B ul li label span.icon-required {
  font-size: 12px;
  line-height: 1 !important;
}
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"],
.checkbox-wrap-B ul li label input[type="radio"] {
  position: absolute;
  top: 3px;
  left: 0;
  opacity: 0;
}
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"] + span:before,
.checkbox-wrap-B ul li label input[type="radio"] + span:before,
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"] + span:after,
.checkbox-wrap-B ul li label input[type="radio"] + span:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
}
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"] + span:before,
.checkbox-wrap-B ul li label input[type="radio"] + span:before {
  z-index: 0;
  background-color: transparent;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 3px;
}
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"] + span:after,
.checkbox-wrap-B ul li label input[type="radio"] + span:after {
  z-index: 1;
  margin: 5px 9px;
  width: 10px;
  height: 14px;
}
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"]:checked + span:before,
.checkbox-wrap-B ul li label input[type="radio"]:checked + span:before {
  background: none;
}
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"] + span:after,
.checkbox-wrap-B ul li label input[type="radio"] + span:after {
  border: 3px solid #c9c9c9;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox-wrap-B .mwform-checkbox-field label input[type="radio"]:checked + span:after,
.checkbox-wrap-B ul li label input[type="radio"]:checked + span:after {
  border: 3px solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .checkbox-wrap-B {
    min-width: 100%;
  }
  .checkbox-wrap-B ul {
    flex-direction: column;
    gap: 10px;
  }
  .checkbox-wrap-B li:last-child {
    margin-bottom: 0;
  }
  .checkbox-wrap-B li span {
    width: 100%;
    display: block !important;
  }
  .checkbox-wrap-B label {
    width: 100% !important;
    display: block !important;
    padding: 8px 15px;
  }
}
