@charset "UTF-8";
.main-img {
  padding-top: 40px;
  padding-bottom: 64px;
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
}

@media only screen and (max-width: 480px) {
  .main-img {
    padding-bottom: 40px;
    font-size: 2.4rem;
  }
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea {
  width: 100%;
  padding: 6px;
  border: solid 1px #4c4948;
  background: #fff;
  color: #4c4948;
  line-height: 1.6;
  font-size: 1.6rem;
  font-family: "han", "helvetica", "Arial", "Noto Sans JP", sans-serif;
}

input.m {
  max-width: 400px;
}

@media only screen and (max-width: 480px) {
  input.m {
    max-width: 100%;
  }
}

input.s {
  max-width: 200px;
}

@media only screen and (max-width: 480px) {
  input.s {
    max-width: 100%;
  }
}

select {
  width: auto;
  padding: 6px;
  background-color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  select {
    width: 100%;
  }
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

input[type="radio"] {
  display: none;
}

.mwform-radio-field-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin-right: 24px;
  padding: 5px 0 5px 24px;
  position: relative;
  width: auto;
}

.mwform-radio-field-text::before {
  background: #fff;
  border: 1px solid #231815;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.mwform-radio-field-text::after {
  background: #0068b7;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 4px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}

input[type="radio"]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

input[type="checkbox"] {
  display: none;
}

.mwform-checkbox-field-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  margin-right: 30px;
  padding: 5px 0 5px 24px;
  position: relative;
  width: auto;
}

.mwform-checkbox-field-text::before {
  background: #fff;
  border: 1px solid #231815;
  content: "";
  display: block;
  height: 14px;
  width: 14px;
  left: 0;
  margin-top: -7px;
  position: absolute;
  top: 17px;
}

.mwform-checkbox-field-text::after {
  border-right: 3px solid #0068b7;
  border-bottom: 3px solid #0068b7;
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  left: 5px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 17px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

input[type="checkbox"]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.form-area {
  font-size: 1.6rem;
}

.form-area .form_message{
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}


@media only screen and (max-width: 480px) {
  .form-area {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 480px) {
  .form-area .narrow-w {
    width: 100%;
  }
}

.form-area .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 40px;
}

@media only screen and (max-width: 480px) {
  .form-area .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px 16px;
  }
}

.form-area .block.gray {
  background: whitesmoke;
}

.form-area .block .row-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 40px;
  padding-top: 4px;
}

.form-area .block .row-name .small-text{
  font-size: 1.3rem;
}

@media only screen and (max-width: 480px) {
  .form-area .block .row-name {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding-left: 0;
    padding-top: 0;
    margin-bottom: 8px;
    font-weight: bold; 
  }
  
  .form-area .block .row-name .br{
    display: none;
  }
  
}

.form-area .block .row-name::after {
  content: "任意";
  display: block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 2px;
  padding: 4px 8px;
  background: #0068b7;
  color: #fff;
  line-height: 1;
  font-size: 1.2rem;
}

@media only screen and (max-width: 480px) {
  .form-area .block .row-name::after {
    margin-left: 16px;
  }
}

.form-area .block .row-name.req::after {
  content: "必須";
  background: #e60012;
}

.form-area .block .row-r {
  width: calc(100% - 240px);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (max-width: 480px) {
  .form-area .block .row-r {
    width: 100%;
  }
}

.form-area .block .one-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 480px) {
  .form-area .block .one-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form-area .block .one-row .row-name:not(.req)::after {
  content: none;
}

.form-area .block.full-area {
  display: block;
}

.form-area .block .item-select dt {
  margin-bottom: 2px;
  padding-bottom: 4px;
  border-bottom: 1px solid #4c4948;
}

.form-area .block .item-select dd + dt {
  margin-top: 24px;
}

@media only screen and (max-width: 480px) {
  .form-area .block .item-select dd br {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .form-area .block .item-select.est-item .mwform-checkbox-field-text {
    display: block;
    margin-right: 0;
  }
}

.form-area .block .file-list li {
  padding: 4px 8px;
  border: 1px solid #4c4948;
  background: #fff;
}

.form-area .block .file-list li + li {
  margin-top: 12px;
}

.form-area .block .one-row + .one-row {
  margin-top: 12px;
}

.form-area .block .inline-area {
  height: 200px;
  padding: 1rem;
  margin-top: 24px;
  margin-bottom: 24px;
  border: 1px solid #e8e8e8;
  overflow-y: scroll;
}

@media only screen and (max-width: 480px) {
  .form-area .block .inline-area {
    font-size: 1.4rem;
  }
}

.form-area .block .inline-area .ttl {
  padding-top: 1rem;
  font-weight: bold;
}

.form-area .block .inline-area .ttl:nth-of-type(1) {
  padding-top: 0;
}

.form-area .block .inline-area .txt-r {
  text-align: right;
}

@media only screen and (max-width: 480px) {
  .form-area .block .inline-area .txt-r {
    margin-top: 8px;
    margin-bottom: 8px;
    text-align: left;
  }
}

.form-area .block .doui-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.form-area .block.submit-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-area .block.submit-area button,
.form-area .block.submit-area input[type="submit"] {
  display: block;
  margin-left: 24px;
  margin-right: 24px;
  padding: 1rem 4rem 1rem 4.4rem;
  border: 1px solid #4c4948;
  background-color: #fff;
  color: #4c4948;
  letter-spacing: 4px;
  font-size: 2rem;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-radius: 0;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  outline: none;
  cursor: pointer;
}

.form-area .block.submit-area button.return,
.form-area .block.submit-area input[type="submit"].return {
  border: none;
  background: #e1e6ea;
  color: #4c4948;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media only screen and (max-width: 480px) {
  .form-area .block.submit-area button.return,
  .form-area .block.submit-area input[type="submit"].return {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 24px;
  }
}

.form-area .block.submit-area button:hover,
.form-area .block.submit-area input[type="submit"]:hover {
  background-color: #0068b7;
  color: #fff;
}

.form-area .block p.txt.center {
  text-align: center;
}

@media only screen and (max-width: 480px) {
  .form-area .block p.txt.center {
    text-align: left;
  }
}

@media only screen and (max-width: 480px) {
  .form-area .block p.txt.center br {
    display: none;
  }
}

.form-area .block p.cap {
  margin-bottom: 16px;
  padding-left: 240px;
}

@media only screen and (max-width: 480px) {
  .form-area .block p.cap {
    padding-left: 0;
    font-size: 1.4rem;
  }
}

.form-area .block .btn {
  text-align: center;
}

.form-area .block .btn a {
  display: inline-block;
  padding: 4px 24px;
  border: 1px solid #4c4948;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.form-area .block .btn a:hover {
  background: #0068b7;
  border-color: #0068b7;
  color: #fff;
}

.mw_wp_form_confirm .form-area .item-select dt {
  display: none;
}

.mw_wp_form_confirm .form-area .other-link {
  display: none;
}

.mw_wp_form_confirm .form-area .file-list li {
  border: none;
  padding: 0;
  background: transparent;
}

.mw_wp_form_confirm .form-area .addr-cap {
  display: none;
}

.mw_wp_form_confirm .form-area .agree-area {
  display: none;
}

.mw_wp_form_confirm .form-area .submit-area {
  padding-top: 64px;
}

.complete-txt {
  margin-top: 64px;
  text-align: center;
  font-weight: normal;
}

@media only screen and (max-width: 480px) {
  .complete-txt {
    text-align: left;
  }
}

/*# sourceMappingURL=maps/form.css.map */
