@charset "UTF-8";
/* フォント */
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 900

.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
/* 共通部分 */
:root{
  --black:#242424;
  --white:#fff;
  --gray:#b3b3b3;
  --textcolor:#333333;
}
*,::before,::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family:"Noto Serif JP", serif;
  line-height:1.7;
  color: var(--textcolor);
  background:url("../image/background2.jpg");
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  background-color:rgba(244, 245, 255, 0.3);
  background-blend-mode:lighten;
}
img {
  max-width:100%;
  height: auto;
}
a {
  color: var(--graycolor);
  text-decoration-line: none;
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.top_button>li:nth-child(8){
  background-color: var(--black);
  color: var(--white);
  /* transform: translateY(1.5px);
  box-shadow: none; */
}
.top_button > li:nth-child(8):before{
  border-left: 1.5em solid var(--white);
}


/* 採用実績*/
.jisseki{
  width: 100%;
}
.jisseki,
th,
td{
  border-collapse: collapse;
}
.jisseki tbody{
  border: none;
}
.jisseki th,
.jisseki td{
  padding-top: 5%;
  padding-bottom: 5%;
}
tr{
  border-bottom: 1px solid #000000;
}
tr:last-child{
  border-bottom: none;
}
th, td {
  border-right: 1px solid #000000;
}
th:last-child, td:last-child {
  border-right: none;
}

th{
  background: var(--gray);
  text-align: center;
  font-size: clamp(10px,1.75vw,20px);
}
td{
  background: var(--white);
  padding-left: 2%;
  font-size: clamp(8px,1.5vw,18px);
}