@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;
  }
}

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

	$company

-----------------------------------*/
.company .message {
  padding: 60px 0;
  background: #ebf7fc;
}
@media screen and (max-width: 768px) {
  .company .message {
    padding: 36px 0 24px;
  }
}
.company .message__text p {
  padding-bottom: 1.2em;
}
.company .message__name {
  font-weight: bold;
  text-align: right;
}
.company .message__name b {
  font-size: 18px;
  font-size: 1.8rem;
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .company .message__name b {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.company .philosophy {
  padding-top: 80px;
}
.company .philosophy__block:not(:last-child) {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .company .philosophy__block:not(:last-child) {
    padding-bottom: 36px;
  }
}
.company .philosophy .slogan {
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .company .philosophy .slogan {
    font-size: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
  .company .philosophy .slogan {
    font-size: 20px;
    font-size: 2rem;
  }
}
.company .philosophy .safety {
  padding-bottom: 30px;
}
.company .philosophy .list-decimal-01 li:not(:last-child),
.company .philosophy .list-decimal-02 li:not(:last-child) {
  padding-bottom: 0.25em;
}
@media screen and (max-width: 768px) {
  .company .philosophy {
    padding-top: 36px;
  }
}
.company .outline {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .company .outline {
    padding-top: 36px;
  }
  .company .outline .tbl-01 th {
    width: 36%;
  }
}
@media screen and (max-width: 480px) {
  .company .outline .tbl-01 th {
    width: 100%;
  }
}
.company .history {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .company .history {
    padding-top: 36px;
  }
}