@charset "UTF-8";
/* フォントサイズメモ
  0.875em;//14px
  1.25em;//20px
  2.5em;//40px
  3.1em;//50px
  5em;//80px
  6.25em;//100px

*/
body {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-family: "Sawarabi Gothic", sans-serif;
  font-style: normal;
  background: #fdfdfd;
}

.wrapper {
  max-width: 1280px;
  min-width: 320px;
  width: 100%;
  margin: 0 auto;
}

h1, h2, nav, .leadtext, .subnav, .button {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*------------header------------*/
header {
  position: absolute;
  width: 100%;
  /*background: blue;*/
  z-index: 100;
  padding-top: 20px;
}
header nav {
  margin: 20px 40px;
  /*共通*/
  /*左ナビ*/
  /*リクルートボタン*/
}
header nav #menu-btn-check {
  display: none;
}
header nav ul {
  display: inline-block;
}
header nav ul li {
  display: inline-block;
  margin-right: -4px;
  margin-bottom: 30px;
}
header nav ul li a {
  display: block;
  padding: 10px 20px;
}
header nav .nav1 li {
  border-bottom: 2px solid #000;
}
header nav .nav1 li a {
  padding-bottom: 0;
}
header nav .nav1 li:hover {
  border-bottom: 2px solid #fff;
  transition: 0.3s;
}
header nav .nav1 li:hover a {
  color: #fff;
  transition: 0.3s;
}
header nav .button {
  margin-left: 40px;
}
header nav .button li {
  background: #ffffff;
  border-radius: 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
}
header nav .button li span {
  position: relative;
}
header nav .button li span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 110%;
  bottom: 0.3em;
  width: 15px;
  height: 5px;
  border: none;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: skew(45deg);
  transition: 0.2s;
}
header nav .button li:hover {
  background: #0F0F0F;
  transition: 0.3s;
}
header nav .button li:hover a {
  color: #fff;
  transition: 0.3s;
}
header nav .button li:hover span::after {
  border-color: #fff;
  width: 20px;
}
header .logo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, 50%);
}
header .logo a:hover img {
  opacity: 0.7;
  transition: 0.3s;
}

.active a::before {
  content: "・";
  display: block;
  text-align: center;
  margin-top: -16.5px;
}

#about .active {
  border-color: #fff;
}
#about .active a {
  color: #fff;
}

#about header, #company header, #staff-interview header,
#recruit header, #plivacypolicy header {
  position: relative;
  height: 370px;
}

#company header .logo, #staff-interview header .logo,
#recruit header .logo, #plivacypolicy header .logo {
  background-image: url(../images/logo_bk.png);
  background-size: cover;
}
#company header .logo img, #staff-interview header .logo img,
#recruit header .logo img, #plivacypolicy header .logo img {
  opacity: 0;
}
#company header .logo:hover, #staff-interview header .logo:hover,
#recruit header .logo:hover, #plivacypolicy header .logo:hover {
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  transition: 0.3s;
}
#company header .nav1 li:hover, #staff-interview header .nav1 li:hover,
#recruit header .nav1 li:hover, #plivacypolicy header .nav1 li:hover {
  border-color: #000;
  opacity: 0.6;
  transition: 0.3s;
}
#company header .nav1 li:hover a, #staff-interview header .nav1 li:hover a,
#recruit header .nav1 li:hover a, #plivacypolicy header .nav1 li:hover a {
  color: #000;
}
#company header .nav1 .active, #staff-interview header .nav1 .active,
#recruit header .nav1 .active, #plivacypolicy header .nav1 .active {
  border-color: #012D83;
}
#company header .nav1 .active a, #staff-interview header .nav1 .active a,
#recruit header .nav1 .active a, #plivacypolicy header .nav1 .active a {
  color: #012D83;
}
#company header .button li, #staff-interview header .button li,
#recruit header .button li, #plivacypolicy header .button li {
  background: #000;
}
#company header .button li a, #staff-interview header .button li a,
#recruit header .button li a, #plivacypolicy header .button li a {
  color: #fff;
}
#company header .button li a span::after, #staff-interview header .button li a span::after,
#recruit header .button li a span::after, #plivacypolicy header .button li a span::after {
  border-color: #fff;
}
#company header .button li:hover, #staff-interview header .button li:hover,
#recruit header .button li:hover, #plivacypolicy header .button li:hover {
  background: #012D83;
  opacity: 0.8;
  transition: 0.3s;
}

/*--------------------------*/
.runningText {
  font-family: "Squada One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.125em; /*50px*/
  width: 100%;
  border-bottom: 5px solid black;
  white-space: nowrap;
  overflow: hidden;
}
.runningText p {
  -webkit-animation: animetxt 20s linear infinite;
          animation: animetxt 20s linear infinite;
  transform: translateX(100%);
}
@-webkit-keyframes animetxt {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes animetxt {
  100% {
    transform: translateX(-100%);
  }
}

/*-------------footer--------------*/
footer {
  padding-top: 90px;
  padding-bottom: 20px;
}
footer li {
  margin-bottom: 30px;
}
footer .subnav {
  text-align: center;
}
footer .subnav a:hover {
  text-decoration: underline;
}
footer .button li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  background: #0F0F0F;
  border-radius: 50px;
  margin: 0 auto 30px;
}
footer .button li a {
  color: #ffffff;
  display: block;
  padding: 10px 20px;
}
footer .button li a span {
  position: relative;
}
footer .button li a span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 110%;
  bottom: 0.3em;
  width: 15px;
  height: 5px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: skew(45deg);
  transition: 0.2s;
}
footer .button li:hover {
  opacity: 0.5;
  transition: 0.3s;
}
footer .button li:hover span::after {
  width: 20px;
}
footer .sns {
  display: flex;
  justify-content: center;
}
footer .sns li:first-child {
  margin-right: 40px;
}
footer .sns li:hover {
  opacity: 0.5;
  transition: 0.3s;
}
footer p {
  margin-top: 20px;
  text-align: center;
  font-size: 0.75em; /*12px*/
}
footer .footerlogo {
  margin-left: 40px;
}
footer .footerlogo :hover {
  opacity: 0.5;
  transition: 0.3s;
}
footer .subnav .fotterActive a {
  text-decoration: underline;
}
footer .subnav .fotterActive a::before {
  content: "・";
  display: inline;
  color: #000;
}

/*------------レスポンシブ-------------*/
@media (max-width: 900px) {
  /* スマートフォン用のスタイル */
  body {
    font-size: 14px;
  }
  body header {
    /*------- ハンバーガーメニュー -------*/
  }
  body header .menu-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 110;
    background-color: rgba(225, 225, 225, 0.8);
  }
  body header .menu-btn span,
body header .menu-btn span:before,
body header .menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 5px;
    background-color: #000;
    position: absolute;
    transition: 0.5s;
  }
  body header .menu-btn span:before {
    bottom: 8px;
    transition: 0.5s;
  }
  body header .menu-btn span:after {
    top: 8px;
    transition: 0.5s;
  }
  body header #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
  }
  body header #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    transition: 0.5s;
  }
  body header #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    transition: 0.5s;
  }
  body header .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: rgba(225, 225, 225, 0.95);
    transition: all 0.5s;
  }
  body header .menu-content ul {
    padding: 70px 10px 0;
    display: block;
  }
  body header .menu-content ul li {
    display: block;
    text-align: center;
  }
  body header .menu-content .nav1 a:hover {
    color: #000;
    opacity: 0.6;
  }
  body header .menu-content .nav1 li:hover {
    border-color: #000;
    opacity: 0.6;
  }
  body header .menu-content .button {
    margin: 0;
    padding-top: 30px;
  }
  body header .menu-content .button li {
    margin: auto;
  }
  body header #menu-btn-check:checked ~ .menu-content {
    left: 0; /*メニューを画面内へ*/
    transition: all 0.5s;
  }
  body footer .sns li {
    width: 20px;
  }
  body footer .sns li:nth-child(1) {
    margin-right: 20px;
  }
  body footer .footerlogo {
    width: 130px;
    margin: auto;
    text-align: center;
  }
  #about header .nav1 .active {
    border-color: #012D83;
  }
  #about header .nav1 .active a {
    color: #012D83;
  }
}/*# sourceMappingURL=common.css.map */