@charset "utf-8";

/* -------------------------------
共通
 ------------------------------- */

 body {
  margin: 0;
  background: #faf0e6;
  color: #115582;
  font-family: 'Raleway', sans-serif;
  position: relative;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}


h2 {
  text-align: center;
  font-size: 1.8rem;
  position: relative;
  letter-spacing: 1rem;
}

h2::before {
  content: "- ";
}

h2::after {
  content: " -";
}

.inner-width {
  max-width: 1000px;
  padding: 0 24px;
  box-sizing: border-box;
  margin: 0 auto;
}


/* -------------------------------
ヘッダー
 ------------------------------- */

 .logo {
  text-align: center;
  font-size: 2.0rem;
  font-family: 'Poppins', sans-serif;
  margin-top: 60px;
  letter-spacing: .3rem;
  line-height: 1.3;
}

.point-color {
  color: #f4a460;
}

.logo .bottom {
  margin-top: 40px;
  position: relative;
}

.logo .bottom::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #115582;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}

.logo .bottom::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #115582;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: rotate(135deg);
}


/* -------------------------------
求人情報
 ------------------------------- */

 .recruit table{
  border-collapse: collapse;
  margin: 0 auto;
 }

 .recruit thead th{
  font-size: 1.2rem;
  letter-spacing: 2rem;
  width: 20%;
  padding: 15px 16px;
  background: #115582;
  color: #fff;
  border-top: 1px solid #115582;
  border-bottom: 1px solid #115582;
 }

 .recruit tbody th{
  font-size: .9rem;
  width: 20%;
  padding: 15px 20px;
  background: #7acb;
  color: #fff;
  border: 1px solid #115582;
  border-left: none;
 }

 .recruit tbody th br{
  display: none;
 }

 .recruit td {
  font-size: .9rem;
  width: 80%;
  padding: 15px 24px;
  background: #fff;
  border-top: 1px solid #115582;
  border-bottom: 1px solid #115582;
}

/* -------------------------------
フッター
 ------------------------------- */

.contact {
  text-align: center;
  background: #115582;
  color: #fff;
  padding: 50px 0;
  margin-top: 80px;
}

.contact p {
  text-align: center;
  color: #fff;
}

.pc-text {
  margin-top: 16px;
  color: #fff;
}

.sp-text{
  display: none;
  color: #fff;
}

.phone-all{
  display: inline-block;
  transition: opacity .3s, transform .3s;
  line-height: 1;
}

.phone-small {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: #fff;
}

.phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem;
  color: #fff;
}

.copyright{
  margin-top: 80px;
}

/* -------------------------------
スマホ用
 ------------------------------- */

@media(max-width: 600px){

  h2{
    margin: -15px 0 30px;
  }

  .logo {
    line-height: 1;
    margin-top: 30px;
  }

  .recruit thead th{
    width: 25%;
   }
  
   .recruit tbody th{
    width: 25%;
   }
  
   .recruit tbody th br{
    display: block;
   }
  
   .recruit td {
    width: 75%;
  }
  

  .pc-text {
    display: none;
  }
  
  .sp-text{
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
  }

  .sp-br {
    display: block;
  }

  .logo br {
    display: block;
  }

  .phone-small {
    font-size: 2rem;
    color: #115582;
  }

  .phone {
    font-size: 3.5rem;
    color: #115582;
  }

  .contact {
    margin-top: 50px;
    padding: 30px 0 50px;
  }


  .phone-all{
    border-bottom: none;
    display: inline-block;
    background: #f4a460;
    padding: 5px 12px;
    border-radius: 8px;
    transition: opacity .3s, transform .3s;
    line-height: 1;
  }
  
  .phone-all:hover{
    opacity: .8;
    transform: scale(1.03);
  }

  .copyright{
    margin-top: 50px;
  }

}
 
