/*
Theme Name: nano-dia Theme
Author: Nanodia
Description: FALCON company website theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: falcon-theme
*/

/* ==========================================================================
   14. Recruit-formページ
   ========================================================================== */
   .page-content{
    max-width: 680px;
  margin: 0 auto;
   }
   .oubo{
    margin: 30px auto;
      max-width: 950px;
    }
    .required-srt{
      margin-left: 2%;
      font-style: normal;
      background: #000;
      color: #fff;
      font-size: 10px;
      display: inline-block;
      vertical-align: middle;
      padding: 1px 3px 0;
      line-height: 1.7;
    }
    .cform{
        width: 100%;
    }
    .cform th{
    width: 30%;
      background: #f7f7f7;
      padding: 2em 1em;
      display: flex;
      align-items: center;
    }
    .cform td{
    width: 70%;
      padding: 10px 0 10px 30px;
      display: flex;
      align-items: center;
    }
    .cform tr{
    display: flex;
      flex-wrap: wrap;
      border-bottom: 1px solid #ccc;
      width: 90%;
      margin: 0 auto;
      align-items: stretch;
      font-size: 14px;
    }
    input[type="submit"] {
        display: flex;
        margin: 0 auto;
        width: 450px;
        height: 80px;
color: #000;
  font-size: 23px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #000;
        justify-content: center;
        align-items: center;
        transition: .3s all ease;
        text-decoration: none;
        background: #fff;
    }
    .submit-btn{
    text-align: center;
    margin: 30px auto;
    display: flex;
    }
    input[type=submit]:hover {
        background: linear-gradient(135deg, #7c7c7c 0%, #0e0e0e 100%);
        color: #fff;
    }
    .new2{
    background: #f1f1f1;
      padding: 30px;
    margin: 30px auto;
      max-width: 950px;
    }
    input[name="your-name"],input[name="mail"],input[name="tel"] ,input[name="dantai"] {
       border-radius: 10px;
      width: 100%;
      display: inline-block;
      margin: 10px 14px 10px 0;
      background: #fafafa;
      border: 1px solid #e3e3e3;
      height: 50px;
      font-size: 1rem;
      padding-left: 1em;
    }
    textarea[name="contents"]{
       border-radius: 10px;
       width: 98%;
      display: inline-block;
    margin: 10px 0;
      background: #fafafa;
      border: 1px solid #e3e3e3;
      font-size: 1rem;
      padding-left: 1em;
    }
    input[name="nen"]{
    width: 30%;
    margin: 10px 0;
      background: #fafafa;
      border: 1px solid #e3e3e3;
      height: 50px;
    }
    select{
    padding: 2px 2%;
      -webkit-appearance: none;
    width: 25%;
      background: #fff url(/wp-content/themes/falcon/img/common/icon_arrow.svg) no-repeat;
      background-size: 30px 20px;
      background-position: right center;
      height: 50px;
      line-height: 40px;
    margin-left: 10px;
    }
    .kanryo{
    display: flex;
      justify-content: center;
      align-items: center;
    }
    .kanryo img{
    width: 30%;
      border-radius: 50%;
    }
    .kanryo p{
    width: 70%;
    }
        @media screen and (max-width: 680px) {
    .cform tr{
    width:100%;
    }
    .cform th{
    width:100%;
    }
    .cform td{
    width:100%;
    padding: 10px;
    }
    }

    :root {
      --step-primary: #000000;  
      --step-border: #e0e0e0;  
      --step-text: #666666;  
      --step-completed: #f5f9ff; 
    }
    
    .step-wrapper {
      margin: 30px auto;
      max-width: 800px;
    }
    
    .step-indicator {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 !important;
      margin: 0;
      list-style: none; 
      position: relative;
      width: 80%; 
      margin: 0 auto; 
    }
    
    /* 横線の調整 */
    .step-indicator::before {
      content: '';
      position: absolute;
      height: 2px;
      background: var(--step-border);
      width: calc(100% - 160px);
      left: 80px;
      top: 20px;
      z-index: 1;
    }
    
    .step {
      position: relative;
      z-index: 2;
      text-align: center;
      flex: 1;
      max-width: 200px;
      list-style-type: none;  
    }
    
    .step-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid var(--step-border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      color: var(--step-text);
      font-weight: bold;
    }
    
    .step-title {
      font-size: 14px;
      color: var(--step-text);
      margin-top: 5px;
    }
    
    /* アクティブなステップのスタイル */
    .mw_wp_form_input .step[data-step="input"] .step-number,
    .mw_wp_form_confirm .step[data-step="confirm"] .step-number,
    .mw_wp_form_preview .step[data-step="confirm"] .step-number,
    .mw_wp_form_complete .step[data-step="complete"] .step-number {
      background: var(--step-primary);
      border-color: var(--step-primary);
      color: #fff;
    }
    
    /* 完了したステップのスタイル */
    .mw_wp_form_confirm .step[data-step="input"] .step-number,
    .mw_wp_form_preview .step[data-step="input"] .step-number,
    .mw_wp_form_complete .step[data-step="input"] .step-number,
    .mw_wp_form_complete .step[data-step="confirm"] .step-number {
      background: var(--step-completed);
      border-color: var(--step-primary);
      color: var(--step-primary);
    }
    @media screen and (max-width: 580px) {

      .step-indicator::before {
        width: calc(100% - 120px);
        left: 60px;
      }

    }