@charset "UTF-8";
/* CSS Document */
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 9999;
  padding: 0px;
  border-bottom: 2px solid #000;
}

header .heder_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

@media screen and (min-width: 931px) {
  header .heder_top {
    justify-content: space-between;
  }
}

@media screen and (max-width: 930px) {
  header .heder_top {
    justify-content: flex-start;
  }
}

header .heder_top .co_name_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

header .heder_top .co_name_box .img_logo {
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

@media screen and (min-width: 931px) {
  header .heder_top .co_name_box .img_logo {
    width: 45px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 930px) {
  header .heder_top .co_name_box .img_logo {
    width: 40px;
    margin-left: 15px;
  }
}

header .heder_top .co_name_box .homebtn {
  text-decoration: none;
  color: #000;
}

@media screen and (min-width: 931px) {
  header .heder_top .co_name_box .homebtn .co_name .co_name_en {
    font-size: 1.3em;
    margin-left: 10px;
    padding-top: 20px;
  }
}

@media screen and (max-width: 930px) {
  header .heder_top .co_name_box .homebtn .co_name .co_name_en {
    font-size: 1.1em;
    margin-left: 5px;
    padding: 22px 0 0 0;
  }
}

header .heder_top .co_name_box .homebtn .co_name .co_name_ja {
  text-align: right;
}

@media screen and (min-width: 931px) {
  header .heder_top .co_name_box .homebtn .co_name .co_name_ja {
    font-size: 0.7em;
    margin-top: -10px;
    font-weight: 600;
  }
}

@media screen and (max-width: 930px) {
  header .heder_top .co_name_box .homebtn .co_name .co_name_ja {
    font-size: 0.5em;
    margin-top: -5px;
    padding: 0px 0 10px 0;
    font-weight: 600;
  }
}

@media screen and (min-width: 931px) {
  header .heder_top #nav {
    margin: 0 20px 0 auto;
    min-width: 10%;
    display: inherit !important;
  }
  header .heder_top #nav ul {
    margin: 35px 0 0 0;
  }
  header .heder_top #nav ul li {
    list-style: none;
    display: inline-block;
    padding: 0px 5px;
  }
  header .heder_top #nav ul li a span {
    border-bottom: 1px solid #000;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    transition: all 0.4s;
  }
  header .heder_top #nav ul li a span:hover {
    color: #5fb93e;
    border-bottom: 1px solid #5fb93e;
  }
}

@media screen and (max-width: 930px) {
  header .heder_top #nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    width: 100%;
    background: #000;
    z-index: 10000;
  }
  header .heder_top #nav ul {
    margin: 0;
  }
  header .heder_top #nav ul li {
    list-style: none;
    border-bottom: 1px solid #fff;
  }
  header .heder_top #nav ul li a {
    font-size: 1rem;
    display: block;
    box-sizing: border-box;
    padding: 20px 20px 20px 80px;
    font-weight: 600;
    color: #fff;
  }
  header .heder_top #nav ul li .a_li_a, header .heder_top #nav ul li .a_li_b, header .heder_top #nav ul li .a_li_c, header .heder_top #nav ul li .a_li_d, header .heder_top #nav ul li .a_li_e {
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: 10% 45%;
  }
  header .heder_top #nav ul li .a_li_a {
    background-image: url("../img/icon/home.png");
  }
  header .heder_top #nav ul li .a_li_b {
    background-image: url("../img/icon/company.png");
  }
  header .heder_top #nav ul li .a_li_c {
    background-image: url("../img/icon/service.png");
  }
  header .heder_top #nav ul li .a_li_d {
    background-image: url("../img/icon/recruit.png");
  }
  header .heder_top #nav ul li .a_li_e {
    background-image: url("../img/icon/mail.png");
  }
}

@media screen and (max-width: 930px) {
  header .heder_top #trigger {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 50px;
    width: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    border: 0px solid #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 5000;
  }
  header .heder_top #trigger span {
    transition: all 0.4s;
    display: block;
    width: 30px;
    height: 2px;
    background: #000;
    border-radius: 2px;
  }
  header .heder_top #trigger span + span {
    margin-top: 5px;
  }
  header .heder_top #trigger.open span {
    transition: all 0.4s;
  }
  header .heder_top #trigger.open span:nth-child(2) {
    display: none;
  }
  header .heder_top #trigger.open span:nth-child(1) {
    transform: rotate(-45deg);
    margin: 0 0 -2px 0;
  }
  header .heder_top #trigger.open span:nth-child(3) {
    transform: rotate(45deg);
    margin: 0px 0 0 0;
  }
}

header .heder_top #tell_for {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #000;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
}

header .heder_top #tell_for span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

header .heder_top #tell_for span b {
  font-size: 0.9rem;
}

@media screen and (min-width: 931px) {
  header .heder_top #tell_for {
    padding: 5px 20px;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 930px) {
  header .heder_top #tell_for {
    display: none;
  }
}

header .heder_top #mail_form {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background: #000;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
}

header .heder_top #mail_form span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

header .heder_top #mail_form span b {
  font-size: 0.9rem;
}

header .heder_top #mail_form:hover span {
  color: #fff;
}

header .heder_top #mail_form::before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: -190%;
  /*色や形状*/
  background: #333;
  width: 160%;
  height: 100%;
  transform: skewX(-55deg);
}

header .heder_top #mail_form:hover::before {
  animation: skewanime .5s forwards;
  /*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
  100% {
    left: -23%;
    /*画面の見えていない左から右へ移動する終了地点*/
  }
}

@media screen and (min-width: 931px) {
  header .heder_top #mail_form {
    padding: 5px 20px;
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
}

@media screen and (max-width: 930px) {
  header .heder_top #mail_form {
    display: none;
  }
}

footer {
  position: relative;
  background: #000;
  width: 100%;
  box-sizing: border-box;
  padding-top: 1vw;
  padding-bottom: 1vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 930px) {
  footer {
    padding: 7vw 0vw;
  }
}

footer address {
  color: #fff;
  font-style: normal;
  box-sizing: border-box;
  padding: 0 1vw;
}

@media screen and (max-width: 930px) {
  footer address {
    padding: 0 5vw;
  }
}

footer address .footer_co {
  color: #fff;
  font-size: clamp(13px, 1.5vw, 20px);
}

footer address .add, footer address .tel, footer address .FAX, footer address .E-mail {
  font-size: clamp(13px, 1.5vw, 16px);
}

footer address .add b, footer address .tel b, footer address .FAX b, footer address .E-mail b {
  font-size: 0.9rem;
}

footer address .add a, footer address .tel a, footer address .FAX a, footer address .E-mail a {
  color: #fff;
}

@media screen and (min-width: 931px) {
  footer address .tel_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  footer address .tel_box .tel, footer address .tel_box .FAX {
    padding: 0 1vw 0 0;
  }
}

footer .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  padding-right: 1vw;
  box-sizing: border-box;
}

footer .footer_nav .btn_box {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-right: 2vw;
  box-sizing: border-box;
}

@media screen and (max-width: 930px) {
  footer .footer_nav .btn_box {
    padding-right: 1.5vw;
  }
}

footer .footer_nav .btn_box .span1 {
  color: #fff;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: bold;
  padding-left: 50px;
  background-image: url("../img/icon/service.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0% 50%;
}

footer .footer_nav .btn_box .btn + .btn {
  margin-top: 0.5vw;
}

footer .footer_nav .btn_box .btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border-bottom: 1px solid #fff;
  text-align: center;
  outline: none;
  transition: ease .2s;
  padding: 0 1vw;
  white-space: nowrap;
  font-size: clamp(13px, 1.5vw, 16px);
  color: #fff;
  transition: 0.4s;
}

footer .footer_nav .btn_box .btn span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
}

footer .footer_nav .btn_box .btn:hover {
  color: #5fb93e;
  border-bottom: 1px solid #5fb93e;
}

footer .footer_nav .btn_box .btn2, footer .footer_nav .btn_box .btn3 {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  outline: none;
  transition: ease .2s;
  padding: 0 2vw 0 2.5vw;
  white-space: nowrap;
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: bold;
  color: #fff;
  transition: all 0.4s;
}

footer .footer_nav .btn_box .btn2 span, footer .footer_nav .btn_box .btn3 span {
  position: relative;
  z-index: 3;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  padding-left: 20px;
}

footer .footer_nav .btn_box .btn2:hover, footer .footer_nav .btn_box .btn3:hover {
  color: #5fb93e;
}

footer .footer_nav .btn_box .btn2 + .btn2, footer .footer_nav .btn_box .btn3 + .btn2 {
  margin-top: 1vw;
}

footer .footer_nav .btn_box .btn2 + .btn3, footer .footer_nav .btn_box .btn3 + .btn3 {
  margin-top: 1vw;
}

@media screen and (max-width: 930px) {
  footer .footer_nav .btn_box .btn2 + .btn2, footer .footer_nav .btn_box .btn3 + .btn2 {
    margin-top: 10px;
  }
  footer .footer_nav .btn_box .btn2 + .btn3, footer .footer_nav .btn_box .btn3 + .btn3 {
    margin-top: 10px;
  }
}

footer .footer_nav .btn_box .home, footer .footer_nav .btn_box .Co, footer .footer_nav .btn_box .recr, footer .footer_nav .btn_box .inq, footer .footer_nav .btn_box .serv {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0% 50%;
}

@media screen and (min-width: 931px) {
  footer .footer_nav .btn_box .home, footer .footer_nav .btn_box .Co, footer .footer_nav .btn_box .recr, footer .footer_nav .btn_box .inq, footer .footer_nav .btn_box .serv {
    transition: all 0.4s;
  }
}

footer .footer_nav .btn_box .home {
  background-image: url("../img/icon/home.png");
}

@media screen and (min-width: 931px) {
  footer .footer_nav .btn_box .home:hover {
    background-image: url("../img/icon/home_h.png");
  }
}

footer .footer_nav .btn_box .Co {
  background-image: url("../img/icon/company.png");
}

@media screen and (min-width: 931px) {
  footer .footer_nav .btn_box .Co:hover {
    background-image: url("../img/icon/company_h.png");
  }
}

footer .footer_nav .btn_box .recr {
  background-image: url("../img/icon/recruit.png");
}

@media screen and (min-width: 931px) {
  footer .footer_nav .btn_box .recr:hover {
    background-image: url("../img/icon/recruit_h.png");
  }
}

footer .footer_nav .btn_box .inq {
  background-image: url("../img/icon/mail.png");
}

@media screen and (min-width: 931px) {
  footer .footer_nav .btn_box .inq:hover {
    background-image: url("../img/icon/mail_h.png");
  }
}

footer .footer_nav .btn_box .serv {
  background-image: url("../img/icon/service.png");
}

@media screen and (min-width: 931px) {
  footer .footer_nav .btn_box .btn3 {
    display: none;
  }
}

@media screen and (max-width: 930px) {
  footer .footer_nav .not {
    display: none;
  }
}
