@charset "UTF-8";
/* ------------------------------ */
/* 共通開始 */
/* ------------------------------ */
/************ breakpointの設定	************/
@media screen and (min-width: 1025px) {
  .pc {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

.pc_big {
  /* 1350pxより大きい画面にはPC版のヘッダーを適用したい。 */
}

@media screen and (min-width: 1351px) {
  .pc_big {
    display: block;
  }
}

@media screen and (max-width: 1350px) {
  .pc_big {
    display: none !important;
  }
}

.pc_small {
  /* SP版のヘッダーを1350pxまで適用したい。 */
}

@media screen and (min-width: 1351px) {
  .pc_small {
    display: none !important;
  }
}

@media screen and (max-width: 1350px) {
  .pc_small {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .tab {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .tab {
    display: block;
  }
}

@media screen and (min-width: 770px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 769px) {
  .sp {
    display: block;
  }
}

a {
  color: unset;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.ank {
  padding-top: 90px;
  margin-top: -90px;
}

/************ breakpointの設定	************/
/*==========フォント読み込み==========*/
/*
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
*/
body, input, button, textarea, select {
  font-family: "Noto Sans CJK JP","Noto Sans Japanese","Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", "sans-serif";
}

/*==========フォント読み込み終了==========*/
/*==========カラーコード開始==========*/
/*==========カラーコード終了==========*/
/*==========font-sizeコード開始==========*/
/*==========font-sizeコード終了==========*/
/*==========グラデーションを定義開始==========*/
/*==========グラデーションを定義開始==========*/
/*==========ボタンを定義開始==========*/
/*==========ボタンを定義終了==========*/
/*==========矢印を定義開始==========*/
/*==========矢印を定義終了==========*/
/*==========ホバーアニメーションボタン開始==========*/
.button-4 {
  text-align: center;
  cursor: pointer;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  margin: 0 0 0px 0px;
}

.button-4 .h_wrap {
  width: auto;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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;
  white-space: nowrap;
  position: relative;
  border: 2px solid linear-gradient(90deg, #043b8b, #12246c);
}

.button-4 .h_wrap .eff-4 {
  width: 140px;
  height: 25px;
  left: -140px;
  position: absolute;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  z-index: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
}

.button-4 .h_wrap .h_in {
  color: #222222;
}

.button-4 .h_wrap .h_in_u {
  font-size: 12px;
}

.button-4:hover .h_wrap .eff-4 {
  left: 0;
}

.button-4:hover .h_wrap .h_in {
  position: relative;
  color: #ffffff;
  z-index: 5;
}

.button-4:hover .h_wrap .h_in_u {
  font-size: 12px;
}

/*==========ホバーアニメーションボタン終了==========*/
/*==========フェードインアニメーション終了==========*/
/* 下から上へフェードイン */
.element {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* 左から右へフェードイン */
.toright {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

/* フェードイン時に入るクラス */
.is-toright {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*==========フェードインアニメーション終了==========*/
/* ------------------------------ */
/* 共通終了 */
/* ------------------------------ */
/* ------------------------------ */
/* ヘッダー開始 */
/* ------------------------------ */
body {
  font-family: 'Noto Sans JP';
  padding-top: 80px;
}

@media screen and (max-width: 1350px) {
  body {
    padding-top: 60px;
  }
}

.top {
  /* -------------top開始タグ----------------- */
  /*----- 背景グレー -----*/
  position: relative;
  overflow: hidden;
  /*----- 背景グレー -----*/
  /*SP版のヘッダーを使う時これが表示されます*/
  /* ------------------------------ */
  /* ヘッダー終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* スライダー開始 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* スライダー終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* スライダー修正 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* スライダー修正終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* ニュース開始 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* ニュース終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* ABOUTUS開始 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* ABOUTUS終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* NEWS開始 */
  /* ------------------------------ */
  /*section_02閉じタグ*/
  /* ------------------------------ */
  /* NEWS終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* CONSULTANT開始 */
  /* ------------------------------ */
  /*section_03閉じタグ*/
  /* ------------------------------ */
  /* CONSULTANT終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* COLUMN開始 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* COLUMN終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* RECRUIT開始 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* RECRUIT終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* CONTACT開始 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* CONTACT終了 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* footer開始 */
  /* ------------------------------ */
  /* ------------------------------ */
  /* footer終了 */
  /* ------------------------------ */
}

.top #canvas_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.top .bg_line01 {
  position: relative;
}

.top .bg_line01::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 5000px;
  height: 1416px;
  left: -400px;
  top: 755px;
  background-color: #f5f5f5;
  -webkit-transform: rotate(-24.5deg) scale(0, 1);
          transform: rotate(-24.5deg) scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.top .bg_line01.animation-on::before {
  -webkit-transform: rotate(-24.5deg) scale(1, 1);
          transform: rotate(-24.5deg) scale(1, 1);
  -webkit-transition: .4s;
  transition: .4s;
}

.top .bg_line02 {
  position: relative;
  z-index: 3;
}

.top .bg_line02::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 6000px;
  height: 887px;
  left: -210px;
  bottom: 12px;
  background-color: #12246c;
  -webkit-transform: rotate(-24.5deg) scale(0, 1);
          transform: rotate(-24.5deg) scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.top .bg_line02.animation-on::before {
  -webkit-transform: rotate(-24.5deg) scale(1, 1);
          transform: rotate(-24.5deg) scale(1, 1);
  -webkit-transition: .4s;
  transition: .4s;
}

.top .header01 {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  z-index: 100;
}

.top .header01_wrap {
  max-width: 1920px;
  height: 80px;
  margin: 0 auto;
  padding: 15px calc(80px + 2.5%) 0 1.5625%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.top .header01_logo {
  width: calc(100% - 900px);
  max-width: 340px;
}

.top .header01_logo a {
  display: block;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_logo a:hover {
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_nav_wrapper {
  width: 68.4%;
  min-width: 880px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 9px;
}

.top .header01_nav {
  width: 73.6099585%;
  min-width: 710px;
}

.top .header01_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top .header01_item {
  text-align: center;
}

.top .header01_item:last-of-type {
  margin-right: 0;
}

.top .header01_item a {
  display: block;
}

.top .header01_item a .en {
  display: block;
  padding: 2px 4px;
  position: relative;
}

.top .header01_item a .en::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #112670;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_item a .en span {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  position: relative;
  z-index: 2;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_item a .jp {
  line-height: 1;
  display: inline-block;
  padding: 0 5px 2px;
  margin-top: 4px;
  position: relative;
}

.top .header01_item a .jp::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #112670;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_item a .jp span {
  font-size: 12px;
  color: #666666;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_item a:hover .en::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_item a:hover .en span {
  color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_item a:hover .jp::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01_item a:hover .jp span {
  color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .header01 .sns_wrap {
  width: 150px;
  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;
  padding-top: 2px;
}

.top .header01 .mail_wrap {
  width: 80px;
  height: 80px;
  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;
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
  position: absolute;
  top: 0;
  right: 0;
}

.top .header01 .mail_wrap img {
  width: 38px;
}

.top .header02 {
  background-color: #ffffff;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.top .header02 .header02_wrap {
  padding: 0 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  position: relative;
  /* ハンバーガーメニューの線 */
  /* ハンバーガーメニュークリック後のスタイル */
  /* ナビのリンク */
  /*SNS*/
}

.top .header02 .header02_wrap .header02_logo a {
  display: block;
  width: 250px;
  height: 60px;
  padding: 10px;
}

.top .header02 .header02_wrap .wrap_mail_ham {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.top .header02 .header02_wrap .mail_wrap {
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
  border-color: transparent;
}

.top .header02 .header02_wrap .mail_wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
}

.top .header02 .header02_wrap .mail_wrap img {
  display: block;
  width: 30px;
  height: auto;
}

.top .header02 .header02_wrap .header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 59px;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: ease .4s;
  transition: ease .4s;
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top .header02 .header02_wrap .nav-items {
  position: absolute;
  top: 6%;
  padding: 0;
  width: 70%;
}

@media screen and (max-width: 380px) {
  .top .header02 .header02_wrap .nav-items {
    top: 3%;
  }
}

.top .header02 .header02_wrap .header__hamburger {
  width: 60px;
  height: 100%;
  padding: 10px;
}

.top .header02 .header02_wrap .hamburger {
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
  border-color: transparent;
  /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 10;
}

.top .header02 .header02_wrap .hamburger span {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: relative;
  -webkit-transition: ease .4s;
  transition: ease .4s;
  /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.top .header02 .header02_wrap .hamburger span:nth-child(1) {
  top: 0;
}

.top .header02 .header02_wrap .hamburger span:nth-child(2) {
  margin: 8px 0;
}

.top .header02 .header02_wrap .hamburger span:nth-child(3) {
  top: 0;
}

.top .header02 .header02_wrap .header__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.top .header02 .header02_wrap .hamburger.active span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.top .header02 .header02_wrap .hamburger.active span:nth-child(2) {
  opacity: 0;
}

.top .header02 .header02_wrap .hamburger.active span:nth-child(3) {
  top: -9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.top .header02 .header02_wrap .nav-items__item a {
  color: #ffffff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
}

.top .header02 .header02_wrap .nav-items__item a .m_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 13px 20px;
  position: relative;
}

.top .header02 .header02_wrap .nav-items__item a .m_wrap .m_small {
  font-size: 32px;
}

@media screen and (max-width: 380px) {
  .top .header02 .header02_wrap .nav-items__item a .m_wrap .m_small {
    font-size: 24px;
  }
}

.top .header02 .header02_wrap .nav-items__item a .m_wrap .m_s_small {
  font-size: 16px;
}

@media screen and (max-width: 380px) {
  .top .header02 .header02_wrap .nav-items__item a .m_wrap .m_s_small {
    font-size: 16px;
  }
}

.top .header02 .header02_wrap .nav-items__item a .m_wrap span {
  position: relative;
  display: block;
  width: 23px;
  height: 3px;
  background-color: #ffffff;
  margin-left: 10px;
  position: absolute;
  right: 0;
}

.top .header02 .header02_wrap .nav-items__item a .m_wrap span::before {
  content: '';
  position: absolute;
  top: 5px;
  right: -3px;
  display: block;
  width: 15px;
  height: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #ffffff;
}

.top .header02 .header02_wrap .nav-items__item a .m_wrap span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: -3px;
  display: block;
  width: 15px;
  height: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #ffffff;
}

.top .header02 .header02_wrap .nav-items__item:last-child a {
  margin-bottom: 0;
}

.top .header02 .header02_wrap .sns_wrap {
  position: absolute;
  bottom: 11%;
  width: 100vw;
  text-align: center;
}

.top .header02 .header02_wrap .sns_wrap a {
  margin: 5px;
}

.top .section_01 {
  max-width: 1920px;
  position: relative;
  margin: 40px auto 0;
  z-index: 5;
  /*スクロールダウン全体の場所*/
  /*Scrollテキストの描写*/
  /* 線の描写 */
  /*高さ・位置・透過が変化して線が上から下に動く*/
}

.top .section_01 .scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 4%;
  top: 730px;
  /*全体の高さ*/
  height: 80px;
  width: 50px;
  z-index: 5;
}

.top .section_01 .scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: 0px;
  right: 0px;
  top: -65px;
  width: 50px;
  /*テキストの形状*/
  color: #12246c;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.top .section_01 .scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  /*線の形状*/
  width: 1px;
  height: 80px;
  background: #12246c;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 70px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 70px;
    opacity: 0;
  }
}

@-webkit-keyframes slide-in-anim {
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slide-in-anim {
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes slide-in-bg-anim {
  20% {
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}

@keyframes slide-in-bg-anim {
  20% {
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
  }
}

.top .top_slider_big_wrap {
  position: relative;
}

.top .top_slider_main {
  position: relative;
  width: 100%;
  margin-top: 0px;
}

@media screen and (max-width: 980px) {
  .top .top_slider_main {
    margin-top: 45px;
  }
}

@media screen and (max-width: 1350px) {
  .top .top_slider_main .slick-list .slick-track {
    height: 60vh;
  }
}

.top .top_slider_main .top_slider_box_main.slick-slide {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top .top_slider_main .top_slider_box_main.slick-slide .text_01, .top .top_slider_main .top_slider_box_main.slick-slide .text_03 {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.top .top_slider_main .top_slider_box_main.slick-slide .text_01::before, .top .top_slider_main .top_slider_box_main.slick-slide .text_03::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #043b8b;
  position: absolute;
  top: 0;
  left: 0px;
  display: block;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.top .top_slider_main .top_slider_box_main.slick-slide .text_02 {
  position: relative;
  font-family: 'Lato', sans-serif;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.top .top_slider_main .top_slider_box_main.slick-slide .text_02::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #043b8b;
  position: absolute;
  top: 0;
  left: 0px;
  display: block;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.top .top_slider_main .top_slider_box_main.slick-slide .mainview_img img {
  opacity: 0;
}

.top .top_slider_main .top_slider_box_main.slick-slide .mainview_img::before {
  opacity: 0;
}

.top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_01, .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_03 {
  position: relative;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: 0.6s cubic-bezier(0.8, 0, 0.5, 1);
  transition: 0.6s cubic-bezier(0.8, 0, 0.5, 1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_01::before, .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_03::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #043b8b;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transform: scale(0, 1);
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: 0.6s cubic-bezier(0.3, 0, 0.1, 1) 1s;
  transition: 0.6s cubic-bezier(0.3, 0, 0.1, 1) 1s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_02 {
  position: relative;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: 0.6s cubic-bezier(0.8, 0, 0.5, 1);
  transition: 0.6s cubic-bezier(0.8, 0, 0.5, 1);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_02::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #043b8b;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transform: scale(0, 1);
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: 0.6s cubic-bezier(0.3, 0, 0.1, 1) 1s;
  transition: 0.6s cubic-bezier(0.3, 0, 0.1, 1) 1s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.top .top_slider_main .top_slider_box_main.slick-slide.slick-active .mainview_img img {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
  -webkit-animation: slide-in-anim 1.5s forwards;
          animation: slide-in-anim 1.5s forwards;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.top .top_slider_main .top_slider_box_main.slick-slide.slick-active .mainview_img::before {
  -webkit-transform: translateX(-400%);
          transform: translateX(-400%);
  -webkit-animation: slide-in-bg-anim 1.5s forwards;
          animation: slide-in-bg-anim 1.5s forwards;
  -webkit-animation-delay: .8s;
          animation-delay: .8s;
}

.top .top_slider_main .top_slider_box_main.main_01 {
  /*
					background: url(../img/mainview_img_01.png) no-repeat center center;
					background-size: contain;
					display: flex;
					justify-content: flex-start;
					@include tab {
						padding: 30px;
					}
          */
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_img {
  position: relative;
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_img img {
  position: relative;
  z-index: 5;
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 5% -5% 0 10%;
  max-width: 1200px;
  z-index: 6;
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_01 {
  color: #12246c;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 30px 0;
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_01 span {
  font-size: 42px;
  margin-left: 15px;
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_02 {
  color: #ffffff;
  font-size: 42px;
  font-weight: bold;
  width: 560px;
  height: 80px;
  margin: 0 0 30px 0;
  text-align: center;
  padding: 5px 5px 0px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_02.left {
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 5px 5px 0px 50px;
}

@media screen and (max-width: 1350px) {
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_02.left {
    font-size: 32px;
  }
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_02.fontsize {
  font-size: 36px;
}

.top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_03 {
  color: #12246c;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 30px 0;
  padding: 0 0 0 50px;
}

.top .top_slider_main .top_slider_box_main.main_02 {
  background: url(../img/mainview_img_02.png) no-repeat center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 980px) {
  .top .top_slider_main .top_slider_box_main.main_02 {
    padding: 30px;
  }
}

.top .top_slider_main .top_slider_box_main.main_02 .mainview_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}

.top .slick-dots {
  bottom: 60px;
  padding: 10px;
  text-align: right;
  position: absolute;
  bottom: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.top .slick-dots li {
  width: 10px !important;
  height: 10px;
  padding: 10px;
}

.top .slick-dots li.slick-active button {
  background-color: #12246c;
}

.top .slick-dots li button {
  background-color: #cccccc;
  width: 10px;
  height: 10px;
}

.top .slick-dots li button::before {
  font-size: 0;
}

@media screen and (max-width: 1024px) {
  .top .top_slider_big_wrap {
    position: relative;
  }
  .top .top_slider_main {
    position: relative;
    width: 100vw;
    padding-top: 45px;
    /*spとじタグ*/
  }
  .top .top_slider_main .slick-track {
    width: 100vw;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide .text_01, .top .top_slider_main .top_slider_box_main.slick-slide .text_03 {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide .text_01::before, .top .top_slider_main .top_slider_box_main.slick-slide .text_03::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #043b8b;
    position: absolute;
    top: 0;
    left: 0px;
    display: block;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide .text_02 {
    position: relative;
    font-family: 'Lato', sans-serif;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide .text_02::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #043b8b;
    position: absolute;
    top: 0;
    left: 0px;
    display: block;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: right center;
            transform-origin: right center;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_01, .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_03 {
    position: relative;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: 0.6s cubic-bezier(0.8, 0, 0.5, 1);
    transition: 0.6s cubic-bezier(0.8, 0, 0.5, 1);
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_01::before, .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_03::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #043b8b;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    transform: scale(0, 1);
    -webkit-transition: 2s;
    transition: 2s;
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: 0.6s cubic-bezier(0.3, 0, 0.1, 1) 1s;
    transition: 0.6s cubic-bezier(0.3, 0, 0.1, 1) 1s;
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_02 {
    position: relative;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: 0.6s cubic-bezier(0.8, 0, 0.5, 1);
    transition: 0.6s cubic-bezier(0.8, 0, 0.5, 1);
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .text_02::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #043b8b;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    transform: scale(0, 1);
    -webkit-transition: 2s;
    transition: 2s;
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: 0.6s cubic-bezier(0.3, 0, 0.1, 1) 1s;
    transition: 0.6s cubic-bezier(0.3, 0, 0.1, 1) 1s;
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .mainview_img img {
    -webkit-transform: translateX(-400%);
            transform: translateX(-400%);
    -webkit-animation: slide-in-anim 1.5s forwards;
            animation: slide-in-anim 1.5s forwards;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .top .top_slider_main .top_slider_box_main.slick-slide.slick-active .mainview_img::before {
    -webkit-transform: translateX(-400%);
            transform: translateX(-400%);
    -webkit-animation: slide-in-bg-anim 1.5s forwards;
            animation: slide-in-bg-anim 1.5s forwards;
    -webkit-animation-delay: .8s;
            animation-delay: .8s;
  }
  .top .top_slider_main .top_slider_box_main.main_01 {
    /*
                          background: url(../img/mainview_img_01.png) no-repeat center center;
                          background-size: contain;
                          display: flex;
                          justify-content: flex-start;
                          @include tab {
                              padding: 30px;
                          }
                          */
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_img {
    position: relative;
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_img::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    position: absolute;
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_img img {
    position: relative;
    z-index: 5;
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 5px 5px 5px 5px;
    max-width: 100vw;
    z-index: 6;
    width: 80%;
    padding-top: 30px;
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_01 {
    color: #12246c;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px 0;
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_01 span {
    font-size: 42px;
    margin-left: 15px;
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_02 {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    width: 100%;
    height: 60px;
    margin: 0 0 15px 15px;
    text-align: center;
    padding: 5px 10px 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
    background-image: linear-gradient(90deg, #043b8b, #12246c);
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_02.long {
    font-size: 24px;
  }
  .top .top_slider_main .top_slider_box_main.main_01 .mainview_wrap .text_03 {
    color: #12246c;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 20px 15px;
  }
  .top .top_slider_main .top_slider_box_main.main_02 {
    background: url(../img/mainview_img_02.png) no-repeat center center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 1024px) and (max-width: 980px) {
  .top .top_slider_main .top_slider_box_main.main_02 {
    padding: 30px;
  }
}

@media screen and (max-width: 1024px) {
  .top .top_slider_main .top_slider_box_main.main_02 .mainview_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -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;
  }
  .top .slick-dots {
    position: absolute;
    bottom: 5%;
    padding: 10px;
    text-align: right;
  }
  .top .slick-dots li {
    width: 10px;
    height: 10px;
    padding: 10px;
  }
  .top .slick-dots li.slick-active button {
    background-color: #12246c;
  }
  .top .slick-dots li button {
    background-color: #cccccc;
    width: 10px;
    height: 10px;
  }
  .top .slick-dots li button::before {
    font-size: 0;
  }
  .top .news_wrap {
    position: absolute;
    bottom: -21px;
  }
}

@media screen and (max-width: 1024px) {
  .top .top_slider_box_main.main_01.slick-slide {
    height: 700px;
  }
}

.top .mv_slider {
  width: 100%;
  /*margin-top: 120px;*/
  display: none;
}

.top .mv_slider li {
  width: 100%;
  position: relative;
}

.top .mv_slider li .mv_slider_img01 {
  width: 65.625%;
  margin-left: auto;
  position: relative;
}

.top .mv_slider li .mv_slider_img01::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #053a8b;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.top .mv_slider li .mv_slider_txt01 {
  position: absolute;
  top: 55.2%;
  left: 12.5%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1280px) {
  .top .mv_slider li .mv_slider_txt01 {
    top: inherit;
    bottom: 0;
    left: 5%;
  }
}

.top .mv_slider li .mv_slider_txt01 .txt01 {
  width: 100%;
}

.top .mv_slider li .mv_slider_txt01 .txt01 span {
  font-family: "Lato", sans-serif;
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 12px 29px 20px;
  background-color: #053a8b;
  display: inline-block;
  margin-top: 19px;
  position: relative;
}

@media screen and (max-width: 1280px) {
  .top .mv_slider li .mv_slider_txt01 .txt01 span {
    font-size: 36px;
  }
}

@media screen and (max-width: 980px) {
  .top .mv_slider li .mv_slider_txt01 .txt01 span {
    font-size: 28px;
  }
}

.top .mv_slider li .mv_slider_txt01 .txt01 span:first-of-type {
  margin-top: 0;
}

.top .mv_slider li .mv_slider_txt01 .txt01 span::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #053a8b;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.top .mv_slider li .mv_slider_txt01 .txt02 {
  width: 100%;
  font-family: "Lato", sans-serif;
  font-size: 28px;
  color: #12246c;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.065em;
  padding-left: 31px;
  margin-top: 25px;
  position: relative;
}

@media screen and (max-width: 980px) {
  .top .mv_slider li .mv_slider_txt01 .txt02 {
    font-size: 22px;
  }
}

.top .mv_slider li .mv_slider_txt01 .txt02::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #053a8b;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.top .mv_slider li.animation .mv_slider_img01::before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-animation: scaleIn .6s linear 0s 1 forwards;
  animation: scaleIn .6s linear 0s 1 forwards;
}

.top .mv_slider li.animation .mv_slider_txt01 .txt01 span::before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-animation: scaleIn .6s linear 0s 1 forwards;
  animation: scaleIn .6s linear 0s 1 forwards;
}

.top .mv_slider li.animation .mv_slider_txt01 .txt02::before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-animation: scaleIn .6s linear 0s 1 forwards;
  animation: scaleIn .6s linear 0s 1 forwards;
}

.top .mv_slider li.slick-center .mv_slider_img01 {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation: scaleIn 1s cubic-bezier(0.8, 0, 0.2, 1) 1s 1 forwards;
  animation: scaleIn 1s cubic-bezier(0.8, 0, 0.2, 1) 1s 1 forwards;
}

.top .mv_slider li.slick-center .mv_slider_img01::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-animation: scaleOut 1s cubic-bezier(0.8, 0, 0.2, 1) 2s 1 forwards;
  animation: scaleOut 1s cubic-bezier(0.8, 0, 0.2, 1) 2s 1 forwards;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.top .mv_slider li.slick-center .mv_slider_txt01 .txt01 span {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation: scaleIn 1s cubic-bezier(0.8, 0, 0.2, 1) 1s 1 forwards;
  animation: scaleIn 1s cubic-bezier(0.8, 0, 0.2, 1) 1s 1 forwards;
}

.top .mv_slider li.slick-center .mv_slider_txt01 .txt01 span::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-animation: scaleOut 1s cubic-bezier(0.8, 0, 0.2, 1) 2s 1 forwards;
  animation: scaleOut 1s cubic-bezier(0.8, 0, 0.2, 1) 2s 1 forwards;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.top .mv_slider li.slick-center .mv_slider_txt01 .txt02 {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-animation: scaleIn 1s cubic-bezier(0.8, 0, 0.2, 1) 1s 1 forwards;
  animation: scaleIn 1s cubic-bezier(0.8, 0, 0.2, 1) 1s 1 forwards;
}

.top .mv_slider li.slick-center .mv_slider_txt01 .txt02::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-animation: scaleOut 1s cubic-bezier(0.8, 0, 0.2, 1) 2s 1 forwards;
  animation: scaleOut 1s cubic-bezier(0.8, 0, 0.2, 1) 2s 1 forwards;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes scaleIn {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes scaleIn {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@-webkit-keyframes scaleOut {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}

@keyframes scaleOut {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  49% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  49% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  51% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  100% {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.top .news_wrap {
  /*
    position: absolute;
    z-index: 999;
    top: 863px;
    left: 50%;
    transform: translate(-50%, -50%);
    */
  width: 100%;
  max-width: 1200px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: -40px;
  z-index: 10;
}

@media screen and (max-width: 900px) {
  .top .news_wrap {
    bottom: -81px;
  }
}

.top .news_wrap_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top .news_left {
  width: calc(100% - 140px);
  background-color: #ffffff;
}

@media screen and (max-width: 1350px) {
  .top .news_left {
    width: 60%;
  }
}

.top .news_left .slick-slide {
  border: none;
}

.top .news_left_wrap {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 2% 0 7.5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top .news_left_wrap_date {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #12246c;
  margin-right: 4%;
}

.top .news_left_wrap_content {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #222222;
}

.top .news_right {
  width: 140px;
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
}

.top .news_right a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  padding: 10px 30px 12px 28px;
  -webkit-transition: .2s;
  transition: .2s;
  position: relative;
}

.top .news_right a::before {
  content: "";
  width: 15px;
  height: 12px;
  background: url(../img/arrow01_w.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .news_right a .txt {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.top .news_right a:hover {
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .news_right a:hover::before {
  right: 10px;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .news_right_text {
  color: #ffffff;
  white-space: nowrap;
}

.top .news_right .arrow {
  position: relative;
  display: block;
  width: 23px;
  height: 3px;
  background-color: #ffffff;
  margin-left: 10px;
}

.top .news_right .arrow::before {
  content: '';
  position: absolute;
  top: 5px;
  right: -3px;
  display: block;
  width: 15px;
  height: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #ffffff;
}

.top .news_right .arrow::after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: -3px;
  display: block;
  width: 15px;
  height: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #ffffff;
}

.top .news_slider_main {
  width: 102.34375%;
  margin-top: 60px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.top .news_slider_main .slick-list .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.top .news_slider_main .common_contents_box .mainview_wrap {
  padding: 0 4.5454545%;
  height: 100%;
}

.top .news_slider_main .common_contents_box .mainview_wrap a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: unset;
}

.top .news_slider_main .slider_arrow {
  top: -106px;
}

@media screen and (max-width: 900px) {
  .top .news_slider_main .slider_arrow {
    top: -83px;
  }
}

.top .news_slider_main .slider_arrow.prev {
  right: calc(13.3587786% + 72px);
}

@media screen and (max-width: 900px) {
  .top .news_slider_main .slider_arrow.prev {
    right: 140px;
  }
}

.top .news_slider_main .slider_arrow.next {
  right: 13.3587786%;
}

@media screen and (max-width: 900px) {
  .top .news_slider_main .slider_arrow.next {
    right: 60px;
  }
}

.top .slider_arrow {
  width: 60px;
  height: 60px;
  border: solid 1px #fff;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

.top .slider_arrow::before {
  content: "";
  width: 24px;
  height: 20px;
  background: url(../img/arrow01_w.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .slider_arrow.prev::before {
  -webkit-transform: scale(-1, 1) translate(50%, -50%);
          transform: scale(-1, 1) translate(50%, -50%);
}

.top .slider_arrow:hover {
  background-color: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .slider_arrow:hover::before {
  background: url(../img/arrow01_n.png) no-repeat center/contain;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .slider_arrow.color01 {
  border: solid 1px #12246c;
  background-color: #ffffff;
  z-index: 5;
  /*&:hover{
      background-color: #12246c;
      &::before{
        background: url(../img/arrow01_w.png) no-repeat center /contain;
      }
    }*/
}

.top .slider_arrow.color01::before {
  background: url(../img/arrow01_n.png) no-repeat center/contain;
}

.top .common_contents_box .mainview_wrap {
  width: 100%;
}

.top .common_contents_box .mainview_wrap .n_s_upper {
  width: 100%;
  padding-top: 71.111111%;
  position: relative;
}

.top .common_contents_box .mainview_wrap .n_s_upper img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0% 100%, 0 25px, 25px 0%, 100% 0%, 100% 0, 100% 100%);
          clip-path: polygon(0% 100%, 0 25px, 25px 0%, 100% 0%, 100% 0, 100% 100%);
}

.top .common_contents_box .mainview_wrap .n_s_lower {
  background-color: #ffffff;
  padding: 24px 8.444444% 26px;
  position: relative;
}

.top .common_contents_box .mainview_wrap .n_s_lower.news {
  height: 270px;
}

.top .common_contents_box .mainview_wrap .n_s_lower.colm {
  height: auto;
  min-height: 175px;
}

.top .common_contents_box .mainview_wrap .n_s_cat {
  font-size: 16px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top .common_contents_box .mainview_wrap .n_s_date {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #12246c;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding-left: 4px;
}

.top .common_contents_box .mainview_wrap .n_s_ttl {
  font-size: 22px;
  color: #222;
  font-weight: 700;
  line-height: 1.45454545;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

.top .common_contents_box .mainview_wrap .n_s_text {
  width: 100%;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

.top .common_contents_box.slick-active .mainview_wrap img {
  opacity: 1;
}

.top .common_contents_box.slick-slide {
  height: auto;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top .common_contents_box.column .mainview_wrap {
  padding-left: 11.9047619%;
}

.top .common_contents_box.column .mainview_wrap .n_s_upper {
  padding-top: 70.2702703%;
}

.top .common_contents_box.column .mainview_wrap .n_s_lower {
  padding: 15px 0 25px 0;
}

.top .common_contents_box.column .mainview_wrap .n_s_lower .n_s_cat {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.top .common_contents_box.column .mainview_wrap .n_s_lower .n_s_ttl {
  margin-top: 8px;
  font-size: 22px;
}

@media screen and (max-width: 1700px) {
  .top .common_contents_box.column .mainview_wrap .n_s_lower .n_s_ttl {
    font-size: 18px;
  }
}

@media screen and (max-width: 1600px) {
  .top .common_contents_box.column .mainview_wrap .n_s_lower .n_s_ttl {
    font-size: 16px;
  }
}

.top .common_contents_box.column .mainview_wrap .n_s_lower .n_s_text {
  font-size: 16px;
}

@media screen and (max-width: 1700px) {
  .top .common_contents_box.column .mainview_wrap .n_s_lower .n_s_text {
    font-size: 16px;
  }
}

.top .about_h2 {
  background: url(../../assets/img/ABOUT_US.png) top center no-repeat;
  background-size: contain;
  width: 500px;
  height: 120px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 20px;
  margin: 120px auto 0;
}

.top .about_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin-top: 44px;
  padding: 0 50px;
  text-align: center;
}

.top .about_cont {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
}

.top .about_cont .img {
  width: 56.25%;
}

@media screen and (max-width: 1100px) {
  .top .about_cont .img {
    width: 80%;
    margin: 0 auto;
  }
}

.top .about_cont_r {
  width: 42%;
  max-width: 740px;
  padding-right: 20px;
  padding-top: 71px;
}

@media screen and (max-width: 1100px) {
  .top .about_cont_r {
    width: 80%;
    max-width: initial;
    max-width: auto;
    margin: 0 auto;
    padding-top: 50px;
  }
}

.top .about_cont_r_title {
  font-size: 46px;
  letter-spacing: 0.05em;
  font-weight: bold;
  padding-bottom: 24px;
  position: relative;
}

.top .about_cont_r_title span {
  color: #12246c;
  font-weight: bold;
}

.top .about_cont_r_title::before {
  content: 'Career change';
  color: #12246c;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
  position: absolute;
  bottom: 0;
}

.top .about_cont_r_text {
  width: 100%;
  max-width: 500px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin-top: 41px;
}

@media screen and (max-width: 1100px) {
  .top .about_cont_r_text {
    max-width: initial;
    max-width: auto;
  }
}

.top .about_cont_r_btn {
  margin-top: 50px;
}

.top .about_cont_r_btn a {
  margin-left: 0 !important;
}

@media screen and (max-width: 1100px) {
  .top .about_cont_r_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top .about_cont_r_btn a {
    margin: 0 auto !important;
  }
}

.top .common_btn {
  width: 100%;
}

.top .common_btn a {
  background: url(../../assets/img/common_btn_01_1px.png) no-repeat bottom left/contain;
  width: 370px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: contain;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  position: relative;
  padding: 0 0 3px 3px;
  margin: 0 auto;
}

.top .common_btn a::before {
  content: "";
  width: 15px;
  height: 12px;
  background: url(../img/arrow01_n.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .common_btn a:hover::before {
  right: 20px;
  -webkit-transition: .2s;
  transition: .2s;
}

.top .common_btn_text {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #12246c;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
}

.top .common_btn.white a {
  background: url(../../assets/img/common_btn_02_1px.png) no-repeat bottom left/contain;
}

.top .common_btn.white a::before {
  background: url(../img/arrow01_w.png) no-repeat center/contain;
}

.top .common_btn.white .common_btn_text {
  color: #fff;
}

.top .common_btn.contact a {
  background: url(../../assets/img/common_btn_03_1px.png) no-repeat bottom left/contain;
  width: 450px;
  height: 90px;
}

.top .common_btn.contact a::before {
  width: 20px;
  height: 16px;
}

.top .common_btn.contact .common_btn_text {
  font-size: 24px;
  padding-left: 42px;
  position: relative;
}

.top .common_btn.contact .common_btn_text::before {
  content: "";
  width: 32px;
  height: 22px;
  background: url(../img/mail_icon.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: -3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top .section_02 {
  max-width: 1920px;
  position: relative;
  margin: -170px auto 0;
  padding-top: 311px;
  z-index: 5;
  /*
  &::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 2700px;
    height: 3173px;
    left: -6159px;
    bottom: 0;
    background-color: $color-main;
    transform: skew(-70deg) scale(1,0);
    transform-origin: bottom center;
    overflow-y: visible;
    overflow-x: hidden;
    z-index: 0;
  }

  &.animation-on {
    &::before {
      transform: skew(-70deg) scale(1,1);
      transition: 1s;
      z-index: 0;
    }
  }
*/
  /*news閉じタグ*/
}

.top .section_02 .news_wrapper01 {
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .top .section_02 .news_wrapper01 {
    width: 80%;
  }
}

@media screen and (max-width: 900px) {
  .top .section_02 .news_wrapper01 {
    margin: 0 auto 60px;
  }
}

.top .section_02 .news_h2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top .section_02 .news_h2 .en {
  display: inline-block;
  margin-right: 28px;
}

.top .section_02 .news_h2 .jp {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: -6px;
}

.top .section_02 .news_text {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin-top: 27px;
  text-shadow: 0 0 10px white;
}

.top .section_02 .news_btn {
  margin-top: 81px;
}

.top .section_02 .news_tokyo_wrap.pc {
  width: 100%;
  margin-top: 160px;
}

.top .section_02 .news_tokyo_wrap.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 50px;
}

.top .section_02 .news_tokyo_wrap.tab .left {
  width: 66.666666%;
}

.top .section_02 .news_tokyo_wrap.tab .right {
  width: 30.666666%;
}

.top .section_03 {
  max-width: 1920px;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  margin: 0 auto;
  z-index: 5;
}

.top .section_03::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 6000px;
  height: 714px;
  left: -210px;
  bottom: -730px;
  background-color: #f5f5f5;
  -webkit-transform: rotate(-24.5deg) scale(0, 1);
          transform: rotate(-24.5deg) scale(0, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.top .section_03.animation-on::before {
  -webkit-transform: rotate(-24.5deg) scale(1, 1);
          transform: rotate(-24.5deg) scale(1, 1);
  -webkit-transition: .4s;
  transition: .4s;
}

.top .section_03 .cons_h2 {
  text-align: center;
}

.top .section_03 .cons_h2 .en {
  display: block;
}

.top .section_03 .cons_h2 .jp {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 22px;
}

.top .section_03 .cons_text {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 50px;
}

.top .section_03 .cons_pic {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.top .section_03 .cons_btn {
  margin-top: 81px;
}

.top .section_04 {
  background: url(../../assets/img/bk_purple.png) center center no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-top: 118px;
  padding-bottom: 120px;
  z-index: 5;
  /* colmタグ */
  /*colmスライダー終了*/
}

.top .section_04_inner {
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .top .section_04_inner {
    width: 80%;
  }
}

@media screen and (max-width: 900px) {
  .top .section_04_inner {
    margin: 0 auto 20px;
  }
}

.top .section_04 .colm_h2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top .section_04 .colm_h2 .en {
  display: inline-block;
  margin-right: 26px;
}

.top .section_04 .colm_h2 .jp {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
}

.top .section_04 .colm_text {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin-top: 30px;
}

.top .section_04 .colm_wrap_l {
  width: 100%;
  margin-top: 62px;
}

.top .section_04 .colm_wrap_m {
  width: 81.25%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 5.67708333% 10px 0;
  background-color: #ffffff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1100px) {
  .top .section_04 .colm_wrap_m {
    width: 92%;
  }
}

.top .section_04 .colm_wrap_m_view {
  position: absolute;
  right: -64px;
  bottom: -2px;
}

.top .section_04 .colm_wrap_m_view a {
  background-size: contain;
  width: 140px;
  height: 60px;
  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;
  position: relative;
  background: linear-gradient(135deg, transparent 10px, #043c8d 10px, #12246c 100%);
  color: #ffffff;
  padding-right: 13px;
}

.top .section_04 .colm_wrap_m_view a::before {
  position: absolute;
  background: url(../img/arrow01_w.png) no-repeat center/contain;
  content: '';
  width: 15px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 17px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.top .column_slider_main {
  width: 115.782219%;
  position: static;
}

.top .column_slider_main .slider_arrow {
  top: -107px;
  right: 0;
}

@media screen and (max-width: 900px) {
  .top .column_slider_main .slider_arrow {
    top: -76px;
  }
}

.top .column_slider_main .slider_arrow.prev {
  right: 72px;
}

.top .section_05 {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding-top: 20px;
  padding-bottom: 20px;
}

.top .section_05 .rec_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top .section_05 .rec_l, .top .section_05 .rec_r {
  width: 49.4791667%;
  height: 480px;
  position: relative;
  padding: 106px 20px 10px;
}

@media screen and (max-width: 1100px) {
  .top .section_05 .rec_l, .top .section_05 .rec_r {
    width: 100%;
    height: auto;
    padding: 50px 20px;
  }
}

.top .section_05 .rec_l {
  background: url(../../assets/img/To_recruiters.png) no-repeat center/cover;
}

.top .section_05 .rec_r {
  background: url(../../assets/img/recruits.png) no-repeat center/cover;
}

.top .section_05 .rec_ttl_wrap {
  width: 100%;
}

.top .section_05 .rec_ttl_wrap .rec_ttl .jp {
  width: 100%;
  font-size: 46px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
}

.top .section_05 .rec_ttl_wrap .rec_ttl .en {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
  margin-top: 20px;
}

.top .section_05 .rec_ttl_wrap .rec_ttl_text {
  width: 100%;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 29px;
}

.top .section_05 .rec_ttl_wrap .rec_btn {
  margin-top: 39px;
}

.top .section_06 {
  background: url(../../assets/img/contact_bk.png) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 480px;
  padding-top: 0;
  position: relative;
  z-index: 5;
}

.top .section_06 .cont_ttl_text {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.05em;
  margin-top: 31px;
}

.top .section_06 .cont_ttl_wrap {
  width: 100%;
  text-align: center;
  padding-top: 90px;
}

.top .section_06 .cont_ttl_wrap .cont_h2 .en {
  display: block;
}

.top .section_06 .cont_ttl_wrap .cont_h2 .jp {
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 21px;
}

.top .section_06 .cont_btn {
  margin-top: 41px;
}

.top footer {
  position: relative;
  z-index: 10;
}

.top .f_wrap {
  width: 100%;
  background-color: #ffffff;
}

.top .f_upper {
  width: 100%;
  padding: 40px 20px 45px;
}

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

.top .f_upper_logo a img {
  width: 350px;
}

.top .f_upper_wrap {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.top .f_upper_sns .sns_wrap {
  width: 150px;
  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;
  margin-top: 16px;
}

.top .f_upper_menu {
  width: 100%;
  max-width: 1113px;
  margin-top: 39px;
}

.top .f_upper_menu_ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top .f_upper_menu_li a {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  display: block;
}

.top .f_lower {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #f5f5f5;
  text-align: center;
  padding: 24px 20px;
}

.top #page_top {
  background-image: -webkit-gradient(linear, left top, right top, from(#043b8b), to(#12246c));
  background-image: linear-gradient(90deg, #043b8b, #12246c);
  width: 80px;
  height: 80px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.top #page_top:hover {
  opacity: 0.7;
}

.top #page_top a {
  width: 80px;
  height: 80px;
  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;
}

.top #page_top .arrow {
  position: relative;
  display: block;
  width: 23px;
  height: 3px;
  background-color: #ffffff;
  margin-left: 10px;
  margin-left: 0px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.top #page_top .arrow::before {
  content: '';
  position: absolute;
  top: 5px;
  right: -3px;
  display: block;
  width: 15px;
  height: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #ffffff;
}

.top #page_top .arrow::after {
  content: '';
  position: absolute;
  bottom: 5px;
  right: -3px;
  display: block;
  width: 15px;
  height: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #ffffff;
}

/* -------------top終了タグ----------------- */
/*# sourceMappingURL=pc.css.map */