@charset "UTF-8";
/* --

 company.css

 ------------------------------------
-- */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese);
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap");
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル

-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  -webkit-animation: fadein 0.5s ease-out forwards;
          animation: fadein 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeinUp {
  -webkit-animation: fadeinUp 0.5s ease-out forwards;
          animation: fadeinUp 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeinRight {
  -webkit-animation: fadeinRight 0.5s ease-out forwards;
          animation: fadeinRight 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeinLeft {
  -webkit-animation: fadeinLeft 0.5s ease-out forwards;
          animation: fadeinLeft 0.5s ease-out forwards;
}

/*-----------------------------------

	$contents

-----------------------------------*/
.contents__title {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-color: #041f94;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.contents__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(3, 114, 239, 0.8);
}
.company .contents__title {
  background-image: url("../images/company/contents-title.jpg");
}
.business .contents__title {
  background-image: url("../images/business/contents-title.jpg");
}
.recruit .contents__title {
  background-image: url("../images/recruit/contents-title.jpg");
}
.contact .contents__title {
  background-image: url("../images/contact/contents-title.jpg");
}
.privacy .contents__title {
  background-image: url("../images/privacy/contents-title.jpg");
}
.contents__title .inner {
  position: relative;
  z-index: 1;
  display: table;
  height: 100%;
}
.contents__title h2,
.contents__title .breadcrumbs {
  display: table-cell;
  vertical-align: middle;
}
.contents__title h2 {
  color: #fff;
  line-height: 1.4;
}
.contents__title h2 span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
.contents__title h2 span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  background: url("../images/common/bolt.svg") no-repeat 0 0;
  background-size: cover;
  margin-right: 0.25em;
}
.contents__title h2 b {
  font-size: 36px;
  font-size: 3.6rem;
}
.contents__title .breadcrumbs {
  text-align: right;
  color: #fff;
}
.contents__title .breadcrumbs a {
  color: #fff;
}
.contents__title .breadcrumbs a:hover, .contents__title .breadcrumbs a:active, .contents__title .breadcrumbs a:focus {
  color: #f73838;
}
.contents__title .breadcrumbs ul {
  font-size: 0;
}
.contents__title .breadcrumbs li {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
}
.contents__title .breadcrumbs li:not(:first-child)::before {
  content: "/";
  padding: 0 1em;
}
@media screen and (max-width: 560px) {
  .contents__title .breadcrumbs {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .contents__title h2 b {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .contents__title {
    height: 120px;
  }
  .contents__title h2 {
    text-align: center;
  }
  .contents__title h2 b {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.contents__lead {
  padding-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .contents__lead {
    padding-bottom: 30px;
  }
}

/*-----------------------------------

	$business

-----------------------------------*/
.business__lead {
  padding-bottom: 60px;
}
.business .device {
  padding-bottom: 80px;
}
.business .device__lead {
  margin-bottom: 40px;
}
.business__block:not(:last-child) {
  padding-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .business__block:not(:last-child) {
    padding-bottom: 30px;
  }
}
.business__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: auto;
}
.business__photo .image {
  width: 32%;
}
.business__photo .image:not(:first-child) {
  margin-left: 2%;
}
@media screen and (max-width: 480px) {
  .business__photo .image {
    width: 100%;
  }
  .business__photo .image:not(:first-child) {
    margin-left: 0;
  }
  .business__photo .image:not(:last-child) {
    padding-bottom: 10px;
  }
}
.business__photo .image p {
  text-align: center;
  padding-top: 0.5em;
}
.business__photo.device-01 .image {
  width: 49%;
}
@media screen and (max-width: 480px) {
  .business__photo.device-01 .image {
    width: 100%;
  }
}
.business__photo.device-02 .image {
  width: 23.5%;
  padding-bottom: 20px;
}
.business__photo.device-02 .image:first-child, .business__photo.device-02 .image:nth-child(2) {
  width: 49%;
}
.business__photo.device-02 .image:nth-child(3) {
  margin-left: 0;
}
@media screen and (max-width: 480px) {
  .business__photo.device-02 .image {
    width: 49%;
  }
  .business__photo.device-02 .image:not(:last-child) {
    padding-bottom: 10px;
  }
  .business__photo.device-02 .image:nth-child(even) {
    margin-left: 2%;
  }
  .business__photo.device-02 .image:first-child, .business__photo.device-02 .image:nth-child(2) {
    width: 100%;
    margin-left: 0;
  }
}
.business .workflow {
  background: #ebf7fc;
  padding: 30px;
  margin-top: 30px;
}
.business .workflow h4 {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  color: #041f94;
  margin-bottom: 1em;
}
@media screen and (max-width: 480px) {
  .business .workflow {
    padding: 20px;
  }
  .business .workflow h4 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}