@-webkit-keyframes slide-to-right {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-to-right {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-to-left {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-to-left {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-up {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-up {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes cover-up {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  40% {
    -webkit-transform: scaleY(180);
            transform: scaleY(180);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@keyframes cover-up {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  40% {
    -webkit-transform: scaleY(180);
            transform: scaleY(180);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

.box-shadow {
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.gradient {
  background: linear-gradient(to right, #014291 0%, #b766f6 100%);
}

body {
  background-color: #eae8fc;
}

.logo img {
  height: 2.6em;
  margin-top: 7px;
}

a.link-img {
  transition: all 0.1s ease-out;
}

a.link-img:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/* navgation */
nav ul li {
  margin-bottom: 1.3em;
}

nav ul li a {
  color: #1e2f6e;
  transition: 0.8s;
}

nav ul li a:hover {
  background: linear-gradient(transparent 65%, #b766f673 0%);
}

@media screen and (max-width: 1096px) {
  nav ul li {
    margin-bottom: 1.6em;
    width: 80%;
    text-align: left;
  }
  nav ul li a {
    color: white;
  }
  nav ul li a:hover {
    color: #f4f6fc;
  }
  nav.menu {
    display: none;
    width: 25%;
    height: 100vh;
    box-shadow: inset -3px 3px 5px 1px rgba(34, 96, 140, 0.2);
    padding: 20px 40px;
    position: fixed;
    z-index: 500;
    top: 70px;
    right: 0;
    background-color: rgba(44, 107, 153, 0.8);
  }
  nav.menu.inview {
    display: block;
    -webkit-animation-name: in-from-right;
            animation-name: in-from-right;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-iteration-count: none;
            animation-iteration-count: none;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 0;
            animation-delay: 0;
  }
  @-webkit-keyframes in-from-right {
    0% {
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes in-from-right {
    0% {
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
  }
  nav.menu.outview {
    display: block;
    -webkit-animation-name: out-to-right;
            animation-name: out-to-right;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-iteration-count: none;
            animation-iteration-count: none;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-delay: 0;
            animation-delay: 0;
  }
  @-webkit-keyframes out-to-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
      opacity: 0;
    }
  }
  @keyframes out-to-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
      opacity: 0;
    }
  }
}

#menu-btn {
  display: block;
  width: 60px;
  height: 40px;
  margin: 0;
  z-index: 10000;
  top: 8px;
  right: -3px;
  position: absolute;
}

@media screen and (min-width: 1096px) {
  #menu-btn {
    display: none;
  }
}

.lang {
  position: fixed;
  top: -10px;
  right: 90px;
}

.lang > button {
  background-color: #014291;
  border-radius: 0 0 5px 5px;
  color: white;
  padding-top: 10px;
  margin-right: 3px;
  font-weight: bold;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lang > button.off {
  background-color: #616161;
  cursor: default;
}

.lang > button.off a {
  color: white;
}

.lang > button.off:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  background-color: #014291;
  box-shadow: none;
}

.lang > button:hover {
  box-shadow: none;
}

/*  Swiper  */
.swiper-container {
  width: 100%;
  height: 600px;
  background: #fff;
}

.swiper-slide .slide-text-box {
  position: absolute;
  background: #f7fbff8f;
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  top: 0;
  right: 0;
  width: 55%;
  min-height: 600px;
  padding: 0;
  text-align: left;
  transition: -webkit-transform 0.3s cubic-bezier(0.66, 0.04, 0.36, 1);
  transition: transform 0.3s cubic-bezier(0.66, 0.04, 0.36, 1);
  transition: transform 0.3s cubic-bezier(0.66, 0.04, 0.36, 1), -webkit-transform 0.3s cubic-bezier(0.66, 0.04, 0.36, 1);
  -webkit-transform-origin: center center 10px;
          transform-origin: center center 10px;
  -webkit-animation-name: flip;
          animation-name: flip;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.swiper-slide .slide-text-box .slide-text {
  position: absolute;
  bottom: 80px;
  left: 6vw;
}

.swiper-slide .slide-text-box .slide-text h1 {
  font-size: 2.6em;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.05em;
  margin: 5px 0;
}

.swiper-slide .slide-text-box .slide-text p {
  font-size: 2em;
  font-weight: 300;
  margin: 0;
}

.swiper-slide .slide-text-box .slide-text span {
  font-size: 0.8em;
}

.swiper-slide .slide-text-box2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  min-height: 600px;
  padding: 0;
  text-align: left;
}

.swiper-slide .slide-text-box2 .slide-text {
  color: #fff;
  position: absolute;
  top: 0;
  left: 50px;
  max-width: 500px;
}

.swiper-slide .slide-text-box2 .slide-text h1 {
  font-size: 2.6em;
  font-weight: 700;
}

.swiper-slide .slide-text-box2 .slide-text p {
  font-size: 1.4em;
  font-weight: 700;
  margin: 0;
}

.swiper-slide .slide-text-box3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  min-height: 600px;
  padding: 0;
  text-align: left;
}

.swiper-slide .slide-text-box3 .slide-text {
  color: #fff;
  position: absolute;
  bottom: 10%;
  left: 0;
}

.swiper-slide .slide-text-box3 .slide-text h1 {
  font-size: 2.6em;
  font-weight: 700;
}

.swiper-slide .slide-text-box3 .slide-text p {
  font-size: 1.4em;
  font-weight: 700;
  margin: 0;
}

.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 600px;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotateX(90deg) translateZ(25px);
            transform: rotateX(90deg) translateZ(25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0) translateZ(0);
            transform: rotateX(0) translateZ(0);
    opacity: 1;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: rotateX(90deg) translateZ(25px);
            transform: rotateX(90deg) translateZ(25px);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0) translateZ(0);
            transform: rotateX(0) translateZ(0);
    opacity: 1;
  }
}

.swiper-container2 {
  width: 100%;
  height: 800px;
}

.swiper-container2 .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 800px;
}

/* h2 */
.h2 {
  text-align: center;
  position: relative;
  font-weight: bold;
  font-size: 2em;
}

.h2::after {
  content: "";
  background-image: linear-gradient(90deg, #014291 0%, #5152bd 43%, #b766f6 100%);
  position: absolute;
  top: 65px;
  width: 50px;
  height: 5px;
  left: calc(50% - 25px);
}

/*  About  */
.about-box {
  width: 100%;
  max-width: 960px;
  height: 300px;
  margin: 0 auto;
  position: relative;
  margin-top: 80px;
  padding-bottom: 50px;
}

.greeting {
  height: 600px;
}

.about-photo {
  -webkit-clip-path: polygon(13% 0, 100% 0, 86% 100%, 0 100%);
          clip-path: polygon(13% 0, 100% 0, 86% 100%, 0 100%);
  position: absolute;
  top: 0;
}

.about-photo img {
  width: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}

.about-photo.show {
  -webkit-animation-name: slide-to-right;
          animation-name: slide-to-right;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.about-photo.photo-r {
  -webkit-clip-path: polygon(9% 0, 100% 0, 93% 100%, 0 100%);
          clip-path: polygon(9% 0, 100% 0, 93% 100%, 0 100%);
  right: 0;
}

.about-photo.photo-r img {
  height: 350px;
}

.about-title {
  position: relative;
  top: 15%;
  left: 35%;
  font-size: 1.8em;
  font-weight: 700;
  width: 500px;
  z-index: 10;
}

.about-title.show {
  -webkit-animation-name: slide-to-right;
          animation-name: slide-to-right;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.about-title.title-l {
  left: 10%;
  top: 7%;
}

.about-text {
  position: relative;
  top: 15px;
  left: -8px;
  width: 57%;
  text-align: justify;
  font-size: 0.9em;
  font-weight: 300;
  line-height: 2em;
  color: #262626;
  float: right;
  background-color: rgba(194, 188, 246, 0.34);
  -webkit-clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
          clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  padding: 5% 9% 5% 10%;
}

.about-text.show {
  -webkit-animation-name: slide-to-left;
          animation-name: slide-to-left;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.about-text.about-text-l {
  float: left;
  padding: 4% 10% 5% 8%;
}

/*  Partner  */
section#partner {
  background-color: #f4f6fc;
}

.partner-gallery {
  padding-bottom: 0;
  padding-top: 0px;
  margin-bottom: 0px;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
          justify-content: space-around;
}

.partner-card {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}

.partner-card.frame {
  background-color: #fff;
  box-shadow: 0 3px 15px -8px rgba(0, 0, 0, 0.37);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.partner-card .md-column {
  -webkit-flex-direction: row;
          flex-direction: row;
}

.partner-card .partner-card-top {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.partner-card .partner-card-top .partner-photo {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.partner-card .partner-card-top .partner-photo img {
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.partner-card .partner-card-top .partner-title {
  margin-bottom: 10px;
}

.partner-card .partner-card-top .partner-logo {
  overflow: hidden;
  width: 40%;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.partner-card .partner-card-top .partner-logo img {
  width: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.partner-card .partner-card-top .partner-info {
  text-align: left;
  padding-left: 10px;
}

.partner-card .partner-card-top .partner-info.w-93 {
  width: 93%;
  padding: 20px;
  text-align: justify;
}

.partner-card .partner-card-top .partner-info .partner-name {
  letter-spacing: 0.2em;
  display: inline-block;
  width: 100%;
  font-weight: 600;
  font-size: 1.2em;
  margin-top: 5px;
  margin-bottom: 6px;
}

.partner-card .partner-card-top .partner-info p {
  text-align: right;
  color: #262626;
  font-size: 0.92em;
  padding: 0;
  background-color: #fafafa;
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.partner-card .partner-text {
  width: 100%;
  box-shadow: 0 3px 15px -8px rgba(0, 0, 0, 0.37);
  background: #fff;
  padding: 0;
  margin: 25px 0;
}

.partner-card .partner-text p {
  padding: 20px;
}

/*  Features  */
.features {
  padding-bottom: 60px;
}

.feature-box {
  text-align: center;
}

.feature-box p {
  text-align: justify;
  padding: 0 35px;
  font-size: 1.2em;
}

.feature-title {
  font-size: 1.2em;
}

.feature-gallery, .service-gallery, .case-gallery, .recruit-gallery {
  width: 100%;
  background-color: #ffffff;
  padding-bottom: 0;
  padding-top: 0px;
  margin-bottom: 0px;
  -webkit-justify-content: space-around;
          justify-content: space-around;
}

.feature-gallery .thumbnail, .service-gallery .thumbnail, .case-gallery .thumbnail, .recruit-gallery .thumbnail {
  width: 30%;
  text-align: center;
  margin-top: 35px;
}

.feature-gallery .thumbnail h4, .service-gallery .thumbnail h4, .case-gallery .thumbnail h4, .recruit-gallery .thumbnail h4 {
  margin-top: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  margin-left: 5px;
  color: #882aaf;
}

.feature-gallery .thumbnail p, .service-gallery .thumbnail p, .case-gallery .thumbnail p, .recruit-gallery .thumbnail p {
  text-align: justify;
  color: #262626;
}

.feature-img {
  width: 40%;
}

/*  services  */
.card, .case-gallery .case-card, .recruit-card {
  width: 23%;
  text-align: center;
  margin-top: 35px;
  margin-top: 40px;
  padding: 0;
  background-color: #fafafa;
  text-align: center;
  box-shadow: 0 3px 15px -8px rgba(0, 0, 0, 0.37);
  position: relative;
  transition: all 0.3s;
  display: none;
}

.card:nth-child(1).show, .case-gallery .case-card:nth-child(1).show, .recruit-card:nth-child(1).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.card:nth-child(2).show, .case-gallery .case-card:nth-child(2).show, .recruit-card:nth-child(2).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.card:nth-child(3).show, .case-gallery .case-card:nth-child(3).show, .recruit-card:nth-child(3).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.card:nth-child(4).show, .case-gallery .case-card:nth-child(4).show, .recruit-card:nth-child(4).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.card::before, .case-gallery .case-card::before, .recruit-card::before {
  background-color: #b766f6;
  background: linear-gradient(90deg, #014291 0%, #5152bd 43%, #b766f6 100%);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  z-index: 2;
  transition: all 0.3s;
}

.card:hover, .case-gallery .case-card:hover, .recruit-card:hover {
  box-shadow: 0 3px 15px 1px rgba(0, 0, 0, 0.6);
}

.card:hover::before, .case-gallery .case-card:hover::before, .recruit-card:hover::before {
  background: linear-gradient(-90deg, #014291 0%, #5152bd 43%, #b766f6 100%);
}

.card h4, .case-gallery .case-card h4, .recruit-card h4 {
  margin-top: 25px;
  margin-right: 8px;
  margin-bottom: 5px;
  margin-left: 8px;
  color: #1e2f6e;
  font-size: 1.3em;
}

.card p, .case-gallery .case-card p, .recruit-card p {
  text-align: right;
  color: #262626;
  font-size: 0.92em;
  padding: 0 20px 10px;
}

.service-img {
  width: 50%;
  margin-top: 20px;
}

/*  Introduction Cases  */
.case {
  background-color: #f4f6fc;
}

.case-gallery {
  background-color: #f4f6fc;
}

.case-gallery .case-card {
  width: 24%;
  text-align: left;
  min-height: 200px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.case-gallery .case-card:nth-child(1).show {
  display: -webkit-flex;
  display: flex;
  -webkit-animation-name: slide-to-left;
          animation-name: slide-to-left;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.case-gallery .case-card:nth-child(2).show {
  display: -webkit-flex;
  display: flex;
  -webkit-animation-name: slide-to-left;
          animation-name: slide-to-left;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.case-gallery .case-card:nth-child(3).show {
  display: -webkit-flex;
  display: flex;
  -webkit-animation-name: slide-to-left;
          animation-name: slide-to-left;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.case-gallery .case-card:nth-child(4).show {
  display: -webkit-flex;
  display: flex;
  -webkit-animation-name: slide-to-left;
          animation-name: slide-to-left;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.case-gallery .case-card:hover {
  box-shadow: 0 3px 15px -8px rgba(0, 0, 0, 0.37);
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.case-gallery .case-card::before {
  background-color: #b766f6;
  background: linear-gradient(180deg, #014291 0%, #5152bd 43%, #b766f6 100%);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 2px;
  height: 100%;
  z-index: 2;
}

.case-gallery .case-card .case-img {
  width: 100%;
  padding: 40px;
  background-color: white;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.case-gallery .case-card .case-img img {
  width: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-gallery .case-card .case-text {
  padding: 20px 40px;
}

.case-gallery .case-card .case-text h4 {
  margin: 0;
  color: #1e2f6e;
}

.case-gallery .case-card .case-text p {
  text-align: justify;
  color: #262626;
  font-size: 0.92em;
  padding: 0;
}

/*  Network  */
.network-text {
  padding: 40px;
  text-align: center;
  font-size: 1.2em;
  max-width: 900px;
  margin: auto;
}

.network-gallery {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}

.network-gallery img {
  width: 100%;
  height: auto;
  max-width: 1400px;
  margin: auto;
}

/*  Group  */
.group-logo img {
  width: 200px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*  News  */
.news {
  background-color: #ffffff;
  padding-top: 10px;
  -webkit-clip-path: polygon(30% -1px, 100% -1px, 100% 100%, 50% 101%);
          clip-path: polygon(30% -1px, 100% -1px, 100% 100%, 50% 101%);
}

h4.news-title a {
  transition: all 0.2s ease-out;
  background-size: 0;
}

h4.news-title a:hover {
  color: #2c9ab7;
}

.to-news {
  float: right;
  position: relative;
  cursor: pointer;
  margin-top: 40px;
}

.to-news > .arrow {
  position: relative;
  right: -10px;
  bottom: -9px;
  color: #fff;
  cursor: pointer;
  background-color: #00418f;
  border-radius: 22px;
  padding: 15px;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  -webkit-transform: translateX(-150px);
          transform: translateX(-150px);
}

.to-news > .arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  left: 8px;
  top: 10px;
}

.to-news:hover > .arrow {
  background-color: #882aaf;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.parallax-news {
  display: block;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.news-box {
  padding-left: 50%;
  width: 50%;
}

.news-box h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.news-box p {
  margin-top: 0.2em;
}

.news-article {
  margin-bottom: 80px;
}

/*  Recruit  */
section#recruit {
  background-color: #f4f6fc;
}

.recruit-gallery {
  background-color: #f4f6fc;
  width: 100%;
  padding: 0;
}

.recruit-card {
  width: 19%;
  min-height: 220px;
  overflow: hidden;
  transition: all 0.3s;
  display: none;
}

.recruit-card:nth-child(1).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.recruit-card:nth-child(2).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.recruit-card:nth-child(3).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.recruit-card:nth-child(4).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.recruit-card:nth-child(5).show {
  display: block;
  -webkit-animation-name: slide-down;
          animation-name: slide-down;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-iteration-count: none;
          animation-iteration-count: none;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.recruit-card::before {
  background: none;
}

.recruit-card .recruit-card-inner {
  height: 160px;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.recruit-card .recruit-card-inner img {
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -20px;
  transition: all 0.3s ease-out;
}

.recruit-card .recruit-card-title {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  background-color: #b766f6;
  background: linear-gradient(90deg, #004dab80 0%, #8862ff80 65%, #c199ec80 100%);
  height: 160px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.8s ease-out;
}

.recruit-card h4 {
  color: white;
  letter-spacing: 0.2em;
  display: inline-block;
  width: 100%;
  z-index: 2;
  font-size: 1em;
  margin-top: 5px;
  margin-right: 6px;
  margin-bottom: 6px;
  margin-left: 5px;
}

.recruit-card p {
  text-align: right;
  color: #262626;
  font-size: 0.92em;
  padding: 0;
  background-color: #fafafa;
  transition: all 0.3s;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.recruit-card:hover {
  opacity: 0.8;
}

.recruit-card:hover::before {
  background: none;
}

.recruit-card:hover .recruit-card-title {
  opacity: 0.8;
}

.recruit-card:hover .recruit-card-inner img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

.recruit-card:hover p {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.address,
.contact-form {
  width: 50%;
}

/* Contact form */
.address p,
#vueform {
  padding: 20px;
}

.address p label,
#vueform label {
  font-size: 1em;
  font-weight: 600;
}

.address p .container,
#vueform .container {
  background-color: transparent;
}

.address p .row,
#vueform .row {
  margin-bottom: 20px;
  padding-left: 5%;
}

.address p .alert-danger,
#vueform .alert-danger {
  margin: 0 1em 1em;
  padding: 0.2em 1em;
  border: 2px solid #ffb900;
}

.address p .alert-success,
#vueform .alert-success {
  margin: 0 1em 1em;
  padding: 0.2em 1em;
}

.submit-btn {
  position: relative;
  padding: 10px 32px;
  background: #014291;
  border: 2px solid #014291;
  border-radius: 2px;
  color: #014291;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2em;
  transition: 0.8s;
  cursor: pointer;
  float: right;
}

.submit-btn span {
  position: relative;
  z-index: 1;
}

.submit-btn::before,
.submit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 51%;
  height: 100%;
  background-color: #ffffff;
  transition: 0.2s;
}

.submit-btn::before {
  left: 0;
}

.submit-btn::after {
  right: 0;
}

.submit-btn:hover::before,
.submit-btn:hover::after {
  width: 0;
  background: #ffffff;
}

.submit-btn:hover {
  color: #ffffff;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 980px) {
  .swiper-slide .slide-text-box {
    width: 55%;
  }
  .swiper-slide .slide-text-box .slide-text h1 {
    font-size: 2.4em;
  }
  .swiper-slide .slide-text-box .slide-text span {
    font-size: 0.8em;
  }
  .h2::after {
    left: calc(50% - 2.5%);
    width: 5%;
  }
  .about-photo {
    -webkit-clip-path: polygon(11% 0, 100% 0, 88% 100%, 0 100%);
            clip-path: polygon(11% 0, 100% 0, 88% 100%, 0 100%);
  }
  .about-photo img {
    width: 30vw;
  }
  .partner-card .partner-card-top .partner-photo img {
    width: 100%;
  }
  .partner-card .partner-card-top .partner-logo {
    width: 100%;
  }
  /*  Introduction Cases  */
  .case-gallery {
    width: 100%;
    padding: 0;
  }
  .case-gallery .card, .case-gallery .case-card, .case-gallery .recruit-card {
    width: 100%;
    text-align: center;
    min-height: 200px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    overflow: hidden;
  }
  .case-gallery .card::before, .case-gallery .case-card::before, .case-gallery .recruit-card::before {
    background-color: #b766f6;
    background: linear-gradient(90deg, #045ac3 0%, #562fce 43%, #ab61fb 100%);
    width: 100%;
    height: 2px;
    z-index: 2;
  }
  .case-gallery .card .case-img, .case-gallery .case-card .case-img, .case-gallery .recruit-card .case-img {
    width: 100%;
    padding: 40px 0;
    margin: 0 auto;
  }
  .case-gallery .card .case-img img, .case-gallery .case-card .case-img img, .case-gallery .recruit-card .case-img img {
    width: 260px;
  }
  .case-gallery .card .case-text, .case-gallery .case-card .case-text, .case-gallery .recruit-card .case-text {
    padding: 20px 0;
    width: 80%;
    margin: 0 auto;
  }
  .case-gallery .card .case-text h4, .case-gallery .case-card .case-text h4, .case-gallery .recruit-card .case-text h4 {
    margin: 0;
    color: #1e2f6e;
  }
  .parallax-news {
    background-position: top 0 left 0;
    width: 100%;
    height: 100%;
  }
  .service-gallery .card h4, .service-gallery .case-gallery .case-card h4, .case-gallery .service-gallery .case-card h4, .service-gallery .recruit-card h4 {
    font-size: 1em;
  }
}

@media screen and (max-width: 768px) {
  .swiper-container {
    height: calc(80vh - 70px);
    min-height: 480px;
  }
  .swiper-slide .slide-text-box {
    -webkit-clip-path: polygon(0 40%, 100% 0, 100% 1000%, 0 100%);
            clip-path: polygon(0 40%, 100% 0, 100% 1000%, 0 100%);
    min-height: 250px;
    top: 55%;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .swiper-slide .slide-text-box .slide-text {
    bottom: 43px;
    left: 11vw;
  }
  .swiper-slide .slide-text-box .slide-text h1 {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .swiper-slide .slide-text-box .slide-text p {
    font-size: 1.6em;
  }
  .swiper-slide .slide-text-box2 {
    position: absolute;
    top: 20vh;
    left: 0;
    width: 90%;
    min-height: 300px;
    padding: 0;
    text-align: left;
  }
  .swiper-slide .slide-text-box2 .slide-text {
    color: #fff;
    position: absolute;
    top: 0;
    left: 50px;
    max-width: 400px;
  }
  .swiper-slide .slide-text-box2 .slide-text h1 {
    font-size: 2em;
    font-weight: 700;
  }
  .swiper-slide .slide-text-box2 .slide-text p {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0;
  }
  .swiper-slide .slide-text-box3 {
    position: absolute;
    top: 25vh;
    right: 0;
    width: 90%;
    min-height: 300px;
    padding: 0;
    text-align: left;
  }
  .swiper-slide .slide-text-box3 .slide-text {
    color: #fff;
    position: absolute;
    bottom: 10%;
    left: 0;
  }
  .swiper-slide .slide-text-box3 .slide-text h1 {
    font-size: 2em;
    font-weight: 700;
  }
  .swiper-slide .slide-text-box3 .slide-text p {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0;
  }
  .swiper-slide img {
    height: calc(80vh - 70px);
    min-height: 480px;
  }
  .h2::after {
    width: 8%;
    left: calc(50% - 4%);
  }
  .about-box {
    min-height: 520px;
    margin-top: 0;
  }
  .about-photo {
    -webkit-clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
            clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    right: 0;
  }
  .about-photo img {
    width: 80vw;
    height: 70vw;
  }
  .about-title {
    top: 4%;
    left: 17%;
    font-size: 1.2em;
    width: 90%;
  }
  .about-text {
    position: relative;
    top: 5px;
    width: 73vw;
    -webkit-clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    padding: 7% 9% 12% 10%;
  }
  .partner-card .md-column {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .partner-card .partner-card-top .partner-logo {
    padding-top: 20px;
  }
  .feature-gallery, .service-gallery, .case-gallery, .recruit-gallery {
    width: 90%;
    padding: 20px;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .feature-gallery .thumbnail, .service-gallery .thumbnail, .case-gallery .thumbnail, .recruit-gallery .thumbnail {
    width: 100%;
  }
  .card, .case-gallery .case-card, .recruit-card {
    width: 48%;
  }
  .card h4, .case-gallery .case-card h4, .recruit-card h4 {
    margin-top: 0;
    line-height: 1.2em;
  }
  .card p, .case-gallery .case-card p, .recruit-card p {
    padding: 0 20px 0;
  }
  .case-gallery {
    width: 100%;
    padding: 0;
  }
  .case-gallery .card, .case-gallery .case-card, .case-gallery .recruit-card {
    width: 100%;
  }
  .news {
    background-color: #ffffffd6;
    -webkit-clip-path: polygon(0% -1px, 100% -1px, 100% 100%, 30% 101%);
            clip-path: polygon(0% -1px, 100% -1px, 100% 100%, 30% 101%);
  }
  .news-box {
    padding-left: 40%;
  }
  .to-news {
    margin-top: 20px;
  }
  /*  Recruit  */
  .recruit .content-inner {
    padding: 0;
    width: 100%;
  }
  .recruit-card {
    width: 48%;
  }
  .recruit-card h4 {
    font-size: 0.9em;
    padding: 18% 0;
    height: 22px;
  }
  .recruit-card p {
    right: 0;
  }
  .footer_banner {
    margin-top: -20px;
  }
  .footer_banner .content-inner {
    padding: 0;
  }
  .address,
  .contact-form {
    width: 100%;
  }
  #vueform {
    padding: 5px;
  }
  #vueform .container {
    padding: 0;
  }
}

.snslink {
  width: 100%;
  margin: 30px auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-evenly;
          justify-content: space-evenly;
}

/* facebook */
.facebook-embed {
  width: 600px;
  margin: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  z-index: 50;
}

.linkedin {
  width: 280px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  margin-top: 300px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.linkedin img {
  max-width: 280px;
}

.linkedin a {
  transition: all 0.1s ease-out;
  padding: 20px 20px 15px;
  background-color: #ffffffd5;
}

.linkedin a:hover {
  box-shadow: 1px 2px 9px #0000008c;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

@media screen and (max-width: 480px) {
  .about {
    margin-bottom: 100px;
  }
  .about-box {
    padding-bottom: 170px;
  }
  .greeting {
    height: 100%;
    min-height: 800px;
  }
  .about-title.title-l {
    top: 4%;
  }
  .about-text.about-text-l {
    top: -19px;
    left: 2vw;
    padding: 8% 10% 10% 8%;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .partner-card .partner-card-top {
    -webkit-flex-direction: column;
            flex-direction: column;
  }
  .partner-card .partner-card-top .partner-photo {
    width: 60%;
    margin: auto;
  }
  .partner-card .partner-card-top .partner-info {
    width: 100%;
    padding-left: 0;
  }
  .partner-card .partner-card-top .partner-info.w-93 {
    width: 89%;
  }
  .partner-card.partner-text {
    width: 86%;
  }
  .news-box {
    padding-left: 30%;
    width: 70%;
  }
  .news {
    background-color: #ffffffcb;
  }
  .to-news > .arrow {
    -webkit-transform: translateX(-140px);
            transform: translateX(-140px);
  }
  .facebook-embed img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 834px) {
  .snslink {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
            justify-content: center;
  }
  /* facebook */
  .facebook-embed {
    width: 100%;
    margin: 30px auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: center;
            justify-content: center;
  }
  .facebook-embed img {
    margin: 0 10vw;
  }
  .linkedin {
    margin: 80px auto;
    width: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .about-box {
    max-width: 1300px;
    height: 300px;
    width: 80%;
    margin-top: 80px;
  }
  .about-photo {
    -webkit-clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
            clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
  }
  .about-photo img {
    width: 340px;
  }
  .about-photo.photo-r img {
    width: 320px;
  }
  .about-title {
    position: relative;
    top: 14%;
    left: 35%;
    font-size: 1.8em;
    font-weight: 700;
    z-index: 10;
    width: 600px;
  }
  .about-title.title-l {
    top: 14%;
  }
  .about-text {
    font-size: 1em;
    width: 60%;
    max-width: 714px;
    height: 200px;
    left: 0;
    line-height: 32px;
    padding: 4% 10% 6% 11%;
  }
  .about-text-l {
    height: 700px;
  }
  .partner-card .partner-card-top .partner-logo {
    width: 38%;
  }
  .partner-card .partner-card-top .partner-logo img {
    width: 200px;
  }
  .service-gallery .card, .service-gallery .case-gallery .case-card, .case-gallery .service-gallery .case-card, .service-gallery .recruit-card {
    width: 23%;
  }
}

@media screen and (min-width: 1580px) {
  .about-text {
    line-height: 38px;
  }
}

/* bg-img */
.bg-img {
  position: absolute;
  opacity: 0.6;
}

.bg-img.bg-img01 {
  top: 73px;
  left: -120px;
  width: 700px;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

.bg-img.bg-img02 {
  bottom: 5px;
  right: -110px;
  width: 370px;
}

.bg-img.bg-img03 {
  top: 45px;
  right: -57px;
  width: 700px;
  -webkit-transform: rotate(187deg);
          transform: rotate(187deg);
}

.bg-img.bg-img04 {
  top: 50px;
  left: -40px;
  width: 370px;
}

@media screen and (max-width: 1024px) {
  .bg-img.bg-img03 {
    right: -40vw;
    width: 700px;
  }
}

@media screen and (max-width: 580px) {
  .bg-img.bg-img01 {
    width: 425px;
  }
  .bg-img.bg-img02 {
    bottom: 180px;
    right: -50px;
    width: 300px;
  }
  .bg-img.bg-img03 {
    top: 25px;
    width: 428px;
  }
}
/*# sourceMappingURL=style.css.map */