@charset "UTF-8";
/*-ベースカラー-*/
/*-フォントカラー-*/
/*-ボタンカラー-*/
/*-アクセントカラー-*/
.inner {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

body {
  max-height: 100%;
  max-width: 100%;
}

a:hover {
  opacity: 0.7;
}

button:hover {
  opacity: 0.7;
}

.head {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .head {
    font-size: 18px;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.header {
  background: #fff;
  height: 120px;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  width: 1040px;
  height: inherit;
}

.header__logo-wrapper {
  display: flex;
  height: 60px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__logo-wrapper {
    display: block;
  }
}

.header__logo {
  width: 160px;
  height: 25px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    padding-top: 20px;
  }
}
.header__logo a img {
  display: block;
}

.header__btn-wrapper {
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__btn-wrapper {
    display: none;
  }
}

.header__btn-company {
  background: #c71b21;
  padding: 5px 5px;
  color: #fff;
}

.header__btn-jobchange__wrapper {
  margin-left: 20px;
}

.header__btn-jobchange {
  background: #2999c4;
  padding: 5px 5px;
  color: #fff;
}

.header__nav {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}

.header__nav-item {
  font-weight: 600;
}

.drawer__icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active {
  transform: translateX(-200px);
}
.drawer__icon.is-active .drawer__icon-bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer__icon.is-active .drawer__icon-bar2 {
  display: none;
}
.drawer__icon.is-active .drawer__icon-bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer__icon-bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer__icon-bar1,
.drawer__icon-bar2,
.drawer__icon-bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #000;
  top: 0;
  left: 0;
}

.drawer__icon-bar1 {
  top: 0;
}

.drawer__icon-bar2 {
  top: 8px;
}

.drawer__icon-bar3 {
  top: 16px;
}

.drawer__content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer__content.is-active {
  transform: translateX(0);
}

.drawer__content-item {
  border-bottom: 1px dotted #707070;
}
.drawer__content-item a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 18px 20px;
}

.drawer__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 298;
  display: none;
}
.drawer__background.is-active {
  display: block;
}

.main-visual {
  height: 680px;
  width: 100%;
  background: url(../img/top_mv-pc.png) no-repeat center center/cover;
  position: relative;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .main-visual {
    background: url(../img/top_sp_mv-img.png) no-repeat center center/cover;
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual {
    margin-top: 60px;
  }
}

.main-visual__inner {
  width: 1040px;
}

.main-visual__content {
  position: absolute;
  top: 40%;
}

.main-visual__title {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .main-visual__title {
    font-size: 20px;
  }
}

.main-visual__title-small {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .main-visual__title-small {
    font-size: 18px;
  }
}

.main-visual__title-company {
  font-size: 48px;
}
@media screen and (max-width: 767px) {
  .main-visual__title-company {
    font-size: 30px;
  }
}

.about-1 {
  background: #fff;
}

.about-1__inner {
  width: 1040px;
}

.about-1__items {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about-1__items {
    display: block;
  }
}

.about-1__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about-1__img {
    width: 100%;
  }
}

.about-1__texts {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .about-1__texts {
    width: 100%;
  }
}

.about-1__text-title {
  font-size: 20px;
  font-weight: 600;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .about-1__text-title {
    font-size: 16px;
    text-align: center;
  }
}

.about-1__text {
  padding-top: 50px;
}

.about-2 {
  background: #fff;
}

.about-2__inner {
  width: 800px;
}

.about-2__item {
  display: flex;
}
.about-2__item:not(:first-child) {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .about-2__item {
    display: block;
  }
}

.about-2__item-reverse {
  flex-flow: row-reverse;
}

.about-2__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about-2__img {
    width: 100%;
  }
}

.about-2__texts {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about-2__texts {
    width: 100%;
  }
}

.about-2__text-title {
  padding-top: 30px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about-2__text-title {
    text-align: center;
    padding-top: 20px;
  }
}

.about-2__text {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .about-2__text {
    padding-top: 30px;
  }
}

.service {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .service {
    margin-top: 70px;
  }
}

.service__inner {
  width: 1040px;
}

.service__item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .service__item {
    display: block;
  }
}

.service__item-reverse {
  flex-flow: row-reverse;
}

.service__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .service__img {
    width: 100%;
  }
}

.service__text-wrapper {
  width: 50%;
  background: #082f56;
  color: #fff;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .service__text-wrapper {
    width: 100%;
  }
}

.service__head {
  font-size: 40px;
  font-weight: 600;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .service__head {
    font-size: 24px;
    padding-top: 20px;
  }
}

.service__head-title {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .service__head-title {
    font-size: 12px;
  }
}

.service__text-title {
  padding-top: 30px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .service__text-title {
    padding-top: 20px;
    font-size: 16px;
  }
}

.service__text {
  padding-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .service__text {
    padding-top: 20px;
  }
}

.service__btn__wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .service__btn__wrapper {
    text-align: center;
  }
}

.service__btn {
  padding: 10px 70px;
  background: #c71b21;
  font-weight: 600;
  color: #fff;
}

.news {
  background: #ccc;
  padding-top: 60px;
  padding-bottom: 60px;
}

.news__inner {
  width: 800px;
}

.news__head {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 50px;
}

.news__item {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
.news__item:not(:first-child) {
  padding-top: 20px;
}

.news__btn {
  text-align: right;
  padding-top: 20px;
  font-weight: 600;
  font-size: 14px;
}

.contact {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact__inner {
  width: 900px;
}

.contact__head {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.contact__items {
  padding-top: 40px;
}
.contact__items ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact__items ul {
    display: block;
  }
}

.contact__items-square {
  justify-content: space-between;
}

.contact__item-square {
  background: #082f56;
  width: 290px;
  height: 120px;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__item-square {
    width: 100%;
  }
  .contact__item-square:not(:first-child) {
    margin-top: 10px;
  }
}

.contact__items-rectangle {
  justify-content: space-between;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .contact__items-rectangle {
    padding-top: 10px;
  }
}

.contact__item-rectangle {
  background: #082f56;
  width: 430px;
  height: 80px;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__item-rectangle {
    width: 100%;
    height: 120px;
  }
  .contact__item-rectangle:not(:first-child) {
    margin-top: 10px;
  }
}

.footer {
  background: #2999c4;
  color: #fff;
  padding-top: 60px;
}

.footer__inner {
  width: 900px;
}

.footer__items-wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__items-wrapper {
    display: block;
  }
}

.footer__logo {
  width: 160px;
  height: 25px;
}

@media screen and (min-width: 768px) {
  .footer__service-wrapper {
    padding-left: 70px;
  }
}

@media screen and (max-width: 767px) {
  .footer__service__items-company {
    padding-top: 50px;
  }
}

.footer__service__title-company {
  font-weight: 600;
}

.footer__service__list-item-company {
  font-size: 14px;
  padding-top: 10px;
}

.footer__service__items-jobchange {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer__service__title-jobchange {
  font-weight: 600;
}

.footer__service__list-item-jobchange {
  font-size: 14px;
  padding-top: 10px;
}

@media screen and (min-width: 768px) {
  .footer__unity-wrapper {
    padding-left: 70px;
  }
}

.footer__unity__title-info {
  font-weight: 600;
}

.footer__unity__list-item-info {
  font-size: 14px;
  padding-top: 10px;
}

.footer__unity__items-news {
  margin-top: 50px;
}

.footer__unity__items-news {
  font-weight: 600;
}

.footer__unity__items-consulting {
  margin-top: 50px;
}

.footer__unity__title-consulting {
  font-weight: 600;
}

small {
  text-align: center;
  display: block;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  small {
    padding-top: 50px;
  }
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
}
.to-top a img {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .to-top a img {
    width: 60px;
  }
}

.contact-main-visual {
  height: 480px;
  width: 100%;
  background: url(../img/contact_mv-img.png) no-repeat center center/cover;
  position: relative;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .contact-main-visual {
    background: url(../img/contact_sp_mv-img.png) no-repeat center center/cover;
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  .contact-main-visual {
    margin-top: 60px;
  }
}

.contact-main-visual__inner {
  width: 1040px;
}

.contact-main-visual__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact-main-visual__title {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contact-main-visual__title {
    font-size: 18px;
  }
}

.attention__inner {
  width: 900px;
}

.attention__wrapper {
  border: 2px solid #c71b21;
  padding: 30px;
  margin-top: 70px;
}

.contact__inner {
  width: 1040px;
}

.contact__item {
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact__item {
    display: block;
    padding-top: 0;
  }
}

.contact__item__meta1 {
  width: 250px;
  padding-top: 20px;
}

.contact__item__meta input {
  padding: 20px;
  width: 500px;
}
@media screen and (max-width: 767px) {
  .contact__item__meta input {
    width: 340px;
  }
}

@media screen and (max-width: 767px) {
  .contact__item-bg {
    margin-top: 20px;
  }
}
.contact__item-bg textarea {
  height: 300px;
  width: 500px;
}
@media screen and (max-width: 767px) {
  .contact__item-bg textarea {
    width: 340px;
  }
}

.contact__item__meta1-bg {
  width: 250px;
}

.contact-btn {
  width: 150px;
  height: 60px;
  margin: 0 auto;
  display: block;
  margin-top: 60px;
  background-color: #c71b21;
  color: #fff;
}/*# sourceMappingURL=style.css.map */