@charset "UTF-8";

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    page_contact
  ===================== */
  
  #page_contact #fv_page {
    padding-bottom: 60px;
  }

  /* =====================
    contact_form
  ===================== */
  
  #contact_form {
    padding-top: 0;
  }

  #contact_form .text {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 90px;
  }

  /*  step
  ------------------------*/

  .step {
    justify-content: center;
    align-items: center;
    gap: 0 90px;
    margin-bottom: 60px;
  }
  
  .step li {
    width: 60px;
    height: 60px;
    line-height: 58px;
    border-radius: 50%;
    font-size: 13px;
    text-align: center;
    border: 1px solid var(--color-black);
    position: relative;
  }

  .step li::before {
    content: '';
    width: 50px;
    height: 1px;
    border-bottom: 1px dashed var(--color-black);
    display: block;
    position: absolute;
    top: 50%;
    left: -70px;
  }

  .step li:first-child::before {
    display: none;
  }
  
  .step li.current {
    background: var(--color-black);
    color: #fff;
  }

  /*  form
  ------------------------*/
  
  .form {
    background: var(--color-gray);
    padding: 38px 0 180px;
  }

  .input_area {
    margin-bottom: 95px;
  }

  .input_area li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .input_area li:last-child {
    margin-bottom: 0;
  }

  .input_area li .label {
    width: 220px;
    margin-right: 30px;
    font-size: 18px;
    font-weight: 700;
    padding-top: 5px;
  }

  .input_area li .input {
    width: calc( 100% - 250px );
  }

  .form input.input_txt,
  .form textarea,
  .form select {
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid var(--color-black);
    font-size : 18px;
    min-height: 63px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding: 10px 20px;
  }

  .form textarea {
    resize: vertical;
    padding: 20px 20px;
    line-height: 1.6;
  }

  .length_counter {
    width: 100%;
    font-size: 14px;
    color: #8B8B8B;
    text-align: right;
    margin-top: 5px;
  }

  .form .privacy {
    font-size: 16px;
    text-align: center;
  }

  .form .privacy a {
    font-weight: 700;
  }

  .form .check input {
    display: none;
  }

  .form .check .mwform-checkbox-field-text {
    position: relative;
    padding-left: 47px;
  }

  .form .check .mwform-checkbox-field-text::before {
    content: '';
    width: 32px;
    height: 32px;
    display: block;
    border: 1px solid #000;
    background: #fff;
    position: absolute;
    top: -4px;
    left: 0;
    cursor: pointer;
  }

  .form .check .mwform-checkbox-field-text::after {
    content: '';
    width: 20px;
    height: 12px;
    display: block;
    border-left: 4px solid var(--color-black);
    border-bottom: 4px solid var(--color-black);
    transform: rotate(-45deg);
    position: absolute;
    top: 3px;
    left: 6px;
    display: none;
  }

  .form .check input:checked + .mwform-checkbox-field-text::after {
    opacity: 1;
    display: block;
  }
  
  .form .btn_area {
    margin-top: 80px;
  }

  .form .btn.submit {
    width: 400px;
    font-size: 20px;
    height: 86px;
    padding-left: 86px;
    margin: 0 auto;
    cursor: pointer;
  }

  .form .btn.submit::before {
    content: '';
    width: 86px;
    height: 86px;
    background-size: 37px;
  }

  .form .btn.back {
    width: 400px;
    height: 60px;
    margin: 0 auto;
  }

  .form .mw_wp_form .error {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 700;
  }

  .form .select select {
    padding-right: 45px;
  }

  .form .mw_wp_form_input .select {
    position: relative;
  }

  .form .mw_wp_form_input .select::before {
    content: '';
    width: 18px;
    height: 15px;
    display: block;
    background: url(../img/common/icon_select.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 25px;
    right: 15px;
    pointer-events: none;
  }

  .form .btn.back {
    margin-top: 40px;
  }

  .form .btn.back::before {
    transform: scale(-1, 1);
  }

  /*  confirm
  ------------------------*/
  
  .mw_wp_form_confirm {
    padding-top: 70px;
  }

  .mw_wp_form_confirm .length_counter {
    display: none;
  }

  .mw_wp_form_confirm .privacy {
    display: none;
  }

  .mw_wp_form_confirm .input_area li {
    margin-bottom: 57px;
  }

  .mw_wp_form_confirm .input_area li:last-child {
    margin-bottom: 0;
  }

  .mw_wp_form_confirm .input_area li .label {
    margin-right: 50px;
    padding-top: 0;
  }

  .mw_wp_form_confirm .input_area li .input {
    width: calc( 100% - 270px );
  }

  /*  complete
  ------------------------*/

  .page_complete {
    background: #fff;
  }
  
  .complete_ttl {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
  }

  .page_complete .text {
    text-align: center;
  }

  .page_complete .btn.back {
    margin-top: 90px;
  }

}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

@media screen and (max-width:899px) {

  /* =====================
    page_contact
  ===================== */
  
  #page_contact #fv_page {
    padding-bottom: 40px;
  }

  /* =====================
    contact_form
  ===================== */
  
  #contact_form {
    padding-top: 0;
  }

  #contact_form .text {
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 80px;
  }

  /*  step
  ------------------------*/

  .step {
    justify-content: center;
    align-items: center;
    gap: 0 50px;
    margin-bottom: 40px;
  }
  
  .step li {
    width: 60px;
    height: 60px;
    line-height: 58px;
    border-radius: 50%;
    font-size: 13px;
    text-align: center;
    border: 1px solid var(--color-black);
    position: relative;
  }

  .step li::before {
    content: '';
    width: 30px;
    height: 1px;
    border-bottom: 1px dashed var(--color-black);
    display: block;
    position: absolute;
    top: 50%;
    left: -40px;
  }

  .step li:first-child::before {
    display: none;
  }
  
  .step li.current {
    background: var(--color-black);
    color: #fff;
  }

  /*  form
  ------------------------*/
  
  .form {
    background: var(--color-gray);
    padding: 43px 0 180px;
  }

  .input_area {
    margin-bottom: 40px;
  }

  .input_area li {
    display: block;
    margin-bottom: 23px;
  }

  .input_area li:last-child {
    margin-bottom: 0;
  }

  .input_area li .label {
    margin-right: 30px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .form input.input_txt,
  .form textarea,
  .form select {
    width: 100%;
    padding: 13px 16px;
    background: #fff;
    border: 1px solid var(--color-black);
    font-size : 18px;
    min-height: 63px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding: 10px 15px;
  }

  .form textarea {
    resize: vertical;
    padding: 25px 15px;
    line-height: 1.8;
    height: 342px;
  }

  .length_counter {
    width: 100%;
    font-size: 14px;
    color: #8B8B8B;
    text-align: right;
    margin-top: 5px;
  }

  .form .privacy {
    font-size: 16px;
  }

  .form .privacy a {
    font-weight: 700;
  }

  .form .check input {
    display: none;
  }

  .form .check .mwform-checkbox-field-text {
    position: relative;
    padding-left: 47px;
  }

  .form .check .mwform-checkbox-field-text::before {
    content: '';
    width: 32px;
    height: 32px;
    display: block;
    border: 1px solid #000;
    background: #fff;
    position: absolute;
    top: -4px;
    left: 0;
    cursor: pointer;
  }

  .form .check .mwform-checkbox-field-text::after {
    content: '';
    width: 20px;
    height: 12px;
    display: block;
    border-left: 4px solid var(--color-black);
    border-bottom: 4px solid var(--color-black);
    transform: rotate(-45deg);
    position: absolute;
    top: 3px;
    left: 6px;
    display: none;
  }

  .form .check input:checked + .mwform-checkbox-field-text::after {
    opacity: 1;
    display: block;
  }
  
  .form .btn_area {
    margin-top: 60px;
  }

  .form .btn.submit {
    width: 100%;
    max-width: 400px;
    font-size: 20px;
    height: 86px;
    padding-left: 86px;
    margin: 0 auto;
  }

  .form .btn.submit::before {
    content: '';
    width: 86px;
    height: 86px;
    background-size: 37px;
  }

  .form .btn.back {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 60px;
  }

  .form .mw_wp_form .error {
    font-size: 12px;
    margin-top: 5px;
    font-weight: 700;
  }

  .form .select select {
    padding-right: 45px;
  }

  .form .mw_wp_form_input .select {
    position: relative;
  }

  .form .mw_wp_form_input .select::before {
    content: '';
    width: 18px;
    height: 15px;
    display: block;
    background: url(../img/common/icon_select.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 25px;
    right: 15px;
    pointer-events: none;
  }

  .form .btn.back {
    margin-top: 40px;
  }

  .form .btn.back::before {
    transform: scale(-1, 1);
  }

  /*  confirm
  ------------------------*/
  
  .mw_wp_form_confirm .length_counter {
    display: none;
  }

  .mw_wp_form_confirm .privacy {
    display: none;
  }

  .mw_wp_form_confirm .input_area li:last-child {
    margin-bottom: 0;
  }

  .mw_wp_form_confirm .input_area li .label {
    margin-bottom: 10px;
  }

  .mw_wp_form_confirm .input_area li .input {
    font-size: 18px;
  }

  /*  complete
  ------------------------*/

  .page_complete {
    background: #fff;
  }
  
  .complete_ttl {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
  }

  .page_complete .text {
    text-align: center;
  }

  .page_complete .btn.back {
    margin-top: 90px;
  }  
 
}