@charset "utf-8";

/*
#################################
 
	デザイン書き換え
 
#################################
*/

html, body {
  background-color: #FFFFFF;
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif !important;
  overflow-x: hidden;
}

body{
    /*padding-top:0;*/
}

*, *::before, *::after {
  font-family: inherit;
}

/*FV*/
.hero{
  position: relative;
  width: 100%;
  max-width: 1920px;
  max-height: 400px;
  height: 400px;
  overflow: hidden; 
  }
  
  .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* トリミング */
  object-position: center; /* 中央基準 */
  display: block;
}
  
.hero-title {
  position: absolute;
  top: 100px;
  right: 0;
  text-align: end;
  color: #ffffff;
  width: fit-content; /* 40% から変更 */
  background-color: rgba(3, 87, 150, 0.9);
  padding: 35px 20px;
    line-height: 5rem
}

.subtitle{
    font-size:3.5rem;
    font-weight:normal;
    padding:0 10px 0 0;
}
.maintitle{
    font-size:4.5rem;
    padding:0 10px 0 20px;
    font-weight:bold;
}

/*背景*/
.section-bg1 {
    background: url(https://ykworld.co.jp/wp-content/themes/ykworld-theme/commons/images/bg.png);
    background-attachment: fixed;
    background-size: 100% auto;
    position: relative;
    padding-bottom: 10px;

}

.section-bg2 {
  background: url(https://ykworld.co.jp/wp-content/themes/ykworld-theme/commons/images/bg.png) no-repeat;
  background-size: 100% auto;
  position: relative;
  padding: 90px 0;
  z-index: 100;
  margin-top: -80px;
  /* overflow: hidden を削除 */

}

.section-bg2::before {
  content: '';
  position: absolute;
  top: 80px;
  bottom: 0;   /* 斜めカット分だけ延長 */
  left: -5%;       /* 左右も少し広げてはみ出しを防ぐ */
  right: -5%;
  background-color: #EFF4F8;
  transform: skewY(5deg);
  transform-origin: top left;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
    
  /*FV*/
.hero {
    overflow: hidden;
    aspect-ratio: 4 / 3; /* 横:縦の比率 */
    height:340px;
  }

  .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* トリミング */
    object-position: center; /* 中央を基準にトリミング */
  }
    .hero-title{
    padding: 15px 10px;
    line-height: 3.6rem;
}
  .subtitle{
    font-size:2rem;
    font-weight:normal;
    padding:0 10px 0 0;
}
    .maintitle{
    font-size:2.5rem;
    padding:0 10px 0 20px;
}
    
    
.section-bg2::before {
    bottom: 30px;
    }
    
.section-bg1 {

    z-index: 2;
}
    
    .section-bg2 {
    z-index: 1;  /* ← 100 → 1 に下げる */
}

 
    
    
    
    
    
    
}




/*
#################################
 募集要項
#################################
*/

/* セクションタイトル */
.section-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  display: block;
  padding: 80px 0 40px 0;
}

/* マーカー装飾 */
.marker {
  background: linear-gradient(transparent 60%, #EBE74F 60%);
  display: inline;
  padding: 0 4px;
}

/* テーブル外枠 */
.table-base {
  max-width: 1280px;
  width: 80%;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 20px;
  border: solid 1.5px #035796;
}

/* テーブル */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.info-table tr th {
  width: 180px;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #035796;
  font-weight: 600;
  background-color: #035796;
  padding: 0 30px;
  color: #ffffff;
  font-size: 2.5rem;
}

.info-table tr td {
  vertical-align: middle;
  padding: 16px 20px;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2em;
}

/* 求めるスキル：歓迎スキル帯 */
.skill-plus {
  display: block;
  background-color: #f5f5f5;
  text-align: center;
  padding: 5px;
  margin: 10px 0;
   font-weight:bold;
}

/*カッコ書きなど小さい文字*/
.small{
    font-size:1.5rem;
    line-height: 2rem;
    
}

.small-indent {
  display: block;
  text-indent: 1em;
}


@media screen and (max-width: 1024px) {
    
    .section-title{
        font-size:32px;
        padding: 45px 0 40px 0;
    }
    
    .table-base {
      max-width: 1024px;
      width: 90%;
      padding:0;
    }
    
/* テーブル */
    
 /* th・td を縦並びに */
  .info-table tr,
  .info-table tr th,
  .info-table tr td {
    display: block;
    width: 100%;
  }
    
    .table-base{
        border:none;
    }

  .info-table tr th {
    text-align: left;
    padding: 10px 16px;
    font-size: 1.8rem;
  }

    
    .info-table tr  {
    border: none;
    }    
   

  /* 行間のスペースをリセット */
  .info-table {
    border-spacing: 0;
  }
    
 .info-table tr th {
    white-space: normal; /* 折り返しを許可 */
  }
    
.info-table {
  border-collapse: separate !important; /* collapse → separate に変更 */
  border-spacing: 0 !important;
  width: 100% !important;
  table-layout: fixed;
}

  .info-table tr,
  .info-table tr th,
  .info-table tr td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box; /* paddingを幅に含める */
  }

  .info-table tr td {
    padding: 16px;
    font-size: 1.6rem;
    /*border-right: dashed 1.5px #035796;
    border-left: dashed 1.5px #035796;*/
    }

    
    .info-table tr{
    border: solid 1.5px #035796;
    }
    


}


/*
#################################
 ボタン・CTA
#################################
*/

/* 応募ボタン */
.btn-apply {
    display: block;
    width: fit-content;
    padding:0.2rem 11rem;;
    margin: 20px auto;
    background-color:#035796;
    color:#FFFFFF;
    border-radius:50px;
    font-size:2.5rem;
    font-weight:bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 問合せボタン */
.btn-contact{
    display: block;
    width: fit-content;
    padding:0.2rem 11rem;;
    margin: 20px auto;
    background-color:#FFFFFF;
    color:#000000;
    border-radius:50px;
    font-size:2.5rem;
    font-weight:bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-section{
    width: fit-content;
    margin: 0 auto;
}

.contact-section p{
    text-align:center;
}

.cta1{
    margin:100px 0;
}

.cta2{
        margin: 180px 0 100px 0;
}

.row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.label {
  white-space: nowrap; /* 「・勤務地：」が途中で折り返さないように */
}




@media screen and (max-width: 1024px) {
.cta1{
    margin:0 0 30px 0;
    position: relative;
    z-index:10;

}
    
.cta2{
        margin: 40px 0 30px 0;
}  
    
}
/*
#################################
 採用プロセス
#################################
*/
.process-section {
      padding: 50px 0 0 0;
}

/* ステップを横並びに */
.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
    
    align-items: stretch;
}

.process-step {
  background-color: #ffffff;
  text-align: center;
  flex: 1;
　min-height: 120px;
    padding: 10px 0;
    border-radius:20px;
    width:20%;

    
}

.step-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555555;
}

/* 矢印 */
.step-arrow {
      display: flex;
  align-items: center;     /* 縦中央 */
  justify-content: center; /* 横中央 */
  font-size: 2rem;
  color: #035796;
  flex-shrink: 0;
  transform: rotate(-90deg);
    padding: 0 12px; /* 左右に余白 */
}


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

    .process-steps{
        flex-direction: column;
        max-width: 1024px;
    }
    
    .process-step{
        width:80%;
        margin:0 auto;
        min-height: 100px;
    }
    
    .step-arrow{
        transform: rotate(0deg);
    }
    
    .step-name {
  font-size: 2.6rem;
        margin:0;
}

.step-desc {
  font-size: 1.2rem;
}

 .process-section {
    padding: 10px 0 0 0;
}   
    
    
}