@charset "UTF-8";
body {
  font-family: "Lato", "NotoSansJP", sans-serif;
  color: #191919;
  overflow-x: hidden;
}

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

body.active {
  overflow-y: hidden;
}

.wrap {
  padding: 16px;
}

.slide-img img {
  display: block;
  width: 100%;
}

.openbtn1 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 16px;
}

.openbtn1 span:nth-of-type(2) {
  top: 24px;
}

.openbtn1 span:nth-of-type(3) {
  top: 32px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.nav-wrapper {
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 80px;
  right: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 10;
}

.header-nav {
  width: 100%;
  height: 100%;
  background-color: #182848;
  z-index: 10;
}

.nav-list {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
}

.nav-list a {
  color: #fff;
}

.nav-list li {
  margin-bottom: 40px;
}

.nav-item {
  margin-right: 0;
  margin-bottom: 40px;
}

/* メニューオープン時 */
.nav-wrapper.fade {
  visibility: visible;
  opacity: 1;
}

.nav-wrapper.slide-in {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

header {
  background: -webkit-gradient(linear, left top, right top, from(#4b6cb7), to(#182848));
  background: linear-gradient(to right, #4b6cb7, #182848);
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .head_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
}

@media (max-width: 768px) {
  header .head_wrapper {
    padding-right: 10px;
  }
}

header .head_wrapper .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .head_wrapper .left .logo {
  margin-right: 24px;
  width: 136px;
}

@media (max-width: 768px) {
  header .head_wrapper .left .logo {
    margin: 0;
  }
}

@media (max-width: 500px) {
  header .head_wrapper .left .logo {
    width: 150px;
  }
}

header .head_wrapper nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1000px) {
  header .head_wrapper nav ul {
    display: none;
  }
}

header .head_wrapper nav ul li {
  text-align: center;
  position: relative;
  padding-right: 36px;
}

header .head_wrapper nav ul li::after {
  content: "";
  width: 23px;
  height: 26px;
  border-right: 1px solid #fff;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  position: absolute;
  top: 0;
  right: 18px;
}

header .head_wrapper nav ul li a {
  color: #fff;
  font-size: 16px;
}

header .head_wrapper nav ul li a span {
  font-size: 10px;
}

header .head_wrapper .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .head_wrapper .right .openbtn1 {
  display: none;
  position: relative;
  z-index: 999;
}

@media (max-width: 1000px) {
  header .head_wrapper .right .openbtn1 {
    display: block;
  }
}

header .head_wrapper .right .btnyoyaku:hover {
  cursor: pointer;
}

@media (max-width: 500px) {
  header .head_wrapper .right .btnyoyaku {
    display: none;
  }
}

@media (max-width: 768px) {
  .tabhidden {
    display: none;
  }
}

@media (max-width: 500px) {
  .tabhidden {
    display: block;
  }
}

.sub {
  display: none;
}

.change-color {
  background-color: #fff;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.change-color .top {
  display: none;
}

.change-color .sub {
  display: block;
}

.change-color .head_wrapper nav a {
  color: #000000;
}

.change-color .openbtn1 {
  z-index: 1000;
}

.change-color .openbtn1 span {
  background-color: #000;
}

/*mainvisual
----------------------------------------------------------------*/
.mainvisual {
  background: -webkit-gradient(linear, left top, right top, from(#4b6cb7), to(#182848));
  background: linear-gradient(to right, #4b6cb7, #182848);
  position: relative;
}

.mainvisual .wrapper {
  max-width: 1016px;
  width: 100%;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mainvisual .wrapper h1 {
  color: #fff;
  font-size: 96px;
  font-weight: 900;
  line-height: 1.17;
  text-shadow: 4.2px 4.2px 4px #182848;
  padding-top: 100px;
  letter-spacing: 0.8px;
}

@media (max-width: 1000px) {
  .mainvisual .wrapper h1 {
    font-size: 72px;
  }
}

@media (max-width: 768px) {
  .mainvisual .wrapper h1 {
    font-size: 48px;
  }
}

@media (max-width: 500px) {
  .mainvisual .wrapper h1 {
    font-size: 40px;
  }
}

.mainvisual .wrapper .desc {
  color: #182848;
  font-size: 32px;
  font-weight: bold;
  height: 64px;
  position: relative;
  text-align: center;
  padding: 16px 0;
  width: 300px;
  margin: 19px 0 0 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

@media (max-width: 768px) {
  .mainvisual .wrapper .desc {
    font-size: 18px;
    height: 50px;
    width: 208px;
    margin-left: 10px;
  }
}

@media (max-width: 500px) {
  .mainvisual .wrapper .desc {
    font-size: 16px;
    height: 47px;
    width: 175px;
  }
}

.mainvisual .wrapper .desc p {
  position: absolute;
  z-index: 100;
  left: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

.mainvisual .wrapper .desc::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #182848;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 98;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

.mainvisual .wrapper .desc::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

.mainvisual .wrapper .widthw {
  width: 460px;
}

@media (max-width: 768px) {
  .mainvisual .wrapper .widthw {
    font-size: 20px;
    height: 50px;
    width: 308px;
  }
}

@media (max-width: 500px) {
  .mainvisual .wrapper .widthw {
    font-size: 16px;
    height: 47px;
    width: 255px;
  }
}

.mainvisual .wrapper .newstag {
  margin-top: 118px;
  width: 100%;
  background-color: #182848;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 0;
  padding-right: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.mainvisual .wrapper .newstag::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 16px;
  height: 6px;
  display: block;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%) skewX(45deg);
          transform: translateY(-50%) skewX(45deg);
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag {
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag {
    padding-right: 2px;
    padding-left: 2px;
    margin-top: 120px;
  }
}

.mainvisual .wrapper .newstag .news {
  padding: 22px 48px 22px 38px;
  color: #fff;
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag .news {
    padding-left: 18px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag .news {
    padding: 12px;
    position: absolute;
    background-color: #182848;
    top: -67%;
    left: 0;
  }
}

.mainvisual .wrapper .newstag .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  padding-left: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag .inner {
    padding-left: 24px;
  }
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag .inner {
    padding-left: 8px;
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
}

.mainvisual .wrapper .newstag .inner p {
  -webkit-transform: skewX(40deg);
          transform: skewX(40deg);
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag .inner p {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
}

.mainvisual .wrapper .newstag .inner .date {
  margin-right: 24px;
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag .inner .date {
    margin-right: 12px;
  }
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag .inner .date {
    font-size: 12px;
    margin-right: 8px;
    padding: 20px 0;
  }
}

.mainvisual .wrapper .newstag .inner .tag {
  font-size: 12px;
  text-align: center;
  width: 80px;
  line-height: 28px;
  background-color: #B8614B;
  color: #fff;
  margin-right: 24px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .mainvisual .wrapper .newstag .inner .tag {
    margin-right: 12px;
  }
}

@media (max-width: 500px) {
  .mainvisual .wrapper .newstag .inner .tag {
    font-size: 10px;
    letter-spacing: -0.06em;
    margin-right: 8px;
  }
}

.mainvisual .wrapper .newstag .inner .content {
  line-height: 1.4;
}

@media (max-width: 500px) {
  .mainvisual .wrapper .newstag .inner .content {
    font-size: 12px;
  }
}

.slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  height: 688px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}

@media (max-width: 768px) {
  .slide-img img {
    height: 611px;
  }
}

@media (max-width: 500px) {
  .slide-img img {
    -o-object-position: 20% 100%;
       object-position: 20% 100%;
  }
}

/*service
  -----------------------------------------------------------*/
.service {
  overflow: hidden;
  padding-bottom: 40px;
  margin-top: 160px;
}

@media (max-width: 768px) {
  .service {
    margin-top: 80px;
  }
}

.bg {
  background-color: #F0F0F0;
  position: relative;
  padding-bottom: 20px;
}

.bg::before {
  content: "";
  width: 377px;
  height: 100%;
  background-color: #fff;
  -webkit-transform: skewX(-41deg);
          transform: skewX(-41deg);
  position: absolute;
  top: 0;
  right: 5px;
  z-index: 2;
}

.bg .wrapper {
  position: relative;
  z-index: 3;
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 20px;
  bottom: -40px;
}

@media (max-width: 1000px) {
  .bg .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 500px) {
  .bg .wrapper {
    top: 0;
    padding: 0;
  }
}

.bg .wrapper .imgarea {
  -ms-flex-preferred-size: 45.39%;
      flex-basis: 45.39%;
}

@media (max-width: 1000px) {
  .bg .wrapper .imgarea {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .bg .wrapper .imgarea {
    width: 100%;
  }
}

.bg .wrapper .imgarea img {
  width: 100%;
}

.bg .wrapper .textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 48px;
}

@media (max-width: 1000px) {
  .bg .wrapper .textarea {
    margin: 0;
    margin-left: auto;
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .bg .wrapper .textarea {
    margin: 0;
    margin-left: 0;
    margin-top: 80px;
  }
}

@media (max-width: 500px) {
  .bg .wrapper .textarea {
    margin-top: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 20px 20px;
  }
}

.bg .wrapper .textarea h2 {
  color: #191919;
  font-size: 48px;
  font-weight: bold;
  line-height: 0.8;
}

@media (max-width: 768px) {
  .bg .wrapper .textarea h2 {
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .bg .wrapper .textarea h2 {
    font-size: 24px;
  }
}

.bg .wrapper .textarea h2 span {
  color: #4b6cb7;
  font-size: 24px;
  position: relative;
  padding-left: 38px;
}

.bg .wrapper .textarea h2 span::before {
  content: "";
  width: 23px;
  height: 26px;
  border-right: 1px solid #4b6cb7;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  position: absolute;
  top: 0;
  left: -4px;
}

.bg .wrapper .textarea .subttl {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  padding: 39px 0 30px 0;
}

@media (max-width: 768px) {
  .bg .wrapper .textarea .subttl {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .bg .wrapper .textarea .subttl {
    font-size: 20px;
  }
}

.bg .wrapper .textarea .desc {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.32px;
}

@media (max-width: 768px) {
  .bg .wrapper .textarea .desc br {
    display: none;
  }
}

.bg .wrapper .textarea .btn {
  display: inline-block;
  width: 256px;
  height: 64px;
  background-color: #4b6cb7;
  -webkit-box-shadow: 0px 2px 4px 0 #182848;
          box-shadow: 0px 2px 4px 0 #182848;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 64px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 52px;
}

@media (max-width: 768px) {
  .bg .wrapper .textarea .btn {
    margin-top: 30px;
  }
}

@media (max-width: 500px) {
  .bg .wrapper .textarea .btn {
    display: block;
    margin: 0 auto;
    margin-top: 30px;
  }
}

.bg .wrapper .textarea .btn::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 16px;
  height: 6px;
  margin-bottom: 3px;
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

/*about
------------------------------------------------------------------------*/
.about {
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("../img/background-image-about.jpg");
  background-size: cover;
  margin-top: 160px;
}

@media (max-width: 500px) {
  .about {
    padding: 0;
    margin-top: 30px;
  }
}

.about .wrapper {
  max-width: 1016px;
  width: 100%;
  margin: 0 auto;
}

.about .wrapper .item {
  background-color: #fff;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 36px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 48px;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .about .wrapper .item {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about .wrapper .item {
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .about .wrapper .item {
    padding: 20px;
  }
}

.about .wrapper .item h2 {
  color: #191919;
  font-size: 48px;
  font-weight: bold;
  line-height: 0.8;
  margin-bottom: 37px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about .wrapper .item h2 {
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .about .wrapper .item h2 {
    font-size: 24px;
  }
}

.about .wrapper .item h2 span {
  color: #4b6cb7;
  font-size: 24px;
  position: relative;
  padding-left: 38px;
}

.about .wrapper .item h2 span::before {
  content: "";
  width: 23px;
  height: 26px;
  border-right: 1px solid #4b6cb7;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  position: absolute;
  top: 0;
  left: -4px;
}

.about .wrapper .item .subttl {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  padding: 39px 0 30px 0;
}

@media (max-width: 768px) {
  .about .wrapper .item .subttl {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .about .wrapper .item .subttl {
    font-size: 20px;
  }
}

.about .wrapper .item .desc {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.32px;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .about .wrapper .item .desc br {
    display: none;
  }
}

.about .wrapper .item .btn {
  display: block;
  width: 256px;
  height: 64px;
  background-color: #4b6cb7;
  -webkit-box-shadow: 0px 2px 4px 0 #182848;
          box-shadow: 0px 2px 4px 0 #182848;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 64px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 32px;
}

@media (max-width: 500px) {
  .about .wrapper .item .btn {
    margin: 0 auto;
    margin-bottom: 32px;
  }
}

.about .wrapper .item .btn::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 16px;
  height: 6px;
  margin-bottom: 3px;
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

.about .wrapper .item img {
  width: 100%;
}

.about .wrapper .item .spa {
  display: none;
}

@media (max-width: 500px) {
  .about .wrapper .item .spa {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    height: 248px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 500px) {
  .about .wrapper .item .sph {
    display: none;
  }
}

/*works
-------------------------------------------------------------*/
.works {
  margin-top: 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .works {
    margin-top: 120px;
  }
}

.works .bg2 {
  background-color: #F0F0F0;
  position: relative;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .works .bg2 {
    padding-bottom: 45px;
  }
}

.works .bg2::after {
  content: "";
  width: 80%;
  height: 100%;
  background-color: #fff;
  -webkit-transform: translateX(-50%) skewX(41deg);
          transform: translateX(-50%) skewX(41deg);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
}

.works .bg2 .inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

.works .bg2 .inner h2 {
  color: #191919;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .works .bg2 .inner h2 {
    padding-top: 40px;
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .works .bg2 .inner h2 {
    font-size: 24px;
    text-align: left;
  }
}

.works .bg2 .inner h2 span {
  color: #4b6cb7;
  font-size: 24px;
  position: relative;
  padding-left: 38px;
}

.works .bg2 .inner h2 span::before {
  content: "";
  width: 23px;
  height: 26px;
  border-right: 1px solid #4b6cb7;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  position: absolute;
  top: 0;
  left: -4px;
}

.works .bg2 .inner .subttl {
  color: #191919;
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  padding: 34px 0 37px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .works .bg2 .inner .subttl {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .works .bg2 .inner .subttl {
    font-size: 20px;
    text-align: left;
  }
}

.works .bg2 .inner .desc {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.32px;
  text-align: center;
}

@media (max-width: 500px) {
  .works .bg2 .inner .desc {
    text-align: left;
  }
  .works .bg2 .inner .desc br {
    display: none;
  }
}

.works .bg2 .inner .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 984px;
  margin: 0 auto;
  margin-top: 54px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .works .bg2 .inner .flex {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .works .bg2 .inner .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.works .bg2 .inner .flex .item {
  width: 47.97%;
  position: relative;
}

@media (max-width: 768px) {
  .works .bg2 .inner .flex .item {
    width: 90%;
    margin-bottom: 40px;
  }
}

@media (max-width: 500px) {
  .works .bg2 .inner .flex .item {
    width: 100%;
  }
}

.works .bg2 .inner .flex .item img {
  display: block;
  width: 100%;
}

.works .bg2 .inner .flex .item .num {
  position: absolute;
  width: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  background-color: #182848;
  font-size: 24px;
  font-weight: 500;
  top: 0;
  left: 0;
  -webkit-transform: translate(-30%, -30%);
          transform: translate(-30%, -30%);
}

.works .bg2 .inner .flex .item .item_text {
  padding: 22px 24px 16px 24px;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
}

.works .bg2 .inner .flex .item .item_text h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 22px;
  color: #B8614B;
}

@media (max-width: 500px) {
  .works .bg2 .inner .flex .item .item_text h3 {
    font-size: 18px;
  }
}

.works .bg2 .inner .flex .item .item_text p {
  line-height: 2;
  letter-spacing: 0.01em;
}

.works .bg2 .inner .btn {
  display: block;
  width: 256px;
  height: 64px;
  background-color: #4b6cb7;
  -webkit-box-shadow: 0px 2px 4px 0 #182848;
          box-shadow: 0px 2px 4px 0 #182848;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 64px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0 auto;
}

@media (max-width: 500px) {
  .works .bg2 .inner .btn {
    margin: 0 auto;
  }
}

.works .bg2 .inner .btn::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 16px;
  height: 6px;
  margin-bottom: 3px;
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

/*reqruit
----------------------------------------------------------------*/
.rec {
  background-color: #F0F0F0;
  padding-top: 68px;
  padding-bottom: 80px;
}

.rec h2 {
  text-align: center;
  color: #191919;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .rec h2 {
    padding-top: 40px;
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .rec h2 {
    font-size: 24px;
    padding-left: 20px;
    text-align: left;
  }
}

.rec h2 span {
  color: #4b6cb7;
  font-size: 24px;
  position: relative;
  padding-left: 38px;
}

.rec h2 span::before {
  content: "";
  width: 23px;
  height: 26px;
  border-right: 1px solid #4b6cb7;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  position: absolute;
  top: 0;
  left: -4px;
}

.rec .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 43px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .rec .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;
  }
}

.rec .flex a {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .rec .flex a {
    width: 60%;
    display: block;
  }
}

@media (max-width: 500px) {
  .rec .flex a {
    width: 100%;
    margin: 0;
  }
}

.rec .flex a img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  .rec .flex a img {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .rec .flex a img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.rec .flex a:first-child {
  padding-top: 86px;
}

@media screen and (max-width: 1024px) {
  .rec .flex a:first-child {
    padding-top: 0;
    margin-bottom: 60px;
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .rec .flex a:first-child {
    margin: 0;
  }
}

.rec .flex a:nth-child(2) {
  padding-top: 43px;
  margin: 0 28px;
}

@media screen and (max-width: 1024px) {
  .rec .flex a:nth-child(2) {
    padding-top: 0;
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 500px) {
  .rec .flex a:nth-child(2) {
    margin: 0;
  }
}

.rec .flex a p {
  width: 264px;
  color: #fff;
  line-height: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 16px;
  background-color: rgba(24, 40, 72, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: -8%;
  right: -4%;
}

.rec .flex a p::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 16px;
  height: 6px;
  display: inline-block;
  margin-left: auto;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

@media (max-width: 500px) {
  .rec .flex a p::after {
    margin-left: 1em;
  }
}

@media (max-width: 500px) {
  .rec .flex a p {
    bottom: 0;
    right: auto;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .rec .flex a::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
}

.rec .btn {
  display: block;
  width: 256px;
  height: 64px;
  background-color: #4b6cb7;
  -webkit-box-shadow: 0px 2px 4px 0 #182848;
          box-shadow: 0px 2px 4px 0 #182848;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 64px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 0 auto;
  margin-top: 64px;
}

@media (max-width: 500px) {
  .rec .btn {
    margin: 0 auto;
    margin-top: 40px;
  }
}

.rec .btn::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 16px;
  height: 6px;
  margin-bottom: 3px;
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

/*contact
------------------------------------------------------------------------------*/
.contact {
  background-image: url("../img/bckground-image-contact.jpg");
  background-size: cover;
  padding: 65px 20px 75px;
}

.contact h2 {
  text-align: center;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .contact h2 {
    padding-top: 40px;
    font-size: 36px;
  }
}

@media (max-width: 500px) {
  .contact h2 {
    font-size: 24px;
    text-align: left;
  }
}

.contact h2 span {
  color: #fff;
  font-size: 24px;
  position: relative;
  padding-left: 38px;
}

.contact h2 span::before {
  content: "";
  width: 23px;
  height: 26px;
  border-right: 1px solid #fff;
  -webkit-transform: skewX(-40deg);
          transform: skewX(-40deg);
  position: absolute;
  top: 0;
  left: -4px;
}

.contact .desc {
  font-size: 16px;
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 53px;
}

@media (max-width: 768px) {
  .contact .desc br {
    display: none;
  }
}

@media (max-width: 500px) {
  .contact .desc {
    text-align-last: left;
  }
}

.contact .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .contact .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact .flex .btn {
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #B8614B;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 56px;
}

.contact .flex .btn span {
  margin-left: 16px;
}

@media (max-width: 500px) {
  .contact .flex .btn {
    width: 100%;
  }
}

.contact .flex .btn::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 16px;
  height: 6px;
  margin-bottom: 3px;
  display: inline-block;
  margin-left: 10px;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}

.contact .flex .btn:nth-child(2) {
  background-color: #000;
  margin-left: 80px;
}

@media (max-width: 768px) {
  .contact .flex .btn:nth-child(2) {
    margin-left: 0px;
    margin-top: 24px;
  }
}

/*footer
------------------------------------------------------------*/
footer {
  background-color: #182848;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  padding-top: 84px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  footer {
    padding-top: 44px;
    padding-bottom: 60px;
  }
}

footer .wrapper {
  width: 100%;
  max-width: 1016px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 768px) {
  footer .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

footer .wrapper .left img {
  display: block;
  margin-bottom: 35px;
}

@media (max-width: 500px) {
  footer .wrapper .left img {
    width: 200px;
  }
}

footer .wrapper .left p {
  margin-bottom: 18px;
}

footer .wrapper .right {
  padding-top: 86px;
}

@media (max-width: 768px) {
  footer .wrapper .right {
    padding: 0;
  }
}

footer .wrapper .right ul {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media (max-width: 768px) {
  footer .wrapper .right ul {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 77px;
  }
}

footer .wrapper .right ul li {
  margin-left: 24px;
}

@media (max-width: 768px) {
  footer .wrapper .right ul li {
    margin-bottom: 18px;
  }
}

footer .wrapper .right ul li:nth-child(2) {
  margin-left: 80px;
}

@media (max-width: 768px) {
  footer .wrapper .right ul li:nth-child(2) {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  footer .wrapper .right ul li:nth-child(3) {
    margin-bottom: 60px;
  }
}

footer .wrapper .right ul li a {
  color: #fff;
}

@media (max-width: 768px) {
  footer .wrapper .right ul li {
    margin-left: 0;
  }
}

.cop {
  background-color: #191919;
  color: #fff;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
}

.cop p {
  line-height: 60px;
  text-align: left;
  font-size: 12px;
}

/*ham　&& changeheader
--------------------------*/
.nav-list a {
  font-size: 18px;
  line-height: 1.2;
}

.nav-list a span {
  font-size: 12px;
}

/*
-----------------------------------------*/
#loading {
  /* 画面いっぱいになる箇所 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #182848;
  -webkit-transition: all 1s;
  transition: all 1s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /* 中のローディングアニメ */
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

#loading .loader,
#loading .loader:before,
#loading .loader:after {
  background: #ffffff;
  -webkit-animation: loading 1s infinite ease-in-out;
          animation: loading 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

#loading .loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

#loading .loader::before, #loading .loader::after {
  position: absolute;
  top: 0;
  content: '';
}

#loading .loader::before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}

#loading .loader::after {
  left: 1.5em;
}

@-webkit-keyframes loading {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes loading {
  0%,
  80%,
  100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}
/*# sourceMappingURL=style.css.map */