@charset "UTF-8";
body{
  background-color: #EFEFEF;
  background-image: url(../img/frame/footer-bg.jpg);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
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';
  }
}
div#gmenu-inner nav{
  display: flex;
  justify-content: center;
  gap: 10dvw;

  color: #fff;

  .nav-column{
    >*+*{
      margin-block-start: 40px;
    }
    .nav-block{
      a.nav-heading{
        font-size: 19px;
        font-family: 'LINE Seed JP_OTF Bold';
      }
      ul.nav-list{
        padding-top: 16px;
        >*+*{
          margin-block-start: 16px;
        }
        li{
          position: relative;
          padding-left: 1.6em;
        }
        li::before{
          content: '';
          position: absolute;
          top: 50%;
          left: 0;
          transform: translateY(-50%);

          display: inline-block;
          width: 1em;
          height: 1px;

          background: #fff;
        }
      }
    }
    #gmenu-sns{
      display: flex;
      align-items: center;
      gap: 1em;

      padding-top: 10dvh;
    }
  }
}
div#sp-menu{
  display: none;
}
div#topLinks{
  position: relative;

  container-type: inline-size;

  width: min(1120px,100%);
  margin-bottom: 48px;
  margin-inline: auto;


  >a{
    display: flex;
    align-items: center;
    width: 56cqw;
    height: 22.5cqw;

    font-size: 26px;
    font-family: 'LINE Seed JP_OTF Reguler';
    color: #fff;

    background-size: cover;
    background-color: #dd7826e5;
    background-blend-mode: multiply;

    p{
      position: relative;

      padding-right: 48px;
    }
    p::before{
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);

      display: inline-block;
      width: 30px;
      height: 30px;

      border-radius: 50%;
      border: solid 1px #fff;
    }
    p::after{
      content: '';
      position: absolute;
      top: 50%;
      right: 12px;
      transform: translateY(-50%);

      display: inline-block;
      width: 6px;
      height: 6px;

      border-radius: 50%;
      background: #fff;
      transition: 0.3s all linear;
    }
  }
  >a:hover{
    background-color: #dd7826b1;
    transition: 0.3s all linear;

    p::after{
      right: 10px;

      width: 10px;
      height: 10px;

      transition: 0.3s all linear;
    }
  }
  #link-requirement{
    padding-left: 5cqw;

    background-image: url(../img/index/banner01.png);
    clip-path: polygon(0 0, 100% 0, 75.7% 100%, 0% 100%);
  }
  #link-company{
    position: absolute;
    top: 0;
    right: 0;

    justify-content: right;

    padding-right: 5cqw;

    background-image: url(../img/index/banner02.png);

    clip-path: polygon(24.3% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
a#banner-doraever{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  width: min(1120px,100%);
  padding: 16px 0;
  margin-bottom: 48px;
  margin-inline: auto;

  font-size: 18px;
  font-family: 'LINE Seed JP_OTF Bold';
  font-weight: 400;
  color: #fff;

  background: linear-gradient(135deg, #fff 0% ,#fff 50%, var(--tc) 50%,var(--tc) 100%);
  border: solid 1px var(--tc);

  >*{
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#contactBlock{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: min(1120px,100%);
  padding: 56px 16px 64px;
  margin-bottom: 56px;
  margin-inline: auto;

  background: #1359E8;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  
  .h2-wrap{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 40px;
  
    text-align: center;
  
    p.h2-ENG{
      margin-bottom: 16px;
      font-family: 'LINE Seed JP_OTF ExtraBold';
  
      font-size: 44px;
      line-height: 1;
      -webkit-text-stroke: 1px var(--tc);
      color: #fff;
      -webkit-text-stroke: none;
    }
    h2{
      font-size: 18px;
      font-family: 'LINE Seed JP_OTF Reguler';
      font-weight: 400;
      color: #fff;
    }
  }

  div.linkCON{
    display: grid;
    grid-template-columns: repeat(2,360px);
    column-gap: 32px;
    margin-bottom: 24px;

    .item{
      position: relative;

      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 24px;

      font-size: 16px;
      font-family: 'LINE Seed JP_OTF Reguler';
      color: var(--tc);

      background: #fff;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

      picture{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 16px;
      }
    }
  }
  a#contact-tel{
    font-size: 44px;
    font-family: 'LINE Seed JP_OTF Bold';
    color: #fff;
  }
}
#snsBlock{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 32px;
  row-gap: 24px;

  width: min(1120px,100%);
  padding: 0 16px;
  margin-bottom: 48px;
  margin-inline: auto;

  .item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;

    font-weight: 700;

    background: #fff;
    border: solid 2px;

    picture{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 16px;
    }
  }
  *[data-sns="youtube"]{
    color: #FF0000;
    border-color: #FF0000;
  }
  *[data-sns="instagram"]{
    color: #CC2779;
    border-color: #CC2779;
  }
  *[data-sns="tiktok"],
  *[data-sns="x"]{
    color: #000;
    border-color: #000;
  }
}
@media (min-width : 1200px){
}
@media (max-width : 1200px){
  footer{
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;

    padding-bottom: 5dvh;
  }
}
@media (max-width : 599px){
  footer{
    padding: 64px 3vw 24px;
  
    .footer-content{
      flex-direction: column;
      align-items: flex-start;
      gap: 4.8dvw;
  
      .textContent{
  
        #footer-logo{
          margin-bottom: 3.2dvw;
        }
        p.company-name{
          margin-bottom: .8dvw;
    
          font-size: 4.4dvw;
        }
      }
      ul.iconCON{
        gap: 1.6dvw;
      }
    }
    p.copyright{
      font-size: 3.2dvw;
    }
  }
}
@media (max-width : 599px){
  header{
    ul.header-menu{
      #header-tel,
      #header-contact{
        display: none !important; 
      }
    }
  }
  label#humMenu{
    p.gmenu-before{
      display: none!important;
    }
    p.gmenu-after{
      display: none!important;
    }
    .hum-wrap{
      position: relative;
      display: inline-block;
      width: 9dvw;
      height: 29px;
      margin-bottom: 4px;
  
      span{
        width: 9dvw;
      }
    }
  }
  footer{
    padding: 64px 3vw 24px;
  
    .footer-content{
      flex-direction: column;
      align-items: flex-start;
      gap: 4.8dvw;
  
      .textContent{
  
        #footer-logo{
          margin-bottom: 3.2dvw;
        }
        p.company-name{
          margin-bottom: .8dvw;
    
          font-size: 4.4dvw;
        }
      }
      ul.iconCON{
        gap: 1.6dvw;
      }
    }
    p.copyright{
      font-size: 3.2dvw;
    }
  }
  div#gmenu-inner nav{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.4dvh;
  
    color: #fff;
  
    .nav-column{
      >*+*{
        margin-block-start: 2.4dvh;
      }
      .nav-block{
        a.nav-heading{
          font-size: 2dvh;
        }
        ul.nav-list{
          display: grid;
          grid-template-columns: repeat(2,1fr);
          row-gap: 1.5dvh;
          padding-top: 1.5dvh;
          >*+*{
            margin-block-start: 0;
          }
          li{
            padding-left: 1em;

            font-size: 1.5dvh;
          }
          li::before{
            width: .6em;
          }
        }
      }
      #gmenu-sns{
        display: flex;
        align-items: center;
        gap: 1em;
  
        padding-top: 1dvh;
      }
    }
  }
  div#sp-menu{
    display: block;
    padding-top: 4dvh;

    #gmenu-tel{
      display: inline-block;
      margin-bottom: 0.6em;

      width: 100%;

      font-size: 3dvh;
      font-family: 'LINE Seed JP_OTF Bold';
      line-height: 1;
    }
    #gmenu-contact{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 1em;

      width: 80dvw;
      padding: .8em 0;

      font-size: 1.8dvh;
      color: #0C2A67;
      background: #fff;
    }
  }
  div#topLinks{
    margin-bottom: 9.6dvw;
  
  
    >a{
      width: 56cqw;
      height: 22.5cqw;
  
      font-size: 4dvw;
  
      p{
        padding-right: 9.6dvw;
      }
      p::before{
        width: 6dvw;
        height: 6dvw;
      }
      p::after{
        right: 2.4dvw;
  
        width: 1.2dvw;
        height: 1.2dvw;
      }
    }
  }
  #contactBlock{
    padding: 11.2dvw 3.2dvw 12.8dvw;
    margin-bottom: 11.2dvw;
    
    .h2-wrap{
      margin-bottom: 8dvw;

      p.h2-ENG{
        margin-bottom: 3.2dvw;
    
        font-size: 8.8dvw;
      }
      h2{
        font-size: 3.6dvw;
      }
    }
  
    div.linkCON{
      display: grid;
      grid-template-columns: repeat(1,1fr);
      row-gap: 3.2dvw;
      width: 100%;
      margin-bottom: 4.8dvw;
  
      .item{
        padding: 4.8dvw;

        font-size: 3.6vw;
  
        picture{
          left: 3.2dvw;
        }
      }
    }
    a#contact-tel{
      font-size: 8dvw;
    }
  }
  #snsBlock{
    grid-template-columns: repeat(1,1fr);
    row-gap: 3.2dvw;

    padding: 0 3.2dvw;
  
    .item{
      padding: 4.8dvw;
  
      picture{
        left: 3.2dvw;
      }
    }
  }
  main#main-search{
    padding: 0 3.2dvw;
    padding-top: 24dvw;
    margin-bottom: 32dvw;
  
    form#searchform{
      padding: 1.6dvw;
      padding-bottom: 3.2dvw;
      margin-bottom: 16dvw;
  
      .searchCON-wrap{
        display: grid;
        grid-template-columns: 1fr;
        padding: 1.6dvw;

        border-bottom: 0px;
    
        p.title{
          padding: 3.2dvw;
        }
        ul.searchCON{
          gap: 4.8dvw;
          
          padding: 3.2dvw 4.8dvw;
        }
      }
      div.jcc{
        padding-top: 4.8dvw;
      }
    }
    ul.recruit-list{
      .tag{
        padding: 1.6dvw 1em;

        font-size: 2.8dvw;
        border-radius: 3.2dvw;
      }
  
      li.recruit-item{
        label{
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          gap: 1.6dvw;

          padding: 3.2dvw;
          padding-right: 16dvw;

          .arrow{
            right: 4.8dvw;
          }
        }
        .content-wrap{
          display: grid; 
          grid-template-rows: 0fr;
          transition: 0.3s all linear;
        
          >div{
            overflow: hidden;
          }
          .content{
            padding: 6.4dvw 3.2dvw 8dvw;
          }
        }
      }
      >*+*{
        margin-block-start: 20dvw;
      }
    }
    ul.cf-list{
      >li{
        dl{
          display: grid;
          grid-template-columns: 48dvw 1fr;
  
          dt{
            padding: 4.8dvw;
            padding-top: calc(2.8dvw + 1.2dvw - 3.2dvw * 0.4 / 2);
          }
          dd{
            padding: 4.8dvw;
            padding-top: calc(2.8dvw + 1.2dvw - 3.2dvw * 0.4 / 2);
          }
        }
      }
    }
    div.tagCON{
      gap: 4.8dvw;
    }
    div#nonexistent{
      p{
        margin-bottom: 9.6dvw;
  
        font-size: 5dvw;
      }
    }
    div.jcc{
      padding-top: 4.8dvw;
      gap: 3.2dvw;
  
      .btn-recruit{
        min-width: 32dvw;
      }
    }
  }
}