@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(6){
  background-color: var(--black);
  color: var(--white);
  /* transform: translateY(1.5px);
  box-shadow: none; */
}
.top_button > li:nth-child(6):before{
  border-left: 1.5em solid var(--white);
}

/* 働く環境 */
h3{
  display: flex;
  align-items: center;
  width: 100%;
  margin: 4.5% 0 2% 0;
  font-size: clamp(14px,2.5vw,32px);
  font-weight: 800;
}
h3::after{
  content: "";
  display: block;
  background: var(--black);
  width: 20%;
  height: 1px;
  flex-grow: 1;
  margin-left: 1em;
}
.shisetsu_wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 3%;
  grid-row-gap: 3%;
  margin-bottom: 2em;
}
.shisetsu_nakami{
  margin: 2% 0;
}

.shisetsu_nakami>h4{
  padding: .1em 0;
  margin-bottom: .5em;
  font-size: clamp(12px, 1.75vw, 22px);

  letter-spacing: .1em;
  text-decoration: underline; 
  text-decoration-thickness: 0.5em; 
  text-decoration-color: #b3b3b371; 
  text-underline-offset: -0.2em; 
  text-decoration-skip-ink: none; 
  /*   text-align: center;
  background-color: var(--black);
  color: var(--white);
  font-weight: 800;
  letter-spacing: .5em; */
}
.shisetsu_nakami p{
  font-size: clamp(10.5px, 1.25vw, 20px);
  padding-top: .25em;
}

.roudou_nakami{
  background-color: var(--white);
  border: 1px solid #333;
  box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.25);
  margin: 5% 0;
  padding: 2%;
}
.roudou_nakami>h4{
  margin-bottom: 2%;
  letter-spacing: .1em;
  text-decoration: underline; 
  text-decoration-thickness: 0.5em; 
  text-decoration-color: #b3b3b371; 
  text-underline-offset: -0.2em; 
  text-decoration-skip-ink: none; 
  font-size: clamp(12px, 1.75vw, 22px);
}
.roudou_text{
  display: flex;
}
.roudou_text>div{
  width: 40%
}
.roudou_text>p{
  margin-left: 5%;
  font-size: clamp(10px,1.25vw,20px);
}
/* タブレット・モバイル */
@media(max-width:800px){
  .shisetsu_wrap{
    display: flex;
    flex-direction: column;
  }
  .shisetsu_nakami{
    display: flex;
    flex-direction: column;
  }
  .shisetsu_pictx{
    display: flex;
    justify-content: space-between;
  }
  .shisetsu_pictx>div{
    width: 45%;
  }
  .shisetsu_pictx>p{
    width: 50%;
    padding-top: 0;
    font-size: clamp(10px, 1.75vw, 20px);
  }
  
}