@charset "UTF-8";
*{
  box-sizing: border-box;
  --header-height: 104px;
}
html{
  font-size: 62.5%;
}
body{
  color: #333;
  font-family:
    'Noto Sans JP',
    Meiryo,
    sans-serif;
}
a{
  color: #333;
  text-decoration: none;
}
button,
.btn,
.submitbtn{
  display: inline-block;
  padding: .6em 1.5em;

  user-select: none;

  text-align: center;
  vertical-align: middle;

  cursor: pointer;

  color: #fff;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: 0.1em;

  border: solid 1px transparent;
  border-radius: 2px;
  background: #009b37;
}

header{
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  border-bottom: solid 2px #007f1a;
}
header .logo{
  width: 240px;
}
.header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 97.5%;
  height: var(--header-height);
  margin-left: 2.5%;
}
header nav{
  display: flex;
}
header label,
header nav > a{
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: var(--header-height);

  color: #333;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
}
header .ardmenu{
  display: block;

  position: absolute;
  top: var(--header-height);
  
  width: 100%;

  background: #fff;

  visibility: hidden;
  opacity: 0;
}
header .ardmenu ul li{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2.5rem 1.5rem;
}
header .ardmenu ul li a{
  color: #333;
}
header .ardmenu ul li:hover a{
  color: #007f1a;
  transition: all 0.2s ease-in;
}
header .contactbtn{
  /*お問い合わせボタン*/
  width: 168px;

  color: #fff;
  background: #009b37;
}
header .contactbtn i{
  margin-right: 1rem;
}
header input[type=radio] {
  display: none;
}
header input[type=radio]:checked + label{
  color: #007f1a;
}
header input[type=radio]:checked + label .ardmenu{
  visibility: visible;
  opacity: 0.85;
  transition: all 0.4s ease-in;
}
header .humbtn{
  display: none;

  appearance: none;
  cursor: pointer;
}

/*--footer--*/
footer{
  width: 100%;
  padding: 100px 32px;

  background: #067c5e;
  color: #fff;

  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;

  text-shadow: 1px 2px 2px rgba(0,0,0,0.3);
}
footer a{
  text-decoration: underline;
}
.footer-inner{
  display: flex;
  justify-content: space-between;

  width: min(100%, 1200px);
  margin-inline: auto;
}
footer .footer-left .logo{
  width: 30rem;
}
footer nav{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
footer .nav-item:last-child{
  padding-right: 0;
}
footer .nav-item > p,
footer .nav-item > a{
  color: #fff;
  font-size: 2rem;
  font-weight: 600;

  margin-bottom: 1.8rem;
}
footer .nav-item ul{
  display: flex;
  flex-direction: column;
  gap: 1.8rem;

  text-align: left;
}
footer .nav-item li a{
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
}
.copyright{
  width: 100%;
  padding: .7rem 0;

  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  background: #055d47;
}

/*info*/
.infolist{
  display: flex;
  flex-direction: column;
  gap: 1rem;

  margin: 0 auto 64px;
}
.info-item-wrap{
  color: #333;

  display: inline-block;
  width: 100%;
  border-bottom: dotted 2px #ccc;
}
.infolist dl{
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;

  padding: 2rem 2rem;
  word-break: break-all;
}
.category-info .date::before,
.category-important .date::before{
  position: absolute;
  top: 50%;
  left: 10rem;
  transform: translateY(-50%);

  display: inline-block;
  width: 8rem;
  padding: .6rem 0;
  text-align: center;

  font-size: 1.5rem;
  font-family:
    'Noto Sans JP',
    Meiryo,
    sans-serif;
  font-weight: 400;
  color: #fff;
}
.category-info .date::before{
  content: 'お知らせ';
  background: #4CAF50;
}
.category-important .date::before{
  content: '重要';
  background: #f44336;
}
.infolist dl .date{
  position: relative;

  font-size: 1.8rem;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}
.infolist dl .title{
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}

/*paginator*/
.paginator{
  width: 100%;
  display: flex;
  justify-content: center;
}
.wp-pagenavi{
  /*ul*/
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.wp-pagenavi > *{
  font-size: 1.6rem;

  display: inline-block;
  padding: 0 10px;
  line-height: 2;

  color: #333;

  border: solid 1px #ccc;
  border-radius: 4px;
}
.wp-pagenavi > span{
  color: #999;
}
.wp-pagenavi > a:hover{
  background-color: #338aff;
  color: #fff;
  border-radius: 5px;
}

/*animation*/
.fromb{
  opacity: 0;
  transform: translateY(7rem);
  transition: 0.6s ease-in;
}
.fromb.active{
  transform: translateY(0px);
  opacity: 1;
}

@media (max-width : 1024px){
  header .humbtn{
    position: relative;
    z-index: 102;

    display: block;
    width: 50px;
    height: 50px;

    border-radius: 3px;
    border-color: tran;
    background: transparent;
  }
  header .humbtn span{
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translate(-50%,0);


    display: inline-block;
    width: 50%;
    height: 2px;

    background: #000;

    transition: 0.3s all ease-in;
  }
  header .humbtn.close span{
    top: 17px;
    transform: translateX(-50%) translateY(7px) rotate(-45deg);
  }
  header .humbtn span:nth-child(2){
    top: 24px;
    opacity: 1;
  }
  header .humbtn.close span:nth-child(2){
    top: 24px;
    opacity: 0;
  }
  header .humbtn span:nth-child(3){
    top: 31px;
  }
  header .humbtn.close span:nth-child(3){
    top: 31px;
    transform: translateX(-50%) translateY(-7px) rotate(45deg);
  }

  body.noscroll{
    height: 100vh;
  overflow-y: hidden;
  }
  header.hum-menu{
    height: 100%;
    overflow-y: scroll;
  }
  .header-inner{
    width: 95%;
    margin: 0 2.5%;
  }
  header nav{
    display: none;
  }
  header.hum-menu nav{
    display: block !important;
    position: absolute;
    z-index: 99;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
  }
  header label,
  header nav > a{
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: auto;
  }
  header label p,
  header nav > a,
  header .contactbtn{
    width: 100%;
    padding: 2rem;

    color: #fff;
    background: #007f1a;
  }
  header .contactbtn i{
    display: none;
  }
  header .ardmenu{
    display: block;
  
    position:static;
    top: var(--header-height);
    
    width: 100%;
  
    background: #fff;
  
    visibility: visible;
    opacity: 1;
  }
  header .ardmenu ul li{
    display: block;
    width: 100%;
    padding: 1rem 2rem;
  }
  header .ardmenu ul li:hover a{
    /*hover解除*/
    color: #333;
  }
  #label-recruit + label ul li:last-child br{
    display: none;
  }
  .footer-inner{
    flex-direction: column;
    gap: 6rem;
  }
  footer nav{
    flex-direction: column;
  }
  footer .nav-item ul{
    flex-direction: row;
  }
}
@media (max-width : 599px){
  *{
    --header-height: 80px;
  }
  footer .nav-item ul{
    flex-direction: column;
  }
}