@charset "UTF-8";
.form{
    text-align: left;
    max-width: 100%;
    margin:0 auto;
}
.form dl{
    line-height: 20px;
}

.form dl dd{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 16px;
    /*padding-right: 18px;
    padding-left: 18px;*/
    box-sizing: border-box;
}
.form dl.margin-adj{
    margin-bottom: 0;
}
.form dt{
    width: 100%;
    display: block;
}
.form dt.ttl{

}

.form dl dd.half{

}
.form dl dd.label{
    line-height: 16px;
}
.form dl dd small{
    display: block;
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
}
.form dl dd.narrow-mb{
    margin-bottom: 0;
}
input{
  box-sizing:border-box;
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
}
input:focus{
  outline-width: 0;
}
input:focus::-webkit-input-placeholder { font-size:16px;color:var(--placeholder);font-weight: 400;}
input:focus:-moz-placeholder { font-size:16px;color:var(--placeholder);font-weight: 400;}
.form input::placeholder,
.form textarea::placeholder{
    font-size:16px;
    color: var(--placeholder);
    font-weight: 400;
}
textarea:focus,
select:focus{
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
  outline: 0;    
}

.form select,
.form textarea,
.form input,
.form button{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
.form button:disabled{

}

.form input[type="date"],
.form select,
.form textarea,
.form input,
.form input[type="search"] {
    font-family: inherit;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    line-height: 16px;
    max-width: 100%;
    background-color: transparent;
    position: relative;
    z-index: 10;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing:border-box;
    border-radius: calc(var(--base-s) * 1);
    background: #fff;
    border: 1px solid var(--gray03);
    box-sizing:border-box;
    
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.form *:disabled {
    background-color: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
    border: 0px solid var(--gray03);
}
.form textarea{
    width: 100%;
    min-height: 300px;
    padding: calc(var(--base-s) * 2);
    box-sizing:border-box;
    resize: vertical;
}
.form textarea:disabled{
    border-radius: 0;
    padding: calc(var(--base-s) * 2);
    background-color: var(--white);
    border: 1px solid var(--white);
}

.form input[type="date"].filled{
    border: 1px solid var(--black);
}
.form input.narrow-input{
    max-width: 300px;
}
.form input:focus,
.form textarea:focus{
    border: 1px solid var(--black);
}
.form button:focus,
.form [type="submit"]:focus{
    border: 0px solid var(--black);
}
.form select {
    color: #A6A6A6;
}
.form select.active,
.form select.always-on{
    color: var(--black);
}
.form .select-cus .wpcf7-form-control-wrap{
   position: relative; 
}
.form .select-cus select,
.form .select-wrap select {
    position: relative;
    z-index: 0;
}
.form .select-wrap.lh-adj select {
    line-height: 23px;
}
.form .select-cus .wpcf7-form-control-wrap:after,
.form .select-wrap:after {
    content: "\f107";
    font-family: FontAwesome;
    color: #A6A6A6;
    padding: 2px 8px;
    position: absolute;
    right: 1px;
    top: 0;
    z-index: 1;
    text-align: center;
    width: 34px;
    height: 34px;
    line-height: 34px;
    pointer-events: none;
    box-sizing: border-box;
    opacity: 1;

    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.form .select-wrap.disabled:after {
    opacity: 0;
}
.form .select-wrap.lh-adj:after{
    height: 38px;
    line-height: 38px;   
}

form select.filled{
    color: var(--black);
}
.form select:focus{
/*    border: 1px solid #1b1b1b;*/
}
.form dl dd input[type=checkbox],
.form [type=checkbox]{
    font-family: inherit;
    border:0;
    width: 30px;
    background-color: transparent;
    vertical-align: top;
}

.form input[type="checkbox"]:not(:checked) + span:before,
.form input[type="checkbox"]:checked + span:before {
    content: '';
    position: absolute;
    left: -45px;
    top: 0px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray03);
    vertical-align: top;
    border-radius: 8px;
}
/*.form input[type="checkbox"]:not(:checked) + span:after,
.form input[type="checkbox"]:checked + span:after {
    top: 4px;
    left: -31px;
    font-size: 18px;
    vertical-align: top;

}*/
.form input[type="checkbox"]:checked + span:after {
    font-family: "Font Awesome 6 Free";
    content: '\f00c';
    position: absolute;
    top: 8px;
    left: -38px;
    font-size: 18px;
    line-height: 0.8;
    color: var(--btn-pri);
    transition: all .2s;
    vertical-align: top;
    font-weight: 600;
}
.form .wpcf7-list-item-label .obtn{
    display: inline;
}

/*.form [type="radio"]:checked,
.form [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}*/

.form input[type="radio"] {
    font-family: inherit;
    border: 0;
    width: 30px;
    height: 24px;
    padding: 0;
    position: relative;
    z-index: 999;
    background-color: transparent;
    vertical-align: top;
}
.form input[type="radio"]:not(:checked) + span:before,
.form input[type="radio"]:checked + span:before {
    content: '';
    position: absolute;
    left: -35px;
    top: -2px;
    width: 22px;
    height: 22px;
    border: 1px solid #898989;
    /*background: #fff;*/
    border-radius: 100%;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
    -webkit-transition: all 0.2s ease;
    o-transition: all 0.2s ease;
    transition: all 0.2s ease;

}
.form .wpcf7-list-item{
    position: relative;
}
.form .wpcf7-list-item-label{
    position: relative;
    line-height: 28px;
    display: inline-block;
    margin-left: calc(var(--base-s) * 1.5);
    max-width: calc(100% - 60px);
  /*width: calc(100% - 40px);*/
}


.form input[type="radio"]:not(:checked) + span:after,
.form input[type="radio"]:checked + span:after {
    top: 2px;
    left: -31px;
    font-size: 16px;
    line-height: 0.8;
}
.form input[type="radio"]:checked + span:after {
  position: absolute;
  top: 2px;
  left: -31px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 0.8;
  background-color: var(--btn-pri);
  transition: all .2s;
  /* display: block; */
  border-radius: 100%;
}

.form .checkbox-wrap{
    position: relative;
    text-align: left;
    font-weight: 400;
}
.form .checkbox-wrap input{
    width: 30px;
    height: 30px;
    padding: 0;
}
.form .checkbox-wrap input:focus{
    border: 0px solid;
}

.form button,
.form [type="submit"]{
    font-family: inherit;
    border:none;
    text-align: center;
    color: white;
    
    width: auto;
    min-width: 230px;
    padding: 14px 10px;
    line-height: 20px;
    box-sizing:border-box;

    background: var(--btn-pri);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

    margin: 24px auto;
    display: block;

    font-weight: 400;

    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

}
.form button:hover,
.form [type="submit"]:hover{
    background-color: var(--gold);
    cursor: pointer;
}

.form .response,
.form div.wpcf7-response-output{
  margin:0 auto 32px;
  font-size: 14px;
  max-width: 789px;
  text-align: center;
}
.form .response{
    display: none;
}
.form .response.active{
    display: block;
}

.form .wpcf7 form.invalid .wpcf7-response-output,
.form .wpcf7 form.unaccepted .wpcf7-response-output{
  padding: 10px;
  border: 1px solid #F8A523;
  background-color: #F8A523;
  color: white;
}

.form .response-error,
.form .wpcf7 form.failed .wpcf7-response-output,
.form .wpcf7 form.aborted .wpcf7-response-output {
  padding: 10px;
  border: 1px solid #E32124;
  background-color: #E32124;
  color: white;
}

.form div.wpcf7-spam-blocked{
  padding: 10px;
  border: 1px solid #fbbf00;
  background-color: #fbbf00;
  color: var(--black);
}
.form .error,
.form span.wpcf7-not-valid-tip,
.error-stand-alone{
    background-color: var(--red);
    color: var(--white);
    margin-top: calc(var(--base-s) * 2);
    margin-bottom: calc(var(--base-s) * 2);
    padding: calc(var(--base-s) * 2);
}
.reminder{
    background-color: var(--orange);
    color: var(--white);
    margin-bottom: calc(var(--base-s) * 2);
    padding: calc(var(--base-s) * 2);
}
.form .error,
.error-stand-alone,
.reminder{
    display: none;
}
.form .error.active,
.error-stand-alone.active,
.reminder.active{
    display: block;
}
.form .error p:last-child,
.error-stand-alone p:last-child,
.reminder p{
    margin-bottom: 0;
}
.form .error a.obtn{
    color: #cc5848;
    display: inline-block;
    text-decoration: underline;
}
.form .error a.obtn:hover{
    color: #cc5848;
    text-decoration: underline;
}
.form .ajax-loader,
.form div.wpcf7 .ajax-loader{
    margin: 15px auto;
    display: block;
    visibility: hidden;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../img/common/loader.gif);
    background-size: 30px auto;
    border: none;
    padding: 0;
    vertical-align: middle;
    display: none;
}

.form .ajax-loader.is-active,
.form div.wpcf7 .ajax-loader.is-active {
    display: block;
    visibility: visible;
}
.form .input-note{
    margin-top: 5px;
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .form span.wpcf7-list-item.narrow-100{
        /*margin: 5px 25px 5px 0;*/
        display: inline-block;
    }
}

.form dl dd .wpcf7-acceptance input[type=checkbox]{
    display: block;
    height: 0px;
    width: 0px;
    padding: 0;
}

.form .wpcf7-acceptance input[type="checkbox"]:not(:checked) + span:before,
.form .wpcf7-acceptance input[type="checkbox"]:checked + span:before{
    /*left: -26px;
    top: -2px;*/
    left: 0px;
    top: -2px;    
}
/*.form .wpcf7-acceptance input[type="checkbox"]:checked + span:after{
    left: 3px;
    top: 3px; 
}*/

.form .wpcf7-acceptance input[type="checkbox"]:not(:checked) + span:after,
.form .wpcf7-acceptance input[type="checkbox"]:checked + span:after{
     left: 4px;
    top: 3px;    
}
.form .wpcf7-acceptance .wpcf7-list-item-label{
    padding-left: 40px;
    margin-left: 0;
}
.form .wpcf7-acceptance span.wpcf7-list-item{
    margin: 5px 0 5px 0;
}
.form .wpcf7-form-control-wrap span.wpcf7-not-valid-tip{
    text-align: left;
}
.form dl dd.product-details-quantity-container{
    width: 180px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}
.product-details-quantity-container button{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    color: #4A017D;
    background-color: transparent;
    margin: 0;
    border: 1px solid white;
}
.product-details-quantity-container button:hover{
    color: white;
}
.product-details-quantity-container button:disabled{
    
    color: #BCBCBC;
}
.product-details-quantity-container button:disabled:hover{
    background-color: white;
    border: 1px solid white;
}
.product-details-quantity-container input{
    width: 80px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    margin: 0;
    text-align: center;
}
.product-details-quantity-container input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
    margin: 0; 
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  display: none;
}
.form .form-memo{}

.form .form-memo i.narrow-hide{
    display: none;
}
.form .form-memo i.wide-hide{
    display: inline-block;
}
.form .form-memo{
    margin-bottom: 0;
    margin-top: 5px;
}
.form .form-memo i{
    margin-left: 5px;
}

@media only screen and (min-width: 768px) {
      .form .form-memo i.wide-hide{
        display: none;
      }
      .form .form-memo i.narrow-hide{
        display: inline-block;
      }
}
.form .hcap_cf7-h-captcha-wrap .recaptcha-alert{
    display: none;
}
.form .hcap_cf7-h-captcha-wrap .recaptcha-alert.is-active{
    display: block;
    text-align: center;
}
.form.clean-form{

}
.form.clean-form input{
    border-radius: 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--black);
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 0;

    margin-bottom: calc(var(--base-s) * 2);
}
.narrow-form.form input{
    margin-bottom: calc(var(--base-s) * 2);
}
.form .awesomplete{
    width: 100%;
}
.narrow-form.form .awesomplete input{
    width: 100%;
}
.form .awesomplete > ul{
    background: white;
    margin: calc(var(--base-s) * -1) auto 0;
    border-radius: calc(var(--base-s) * 1);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.32);
    border: 1px solid var(--gray03);
}
.form .awesomplete > ul:before{
    top: -7px;
    left: 16px;
}
.form .awesomplete > ul > li{
    padding: calc(var(--base-s) * 1);
    letter-spacing: 1px;
}

.form .awesomplete mark {
    background: var(--yellow-hl);
    font-style: normal;
}
.awesomplete .visually-hidden{
    display: none;
}





