<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">div.greet-img {

  background-image: url('../img/greet.png');
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;

}

div.greet {
  position: relative;
  padding: 30px 10%;
  color: black;
  background-color: #0001;
  z-index: 1;
}


div.greet p {
  line-height: 40px;
}

div.greet p.title {
  text-align: center;
  font-size: 28px;
  font-style: italic;
  padding-bottom: 20px;
  border-bottom: 1px solid black;
}

div.greet p.name {
  text-align: right;
}

div.greet p.name img {
  width: 15%;
  min-width: 80px;
  margin-bottom: 10px;
  margin-left: auto;
  display: block;
}

@media screen and (max-width: 750px){
  div.greet {
    padding: 30px 40px;
    padding-top: 0;
  }
  div.greet p.title {
    font-size: 20px;
  }

  div.greet p {
    line-height: 30px;
  }
}

@media screen and (max-width: 550px){
  div.greet {
    padding: 30px 20px;
  }

  div.greet p.title {
    font-size: 16px;
  }

  div.greet p {
    line-height: 24px;
  }
}



div.company {
  background-color: white;
  z-index: 0;
}

div.c-table {
  padding: 30px 0;
}

div.c-table table {
  border-collapse: collapse;
  margin: 0px auto;
}

div.c-table table tr {
  border-bottom: black 1px solid;
}

div.c-table table th,
div.c-table table td {
  padding: 15px;
  font-size: 20px;
  
}

div.c-table table iframe {
  width: 60vw;
  height: 60vh;
  padding-top: 20px;

}

@media screen and (max-width: 550px){
  div.c-table table th,
  div.c-table table td {
    padding: 15px 5px;
    font-size: 15px;
    
  }

  div.c-table table iframe {
    width: 65vw;
    height: 30vh;
    padding-top: 20px;
  
  }

}

div.recruit-img {
  background-image: url(../img/recruit.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  text-shadow: 2px 2px black;
  padding: 20px;
  position: relative;
  top: -30px;
}

div.recruit-contents {
  border: 3px white solid;
  border-radius: 20px;
  padding: 20px;
}



div.recruit-contents p.tel {
  text-align: center;
}</pre></body></html>