@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;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.shippori-mincho-extrabold {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  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(4){
  background-color: var(--black);
  color: var(--white);
  /* transform: translateY(1.5px);
  box-shadow: none; */
}
.top_button > li:nth-child(4):before{
  border-left: 1.5em solid var(--white);
}

/* 求める人材 */
#jinzai_top{
  text-align: center;
  margin: 10% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#jinzai_top>p{
  text-align: center;
  font-size: clamp(14px, 1.75vw, 24px);
  padding: .1em 0;
  line-height: 2;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
}
.image_four{
  margin: 5% 0;
  max-width: 850px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#jinzai_wrap{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 5%;
  grid-row-gap: 5%;
}
.jinzai_parts{
  background-color: var(--gray);
  /* background-image: url(../image/iyoku.svg);
  background-repeat: no-repeat;
  background-position: left;
  background-position-x: -30%; */
}
.jinzai_parts>h3{
  margin: 3%;
  padding: .5em;
  letter-spacing: .1em;
  text-align: center;
  background-color: var(--black);
  color: var(--white);
  font-size: clamp(0.625rem, 0.227rem + 1.7vw, 1.5rem);
}
.jinzai_parts>p{
  margin: 3.5%;
  padding: 2% 0 5% 0;
  font-size: clamp(0.5rem, 0.159rem + 1.45vw, 1.25rem);
  font-weight: 600;
}

/* タブレット・モバイル */
@media(max-width:800px){
  #jinzai_wrap{
    display: flex;
    flex-direction: column;
  }
  .jinzai_parts{
    margin-bottom: 1em;
  }
  .jinzai_parts>p{
    padding: 0;
  }
  
}