@charset "UTF-8";
/*
******************************
    fadeアニメーション
*******************************
*/
/* 初期状態 */
.js-fadeInTrigger,
.js-fadeUpTrigger,
.js-fadeDownTrigger,
.js-fadeLeftTrigger,
.js-fadeRightTrigger {
  opacity: 0;
}

/* その場でfade */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下からfade */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上からfade */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左からfade */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からfade */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
******************************
    背景が徐々に透明度が濃くなるアニメーション 
*******************************
*/
@keyframes moveanime {
  0% {
    bottom: 35px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 35px;
  }
}
/*
******************************
    画像やテキストのワイプ表示アニメーション 
*******************************
*/
.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative !important;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: black;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

/* 画像やテキストのワイプ表示のアニメーション1 */
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
/* 画像やテキストのワイプ表示のアニメーション2 */
@keyframes img-animation {
  99% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
/*
******************************
    メインビジュアルでスライドする画像を少しずつ拡大していくアニメーション
*******************************
*/
@keyframes img-expansion {
  100% {
    transform: scale(1.2, 1.2);
  }
}
/*
******************************
    スクロールダウンで高さ・位置・透過が変化して線が上から下に動くアニメーション 
*******************************
*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}
/*
******************************
    セクションの横棒が伸びるアニメーション
*******************************
*/
.js-lineExtend.is-animated {
  border-top: 1px solid black;
  animation: lineExtend 1s ease-in-out forwards;
  display: inline-block;
  position: relative;
  top: 3px;
}

@keyframes lineExtend {
  0% {
    width: 0;
  }
  100% {
    width: 220px;
  }
}
/*
******************************
    画像がblurしながら浮かび上がるアニメーション
*******************************
*/
.blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*
******************************
    readButton
*******************************
*/
.readBtn a {
  font-size: 1.4rem;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 220px;
  max-width: 220px;
  padding: 20px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  transform: skew(-10deg, 0deg);
  background: #054A91;
  color: #fff;
  border: 1px solid #787878;
}

.readBtn a span {
  transform: skewX(10deg);
}

.readBtn a:before {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  right: -20px;
  background: #313131;
  top: 35%;
  transition: 0.2s ease-in-out;
}

.readBtn a:after {
  content: "";
  width: 40px;
  height: 1px;
  position: absolute;
  right: -5px;
  background: #313131;
  top: 55%;
  transition: 0.2s ease-in-out;
}

.readBtn a:hover {
  background: #054A91;
  color: #fff;
  background: #fff;
  color: #313131;
}

.readBtn a:hover:before,
.readBtn a:hover:after {
  transform: translateX(10px);
}

/*
******************************
    トップへ戻るボタン 
*******************************
*/
#page-top {
  position: absolute;
  right: 35px;
  bottom: 35px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 2rem;
  color: #fff;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  animation: moveanime 2s ease-in-out infinite;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

/*
******************************
    header
*******************************
*/
.header {
  background: #fff;
}
@media screen and (max-width: 479px) {
  .header {
    position: fixed;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header {
    position: fixed;
  }
}

.header * {
  color: black;
}
@media screen and (max-width: 479px) {
  .header * {
    color: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header * {
    color: #fff;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span {
    background: black;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span {
    background: black;
  }
}

@media screen and (max-width: 479px) {
  .hamburger.active span {
    background: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger.active span {
    background: black;
  }
}

@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp__item-head {
    border-top: 1px solid #fff;
  }
}

/*
******************************
    pageHeader
*******************************
*/
.pageHeader {
  position: relative;
}

.pageHeader__bgImg {
  height: 300px;
  width: 100%;
  margin-top: 80px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}

.pageHeader__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
  background: -webkit-linear-gradient(180deg, rgb(0, 63, 255), rgb(255, 255, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 99;
}
@media screen and (max-width: 479px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}

.pageHeader__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  z-index: 99;
}

.pageHeader__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  z-index: 99;
}

.pageHeader__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .pageHeader__mask {
    height: 200px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__mask {
    height: 200px;
  }
}

.pageHeader__mask-mask1 {
  height: 300px;
  z-index: 15;
  background: rgba(1, 63, 147, 0.35);
}

/*
******************************
    本ページ共通
*******************************
*/
/*
******************************
    pageHeader
*******************************
*/
.pageHeader__bgImg {
  background-image: url("../../img/webp/pri_header.webp");
}

/*
******************************
    会社案内
*******************************
*/
.privacy {
  padding: 128px 0;
}
@media screen and (max-width: 479px) {
  .privacy {
    padding: 40px 0;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .privacy {
    padding: 40px 0;
  }
}

.privacy__wrapper {
  width: 950px;
  max-width: 90%;
  margin: 0px auto;
  overflow: hidden;
}

.privacy__wrapper * {
  line-height: 2.5em;
  font-family: sans-serif;
}

.privacy__text {
  font-size: 1.4rem;
}

.privacy__head {
  font-size: 1.6rem;
  margin-top: 2em;
  border-left: 6px solid #054A91;
  padding-left: 10px;
}

.privacy__list {
  font-size: 1.4rem;
  padding-left: 32px;
  list-style: decimal;
}

.privacy__item {
  padding-left: 0.5em;
}

/*
******************************
    contactAndRecruit
*******************************
*/
.contactAndRecruit {
  display: none;
}/*# sourceMappingURL=privacy.css.map */