@charset "utf-8";

/* リセットCSS */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 共通設定 */
body {
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  background-color: #444;
}

img {
  max-width: 100%;
  /* 親要素より大きくならない設定 */
}








/* ここから自分用 */


/* header */ 

.header-site-menu ul{
    display: flex;
    justify-content: space-between;
}
  
  .header-site-menu li{
  font-weight: bold;
  display: inline-block;
  padding: 5px 30px 2px 27px;
  font-size: 24px;
  background: #000;
  line-height: 1.2;
  width: 100%;
  
  }
  
  .header-img img{
    position: relative;
    width: 100%
  }
  .header-text{
    position: absolute;
    top: 350px;
    left: 15%;
    width: 80%;
    z-index: 1;
  }
  
  /* footer */
  footer{
      background: #000;
  }
  
  .footer-inner{
      display: flex;
      justify-content: center;
      justify-content: space-between;
      padding: 30px 30px 0;
  }
  
  
  .footer-site-menu{
      font-weight: bold;
      display: inline-block;
      padding: 5px 30px 2px 27px;
      font-size: 24px;
      background: #000;
      line-height: 1.2;
      letter-spacing: 0;
      width: 250px;
  }
  
  .sns-logo{
      display: flex;
      width: 300px;
      justify-content: space-between;
      align-items: center;
  }
  .company-logo{
      display: flex;
      align-items: center;
  }
  
  .copyright{
      display: flex;
      justify-content: center;
  }


  /* main */

  .main{
    padding:36px 16px 80px;display:flex;
    flex-direction:column;
    align-items:center
  }
.page-title{
  color:#eee;margin:20px 0 30px;
  font-weight:500
}


.card{
  background:var(--card-bg);
  padding:34px;width:100%;
  max-width:780px;
  border-radius:4px;
  box-shadow:0 6px 20px rgba(0,0,0,0.5);
  background-color: #000;
  
}
.job-table{
  width:100%;
  border-collapse:collapse;
  color:#cfcfcf;
  margin-bottom:26px
}
.job-table th, .job-table td{
  padding:14px 12px;
  border-bottom:1px solid rgba(255,255,255,0.04);
  text-align:left;font-size:14px
}
.job-table th{
  width:28%;
  opacity:0.9;
  color:#999
}


.contact-phone{
  margin:18px 0;
  text-align:center
}
.contact-phone p{
  margin:0 0 8px
}
.phone-btn{display:inline-block;
  background:#fff;
  color:#000;
  padding:12px 20px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:3px
}


.contact-mail p{
  font-weight:600;
  margin:18px 0
}
.contact-form{
  display:grid;
  gap:12px
}
.contact-form label{
  display:block;
  font-size:14px
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea{
width:100%;
padding:10px;
border-radius:4px;border:1px solid rgba(255,255,255,0.06);background:#fff;color:#111}


.req{
  background:var(--red);
  color:#f55;
  padding:2px 6px;
  border-radius:3px;
  margin-left:8px;
  font-size:12px
}


.submit-wrap{
  display:flex;
  justify-content:center;
  margin-top:14px
}
.btn-submit{
  background:var(--accent);
  color:#fff;
  border:none;
  padding:12px 26px;
  border-radius:6px;
  font-weight:700;
  cursor:pointer;
  background-color: #090;
}

