body {
  font-family: 'Noto Sans', sans-serif;
}
.recruit-hero {
    display: flex;
    justify-content: flex-start; /* 左寄せ */
    padding: 0 0 0 5%;
    position: relative; /* 右に余白を寄せる（お好みで） */
  }
  
  .recruit-hero .hero-inner {
    position: relative;
    width: 80%;
    overflow: hidden;
  }
  
  .recruit-hero img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .recruit-hero .hero-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    padding-left: 10%;
  }
  
  .recruit-hero .hero-text h1 {
    font-size: 30px;
    letter-spacing: 0.2em;
    font-family: jost;
    margin: 0;
    font-weight: 400;
  }
  
  .recruit-hero .hero-text p {
    font-size: 14px;
    margin: 4px 0 0;
    letter-spacing: 0.1em;
  }

  .hero-image.sp {
    display: none;
  }
  
  .hero-image.pc {
    display: block;
  }
 
@media screen and (max-width: 767px) {
  .hero-image.pc {
    display: none;
  }

  .hero-image.sp {
    display: block;
    width: 100%;
    height: auto;
  }

  .recruit-hero {
    display: block;
    padding: 0;
  }

  .recruit-hero {
    display: block;
    padding: 0 !important;
  }

  .recruit-hero img {
    width: 100%;
    height: auto;
  }


  .recruit-hero .hero-text h1 {
    font-size: 24px;
    letter-spacing: 0.1em;
  }

  .recruit-hero .hero-text p {
    font-size: 11px;
    letter-spacing: 0.2em;
    margin: 0;
  }
  .recruit-hero .hero-text{
    left: 0;
  }
}
  
  /* メッセージ */
  .recruit-message {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 75px 0;
    padding-bottom: 75px;
  }
  
  .recruit-message h2 {
    font-size: 1.3em;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.2em;
    color: #050505;
  }
  
  .recruit-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #050505;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 991px){
    .recruit-message{
      max-width: 600px;
    }
    .recruit-message h2{
      font-size: 20px;
    }
    .recruit-message p{
      font-size: 15px;
    }
  }
  
  @media screen and (max-width: 767px){
    .recruit-message{
      width: 90%;
    }
    .recruit-message h2{
      font-size: 17px;
    }
    .recruit-message p{
      font-size: 13px;
    }
  }
  
  /* 職種紹介 */
  .recruit-positions {
    display: flex;
    flex-direction: column;
    gap: 75px;
    max-width: 820px;
    margin: 0 auto;
    padding-bottom: 75px;
  }
  
  .position {
    display: flex;
    align-items: flex-start;
    gap: 55px;
  }
  
  .position img {
    width: 370px;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
  }
  
  .position .text {
    flex: 1;
  }
  
  .position .text h3 {
    font-size: 1.3em;
    font-weight: 500;
    position: relative;
    display: inline-block;
    letter-spacing: 0.2em;
    color: #050505;
  }
  
  .position .text h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #d6d1ce;
    margin-top: 25px;
  }
  
  .position .text p {
    margin-top: 25px;
    line-height: 1.8;
    font-size: 16px;
    color: #050505;
    letter-spacing: 0.1em;
  }
  @media screen and (max-width: 991px){
    .recruit-positions{
      max-width: 700px;
    }
    .position{
      gap: 50px;
    }
    .position img{
      width: 350px;
    }
    .position .text h3{
      font-size: 18px;
    }
    .position .text p{
      font-size: 14px;
    }
  }
  /* モバイル対応 */
  @media screen and (max-width: 768px) {
    .position {
      flex-direction: column;
      gap: 20px;
    }
  
    .position img {
      width: 100%;
    }
    .recruit-positions{
      width: 90%;
      padding: 0 0 50px 0;
    }
    .position .text h3{
      font-size: 17px;
    }
    .position .text p {
      font-size: 13px;
  }
  }
  
  /* 募集要項 */
  .recruit-table {
    background-color: #f7f7f7;
    padding: 75px 20px;
    max-width: 100%;
  }
  
  .section-title h2 {
    letter-spacing: 0.2em;
    position: relative;
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 40px;
    font-weight: 500;
  }
  
  .section-title h2::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #ff974c;
    margin: 25px auto 0; /* ← これで中央に来る！ */
  }

  .recruit-table table {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    border-collapse: collapse;
    font-family: "Noto Sans JP", sans-serif;
  }
  
  .recruit-table td {
    padding: 20px 8px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.8;
  }

  .recruit-table th{
    padding: 20px 0px 20px 8px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.8;
    width: 20%;
    font-weight: 500;
  }
  
  .recruit-table tr {
    border-bottom: 1px solid #ccc;
  }
  
  .table-title-1{
    font-size: 21px !important;
    letter-spacing: 0.1em;
  }

  .table-1{
    margin-bottom: 75px !important;
  }

  @media screen and (max-width: 991px){
    .section-title h2{
      font-size: 20px;
    }
    .recruit-table table{
      max-width: 700px;
    }
    .table-title-1{
      font-size: 18px !important;
    }
  }
  @media screen and (max-width: 768px) {
    .recruit-table table{
      display: block;
      width: 100%;
    }
    .recruit-table tr{
      display: block;
      Width: 100%;
    }
    .recruit-table th{
      width: 100%;
      display: block;
      font-size: 16px;
      padding: 20px 0px 10px 0px;
    }
    .recruit-table td{
      padding: 0 0 20px 0;
      font-size: 13px;
    }
    .recruit-table{
      padding: 50px 5%;
    }
  }
  /*流れ*/
  .flow-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    padding: 0 5%;
  }
  
  .step {
    background: #fff;
    border: 1px solid #d3cbc5;
    padding: 25px 25px 20px 25px;
    width: 23%;
    box-sizing: border-box;
    position: relative;
  }
  
  .step p{
    font-size: 14px;
  }

  .step .icon img {
    width: 90px;
    margin: 15px 0;
  }
  
  .step:not(:last-child)::after {
    content: '▶';
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    color: #c9c3c0;
    font-size: 15px;
  }
  
  .flow-wrap{
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .flow-title-wrap h2{
    font-family: var(--english);
    font-weight: 400;
    font-size: 2rem;
    position: relative;
    text-align: center;
    line-height: 1.1;
  }

  .flow-title-wrap .subtitle{
    display: block;
    font-family: var(--japanese);
    font-size: 0.8rem;
    font-weight: 400;
    text-align: center;
    color: #050505;
    letter-spacing: 0.05em;
    margin-top: 10px;
  }

  .flow-title-wrap h2 span{
    color: #ff974c;
  }

  .flow-title-wrap{
    margin-bottom: 35px;
  }

  .step h3{
    font-size: 17px;
    color: #686461;
  }

  .step p{
    font-size: 14px;
    color: #000;
  }
  @media screen and (max-width: 1100px){
    .step p{
      font-size: 13px;
    }
  }
  @media screen and (max-width: 991px) {
    .flow-steps {
      flex-direction: column;
      gap: 30px;
    }
  
    .step {
      width: 100%;
    }
  
    .step:not(:last-child)::after {
      content: none;
    }
    .step:not(:last-child)::after {
      content: '▼';
      position: absolute;
      bottom: -25px;
      left: 50%;
      transform: translateX(-50%);
      color: #c9c3c0;
      font-size: 14px;
      top: auto;
    }
    .flow-steps{
      padding:  0 15%;
    }
    .flow-wrap{
      padding-top: 50px;
      padding-bottom: 50px;
    }
  }

  .contact-section{
    display: none;
  }

  /*フォーム*/
  .recruit-form-section {
    background: #fff;
    padding: 60px 20px;
  }
  
  .recruit-form-section .section-title {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .recruit-form-section .section-title .subtitle-en {
    font-size: 12px;
    color: #a9a4a1;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    font-family: 'Jost';
    font-weight: 400;
  }
  
  .recruit-form-section .section-title h2 {
    font-size: 1.3em;
    font-weight: 500;
    color: #050505;
    letter-spacing: 0.2rem;
  }
  
  /* フォームの背景 */
  .wpcf7-form {
    background: #f2efed;
    padding: 40px 45px;
    max-width: 850px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  /* 各ラベル */
  .wpcf7-form label {
    margin-bottom: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    color: #333;
    display: flex;
    width: 100%;
  }
  
  /* テキスト・メール・電話・セレクト・テキストエリア */
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form select,
  .wpcf7-form textarea {
    width: 100%;
    padding: 10px 15px;
    background: #fdfdfd;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    box-sizing: border-box;
  }
  
  .wpcf7-form textarea {
    height: 120px;
  }
  
  
  .form-title h2::after{
    display: none;
  }

  .form-label{
    width: 50%;
    font-size: 15px;
  }

  .required-mark{
    font-size: 13px;
    color: #ff740f;
    margin-left: 6px;
  }

  .wpcf7-form-control-wrap{
    width: 100%;
  }

  .form-select{
    width: 45% !important;
  }

  /* プライバシー同意と送信ボタンの整列 */
.wpcf7-form .form-accept {
  display: block;
  margin: 20px auto 40px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

/* チェックボックスの余白調整 */
.form-accept input[type="checkbox"] {
  margin-right: 6px;
}

/* 送信ボタン */
.wpcf7-form .form-submit {
  display: block;
  margin: 30px auto 0;
  padding: 15px 70px;
  background: #fff;
  border: 1px solid #d9d1cb;
  font-size: 14px;
  font-family: 'Noto Sans', sans-serif;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* オレンジの点 */
.wpcf7-form .form-submit::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #ff974c;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* disabled状態のデザイン（CF7の自動適用クラス） */
.wpcf7-form .form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: #050505;
  margin-top: 40px;
  margin-bottom: 15px;
  font-family: 'Noto Sans', sans-serif;
}

.form-note a {
  color: #ff740f;
  text-decoration: none;
  display: inline-block;
}

.wpcf7-acceptance input[type="checkbox"] {
  vertical-align: middle;
  transform: translateY(1px);
  margin-right: 6px;
}

.wpcf7-acceptance label {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.form-accept {
  display: flex !important;
  justify-content: center !important;
  margin-top: 20px;
}

.form-accept label {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #333;
}

.form-accept input[type="checkbox"] {
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(0); /* ← ここ微調整できる */
}

.wpcf7-form .form-accept span{
  width: auto;
  margin-bottom: 0.5px;
}

.form-submit-button {
  display: inline-block;
  padding: 18px 75px;
  background: #f2efed;
  border: 1px solid #6d6d6c;
  font-size: 14px;
  font-family: 'Noto Sans', sans-serif;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #050505;
  font-size: 13px;
}

.form-submit-wrap::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #f8833c;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  right: 295px;
}

.floating-toggle{
  display: none;
}

.form-submit-wrap {
  position: relative;
  margin: 0 auto; /* ← これがないと中央にならない！ */
  text-align: center;
}

.wpcf7-spinner{
  display: none;
}
@media screen and (max-width: 991px){
  .form-submit-wrap::after{
    top: 51%;
    right: 253px;
  }
  .form-label{
    font-size: 14px;
  }
  .required-mark{
    font-size: 12px;
  }
}
  .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form select, .wpcf7-form textarea{
    font-size: 12px;
    color: #050505;
  }

  @media screen and (max-width: 768px){
    .wpcf7-form{
      padding: 30px 10px;
    }

    .wpcf7-form label{
      display: block;
      margin-bottom: 0;
    }
    .form-label{
      display: inline-block;
      margin-bottom: 10px;
      width: 100%;
    }
    .form-select{
      width: 100% !important;
    }
    .form-note{
      font-size: 13px;
      line-height: 1.6;
      word-break: keep-all;
    }
    .form-submit-wrap::after{
      right: 80px;
    }
    .wpcf7-form .form-accept span{
      vertical-align: bottom;
    }
    .recruit-form-section{
      padding: 50px 0px;
      width: 90%;
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 1025px){
    .recruit-hero{
      padding: 0 0 0 5%;
    }
  }