@charset "UTF-8";
*{
  --tc: #1359E8;
  --zindex-humberger: 102;
  --z-index-gmenu: 101;

  box-sizing: border-box;
}
@font-face {
  font-family: 'LINE Seed JP_OTF Thin';
  src: url('../font/LINESeedJP_OTF_Th.otf');
} 
@font-face {
  font-family: 'LINE Seed JP_OTF Reguler';
  src: url('../font/LINESeedJP_OTF_Rg.otf');
}
@font-face {
  font-family: 'LINE Seed JP_OTF Bold';
  src: url('../font/LINESeedJP_OTF_Bd.otf');
} 
@font-face {
  font-family: 'LINE Seed JP_OTF ExtraBold';
  src: url('../font/LINESeedJP_OTF_Eb.otf');
} 
body{
  --header-height: 170px;

  width: 100%;

  font-family: 'LINE Seed JP_OTF Reguler', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: #333;
}
a{
  text-decoration: none;
}
img,svg{
  max-width: 100%;
  height: auto;
}
address{
  font-style: normal;
}
.jcc{
  display: flex;
  justify-content: center;
  width: 100%;
}
.jcr{
  display: flex;
  justify-content: right;
  width: 100%;
}
.m-b-4{
  margin-bottom: 4px;
}
.m-b-8{
  margin-bottom: 8px;
}
.m-b-16{
  margin-bottom: 16px;
}
.m-b-24{
  margin-bottom: 24px;
}
.m-b-32{
  margin-bottom: 32px;
}
.m-b-40{
  margin-bottom: 40px;
}
.m-b-48{
  margin-bottom: 48px;
}
.m-b-56{
  margin-bottom: 56px;
}
.btn,button{
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  padding: 12px 28px;

  color: #fff;
  background: var(--tc);
  transition: 0.3s all linear;
  user-select: none;
  
  -webkit-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 10px 20px -6px rgba(0, 0, 0, 0.12);

  picture{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }
}

/*header*/
header{
  --header-menu-margin: 72px;
  position: fixed;
  z-index: 100;

  display: grid;
  grid-template-rows: auto 1fr;

  width: 100%;
  height: var(--header-height);

  background: #fff;
  border-bottom: solid 6px var(--tc);
}
header .header-news{
  padding: 24px max(4vw,16px);
  background: #E5EDFF;

  .item a{
    display: inline-flex;
    align-items: center;

    time{
      margin-right: 40px;
    }
    .tag{
      display: inline-block;
      padding: 4px 16px;
      min-width: 72px;

      margin-right: 24px;

      color: #fff;
      background: var(--tc);
    }
    p.title{
      text-decoration: underline;
    }
  }
}
header .header-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 16px;
  padding-right: var(--header-menu-margin);

  ul.header-menu{
    display: flex;
    align-items: center;
  
    >li{
      font-family: 'LINE Seed JP_OTF Bold';
      line-height: 1;
    }
    #header-tel{
      font-size: 23px;
      color: var(--tc);
    }
    *:is(#header-line,#header-contact,#header-entry){
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 192px;
      height: 48px;
      padding: 4px .5em;
  
      font-size: 16px;

      border-style: solid;
      border-width: 2px;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    }
    #header-line{
      color: #fff;
      background: #06C755;
      border-color: #06C755;
    }
    #header-contact{
      color: var(--tc);
      border-color: var(--tc);
    }
    #header-entry{
      color: #fff;
      background: #DD7926;
    }
    >*+*{
      margin-inline-start: 12px;
    }
  }
}
label#humMenu{
  --hum-color: #1359E8;
  --menu-square: 72px;

  position: fixed;
  top: calc(var(--header-height) - var(--menu-square) - 8px);
  right: 0;
  z-index: var(--zindex-humberger);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--menu-square);
  height: var(--menu-square);

  color: var(--hum-color);
  text-align: center;
  font-weight: 700;

  p.gmenu-before{
    display: inline-block;
  }
  p.gmenu-after{
    display: none;
  }
  .hum-wrap{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 29px;
    margin-bottom: 4px;

    span{
      position: absolute;

      display: inline-block;
      width: 50px;
      height: 2px;

      background: var(--hum-color);

      transition: 0.3s all linear;
    }
    span.top{
      top: 0;
      left: 0;
    }
    span.middle{
      top: 50%;
      transform: translateY(-50%);
      left: 0;

      background: linear-gradient(to right, transparent 50%,var(--hum-color) 50%, var(--hum-color) 100%);
    }
    span.bottom{
      bottom: 0;
      left: 0;

      width: 0px;
    }
  }
}
body:has(#gmenu-cb:checked) label#humMenu{
  --hum-color: #585858;
  
  p.gmenu-before{
    display: none;
  }
  p.gmenu-after{
    display: inline-block;
  }
  .hum-wrap{
    span.top{
      top: 50%;
      transform: translateY(-50%);

      transform: rotate(30deg);
    }
    span.middle{
      background: transparent;
    }
    span.bottom{
      top: 50%;
      transform: translateY(-50%);

      transform: rotate(-30deg);
      width: 100%;
    }
  }
}n{
  padding-top: var(--header-height);
}
footer{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 64px 3vw 24px;

  .footer-content{
    display: flex;
    align-items: flex-end;
    gap: 24px;

    .textContent{
      font-family: 'LINE Seed JP_OTF Reguler';
      line-height: 1.6;

      #footer-logo{
        display: inline-block;
        margin-bottom: 16px;
      }
      p.company-name{
        margin-bottom: 4px;
  
        font-size: 22px;
        font-weight: 700;
      }
    }
    ul.iconCON{
      display: flex;
      align-items: center;
      gap: 8px;
    }
  }
  p.copyright{
    padding-bottom: 16px;

    line-height: 1.4;
    text-align: right;
    color: #B1B1B1;
    font-family: 'LINE Seed JP_OTF Reguler';
  }
}
.forsp{
  display: none;
}
/*gmenu*/
#gmenu-cb{
  display: none;
}
div#gmenu{
  display: none;
}
body:has(#gmenu-cb:checked){
  overflow: hidden;
}
#gmenu-cb:checked ~ div#gmenu{
  position: fixed;
  z-index: var(--z-index-gmenu);

  display: block;
  width: 100%;
  height: 100dvh;
}
div#gmenu-inner{
  width: 100%;
  min-height: 100dvh;

  padding: 20px 5.5vw;
  padding-top: calc(20px + var(--header-height));
  background: linear-gradient(to bottom, #D5F0FF, #fff);
}
div#gmenu-inner nav{
  color: #585858!important;

  .nav-column{
    .nav-block{
      ul.nav-list{
        li::before{
          background: #585858 !important;
        }
      }
    }
  }
}
/*single.php*/
#single .ariticle{
  width: min(1120px,100%);
  min-height: 48rem;
  padding: 64px 16px;
  margin-inline: auto;

  .title{
    padding-bottom: 8px;
    margin-bottom: 8px;
  
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
  
    border-bottom: solid 1px #B5B5B5;
  }
  time{
    display: block;
    margin-bottom: 16px;
    font-size: 15px;
    color: #B5B5B5;
  }
  .content{
    margin-bottom: 120px;
  
    line-height: 1.6;
    white-space: pre-wrap;
  }
}
/*serachform*/
main#main-search{
  padding: 0 16px;
  padding-top: 288px;
  margin-bottom: 160px;

  form#searchform{
    width: min(1120px,100%);
    padding: 8px;
    padding-bottom: 16px;
    margin-bottom: 80px;
    margin-inline: auto;
  
    border: solid 1px var(--tc);
    background: #fff;

    .searchCON-wrap{
      display: grid;
      grid-template-columns: 120px 1fr;
      column-gap: 24px;
      padding: 8px;
      
      border-bottom: solid 1px #D6D6D6;
  
      p.title{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
  
        font-weight: 700;
  
        background: #E5EDFF;
      }
      ul.searchCON{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 24px;
        
        padding: 16px 24px;
      }
    }
    div.jcc{
      padding-top: 24px;
    }
  }
  ul.recruit-list{
    width: min(1120px,100%);
    margin-inline: auto;

    .tag{
      display: inline-block;
      padding: 8px 1em;

      background: #F2F2F2;
      border: solid 1px #888;
      border-radius: 16px;
    }

    li.recruit-item{
      width: 100%;

      border: solid 1px var(--tc);
      background: #fff;
      box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;

      label{
        position: relative;
      
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 24px 24px;
        padding-right: 80px;

        background: #F7F9FF;

        p.name{
          font-family: 'LINE Seed JP_OTF Bold';
        }
        .arrow{
          position: absolute;
          top: 50%;
          right: 24px;
        
          transform: translateY(-50%);
          transition: 0.3s all linear;
        }
      }
      input[type="checkbox"]{
        display: none;
      }
      .content-wrap{
        display: grid; 
        grid-template-rows: 0fr;
        transition: 0.3s all linear;
      
        >div{
          overflow: hidden;
        }
        .content{
          position: relative;

          width: 100%;
          padding: 32px 72px 40px;

          border-top: solid 1px var(--tc);
        }
      }
    }
    li.recruit-item:has(input[type="checkbox"]:checked) .arrow{
      transform: translateY(-50%)rotate(180deg);
      transition: 0.3s all linear;
    }
    li.recruit-item:has(input[type="checkbox"]:checked) .content-wrap{
      grid-template-rows: 1fr;
      transition: 0.3s all linear;
    }
    >*+*{
      margin-block-start: 112px;
    }
  }
  ul.cf-list{
    display: flex;
    flex-direction: column;

    >li{
      width: 100%;
      
      dl{
        display: grid;
        grid-template-columns: 240px 1fr;

        dt{
          padding: 24px;
          padding-top: calc(14px + 6px - 16px * 0.4 / 2);

          font-weight: 700;
        }
        dd{
          padding: 24px;
          padding-top: calc(14px + 6px - 16px * 0.4 / 2);

          white-space: pre-wrap;
        }
      }
    }
    >*+*{
      border-top: solid 1px #ddd;
    }
  }
  div.tagCON{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  div#nonexistent{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(1120px,100%);
    margin-inline: auto;

    p{
      margin-bottom: 48px;

      font-size: 25px;
      font-family: 'LINE Seed JP_OTF Bold';
      text-align: center;
      line-height: 1.6;
    }
  }
  div.jcc{
    padding-top: 24px;
    gap: 16px;

    .btn-recruit{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 1em;
  
      min-width: 160px;
  
      padding: 1em;
      color: #fff;
      background: #1359E8;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
      
      cursor: pointer;
  
      img{
        display: inline-block;
        width: 24px;
        height: auto;
      }
    }
  }
}
#sp-float{
  display: none;
}
@media (min-width : 1200px){
  .btn:hover{
    opacity: 0.8;
    transition: 0.3s all linear;

    background-image: url(../img/btn-bg.png);
    background-size: cover;
  }
}
@media (max-width : 1200px){
  body{
    --header-height: 7dvh;
  }
  header{
    display: flex;
    align-items: center;
  
    width: 100%;
  }
  header .header-news{
    display: none;
  }
  header .header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  
    padding-left: 3.2dvw;
    padding-right: 92px;
  
    a:has(h1){
      width: 38%;
    }
    ul.header-menu{
      *:is(#header-line,#header-contact,#header-entry){
        display: none;
      }
      #header-tel{
        font-size: 2.4dvw;
      }
      >*+*{
        margin-inline-start: 0;
      }
    }
  }
  label#humMenu{
    top: 0;
    left: auto;
    right: 2dvw;
  }
  footer{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;

    padding-bottom: 5dvh;
  }
  #sp-float{
    position: fixed;
    z-index: 100;
    bottom: 0;

    display: block;
    width: 100dvw;
    ul{
      display: grid;
      grid-template-columns: repeat(3,1fr);

      #float-line,
      #float-contact,
      #float-entry{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 1em;

        width: 100%;
        height: 5dvh;
        color: #fff;
      }
      #float-line{
        background: #06C755;
      }
      #float-contact{
        color: #1359E8;
        background: #fff;
        border: solid #1359E8 2px;
      }
      #float-entry{
        background: #DD7926;
      }
    }
  }
}
@media (max-width : 599px){
  body{
    font-size: 3.2dvw;
  }
}