/*--------- sp ---------*/
.main_photo{
  height: calc(100vh - 70px);
  overflow: hidden;  
  position: relative;
  color: #14141E;
  
  img{
		width: 100%;
    height: 100%;
		object-fit: cover;
		object-position: 50% 50%;
	}
  .cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    /*backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);*/
  }
  .main_tx{
    position: absolute;
    inset: 43% auto auto 50%;
    translate: -50% -50%;
    
    h1{
      font-size: clamp(2.5rem,5vw,5rem);
      position: relative;
      font-weight: var(--SemiBold);
      letter-spacing: .2em;
      color: var(--font-color);
      text-shadow: 2px 2px 5px #ccc;
      
      &:before{
        position: absolute;
        font-family: "Poppins", system-ui;
        font-style: normal;
        font-weight: var(--Regular);
        content: 'Recruit';
        display: inline-block;
        font-size: 56%;
        inset: 125% auto auto 50%;
        translate: -50% -50%;
        letter-spacing: 0;
      }
    }
  }
}
/*--------- ナビ sp ---------*/
.contents_nav{
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*position: sticky;
  top: 0;
  z-index: 1;
  padding-right: 40px;*/
  
  li{
    width: clamp(6em,30%,220px);
    position: relative;
    text-align: center;
    font-size: var(--font-size20);
    font-weight: var(--Medium);
    line-height: 1;
    
    &:before{
      position: absolute;
      content: '';
      display: inline-block;
      width: 1px;
      height: 35px;
      top: 0;
      left: 0;
      border-left: solid 1px #cccccc;
      transform: rotate(15deg);
    }
    &:last-of-type{
      &:after{
        position: absolute;
        content: '';
        display: inline-block;
        width: 1px;
        height: 35px;
        top: 0;
        right: 0;
        border-right: solid 1px #cccccc;
        transform: rotate(15deg);
      }
    }
    
    a{
      display: block;
      width: 100%;
    }
    
    span{
      color: var(--font-color-or);
      font-weight: var(--SemiBold);
      font-size: 1.1rem;
    }
  }
}


/*--------- テツモウとは sp ---------*/
.about{
  padding: var(--px100) 0;
  position: relative;
  overflow: hidden;
  
  .about_layer{
    position: absolute;
    top: -.05em;
    left: -.03em;
    width: 100%;
    color: rgba(255,255,255,.6);
    font-size: clamp(3.0rem,8.3vw,15rem);
    line-height: .8;
  }
}
.about_inner{
  width: min(90%,1360px);
  margin: 0 auto;
  padding: clamp(40px,6vw,80px) 0 clamp(30px,5vw,60px);
  background-color: #fff;
  border-top-right-radius: clamp(40px,6vw,80px);
  border-top-left-radius: clamp(40px,6vw,80px);
  
  h2{
    color: var(--font-color-or);
    font-size: clamp(3.0rem,5vw,6.5rem);
    font-weight: var(--Bold);
    text-align: center;
    line-height: 1.3;
    
    span{
      color: #333;
      font-size: 60%;
    }
  }
  
  h3{
    color: #333;
    font-size: clamp(1.6rem,1.9vw,2.2rem);
    font-weight: var(--Bold);
    text-align: center;
    
    span{
      color: var(--font-color-or);
    }
  }
  p{
    width: min(90%,755px);
    margin: 0 auto;
    padding-top: var(--px20);
    line-height: 1.8;
    font-size: var(--font-size18);
  }
}
.smooth{
  line-height: 0;
  top: 0;
  left: 0;
  
  figure{
    margin: 0;
  }
}
/*--------- 採用情報 sp ---------*/
.information{
  width: min(90%,1320px);
  margin: 0 auto;
  background-color: #fff;
  padding: clamp(30px,5vw,60px) 0 clamp(40px,6vw,80px);
  border-bottom-right-radius: clamp(40px,6vw,80px);
  border-bottom-left-radius: clamp(40px,6vw,80px);
}  
.information_inner{
  width: min(90%,1000px);
  margin: 0 auto;
  padding: min(5%,65px);
  border: 1px solid var(--main-color);
  border-radius: 15px;
 
  .title{
    font-size: var(--font-size48);
    font-weight: var(--SemiBold);
    letter-spacing: .1em;
    line-height: 1.2;
    position: relative;
    padding-left: 20px;

    &:before{
        position: absolute;
        content: '';
        display: inline-block;
        width: 1px;
        height: 78%;
        bottom: -1px;
        left: 0;
        border-left: solid 2px var(--font-color-or);
      }

    span{
      color: var(--font-color-or);
      font-weight: var(--SemiBold);
      letter-spacing: 0;
      font-size: var(--font-size14);
    }
  }
  
  /*タブ実装*/
  .tab-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin:40px 0;
  }
  .tab-wrap:after {
    content: '';
    width: 100%;
    height: 20px;
    background-color: transparent;
    display: block;
    order: -1;
  }
  .tab-label {
    color: #333;
    background-color: transparent;
    text-shadow: 0 -1px 0 rgba(0,0,0,.2);
    white-space: nowrap;
    text-align: center;
    padding: 4px 1.2em;
    order: -1;
    position: relative;
    z-index: 0;
    /*cursor: pointer;*/
    border: 1px solid #1b231f;
    border-radius: 50px;
    flex-grow: 0;
    margin-bottom: 10px;
    font-size: var(--font-size20);

  }
  .tab-label:not(:last-of-type) {
    margin-right: .8em;
  }
  .tab-content {
    width: min(100%,580px);
    margin: 0 auto;
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
  /* アクティブなタブ */
  .tab-switch:checked+.tab-label {
    background-color: #fff;
    border: 1px solid var(--mizu);
    background-color: var(--mizu);
    color: #fff;
  }
  /* ラジオボタン非表示 */
  .tab-switch {
    display: none;
  }
  /* タブの中*/
  .tab-switch:checked+.tab-label+.tab-content {
    height: auto;
    overflow: auto;
    opacity: 1;
    transition: .5s opacity;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  table{
    width: 100%;
    margin-top: var(--px20);
    border-collapse: collapse;/*--trにボーダー--*/
    border-spacing: 0;
    
    caption{
      font-weight: var(--SemiBold);
      font-size: clamp(1.6rem,2vw,2.2rem);
      text-align: left;
      border-bottom: 2px solid #707070;
      padding-bottom: clamp(6px,1vw,10px);
    }
    tr{
      border-bottom: 1px solid #cccccc;
      vertical-align: top;
      line-height: 1.4;
    }
  
    th{
      text-align: left;
      padding: 1em 0 .5em;
      width: 6em;
      text-align-last: justify;
      font-weight: var(--Medium);
      display: block;
    }
    td{
      padding: .5em 0 1em;
      font-weight: var(--Medium);
      display: block;
    }
  }
  .btn_box{
    margin-top: clamp(15px,3vw,42px);
    margin: 0 auto;
    font-size: var(--font-size20);
    
    a:hover{
      opacity: 1;
    }
    
    .btn_01 {
      display: block;
      width: min(100%,260px);
      margin: clamp(15px,3vw,30px) auto 0;
      padding-left: 0;
      line-height: 55px;
      outline: none;
      border-radius: 60px;
      color: #fff;
      background-color: var(--mizu);
      position: relative;
      border: 1px solid var(--mizu);
      transition: color 0.3s ease;
      overflow: hidden;
      text-align: center;
    }
    .btn_01:after {
      position: absolute;
      content: "→";
      font-size: 20px;
      right: 1em;
    }
    .btn_01:hover {
      color: var(--mizu);
      border-radius: 50px;
    }
    .btn_01:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }
    .btn_01::before {
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: #fff;
      transform: scaleX(0);
      transform-origin: right;
      transition: all 0.3s ease;
      transition-property: transform;
    }
    .btn_text {
      position: relative;
    }
  }
} 



@media (min-width:768px){
/*--------- ナビ tab ---------*/
  .contents_nav{
    li{
      &:before{
        height: 45px;
        top: -5px;
      }
      &:last-of-type{
        &:after{
          height: 45px;
          top: -5px;
        }
      }
      
      span{
        font-size: 1.2rem;
      }
    }
  } 
   
/*--------- 採用情報 tab ---------*/
.information_inner{
  width: min(90%,1000px);
  margin: 0 auto;
  padding: min(5%,65px);
  border: 1px solid var(--main-color);
  border-radius: 15px;
  
  .tab-label {
    padding: 7px 3em;
  }
   
  table{

    th{
      padding: 1em 0;
      width: 6em;
      text-align-last: justify;
      display: table-cell;
    }
    td{
      padding: 1em 0 1em 5em;
      display: table-cell;
    }
  }
  

} 



}
@media (min-width:1024px){
  .main_photo{
    height: calc(100vh - 100px);    
  } 
/*--------- ナビ pc ---------*/
  .contents_nav{
    height: 100px;
    padding-right: 0;

    li{

      &:before{
        height: 64px;
        top: -10px;
      }
      &:last-of-type{
        &:after{
          height: 64px;
          top: -10px;
        }
      }

      span{
        font-size: 1.4rem;
        letter-spacing: .1em;
      }
    }
  }

  
  
  
}


