@charset "UTF-8";
/* SCSS Document */
* {
  box-sizing: border-box;
}

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

common

------------------------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  counter-reset: item;
  background-color: #1B2465;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: #000000;
}

.line-y {
  height: 100%;
  width: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1.43 1.54"><path fill="%2338457F" d="m0,.78c0-.46.3-.78.72-.78s.71.32.71.78c0,.43-.28.76-.72.76s-.71-.36-.71-.76Z" /></svg>');
  background-size: 1px;
  background-repeat: repeat-y;
  background-position: calc(50% + 640px);
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .wrap {
    padding: 0 10px;
  }
}

/*------------------------------------------------------------
　
トップページ　

------------------------------------------------------------*/
/*------------------------------------------------------------
header
------------------------------------------------------------*/
.header {
  height: 100vh;
  background: url(../img/header-bg.jpg);
  background-size: cover;
  position: relative;
  margin-bottom: 200px;
}
@media screen and (max-width: 480px) {
  .header {
    max-height: 750px;
  }
}
.header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/top-bg.png), rgba(73, 80, 132, 0.8);
}

.header_nav {
  position: fixed;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  width: 100%;
  transition: all 0.4s;
}

.header-logo {
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 480px) {
  .header-logo {
    max-width: 200px;
  }
}
.header-logo img {
  filter: invert(100%) sepia(0%) saturate(7492%) hue-rotate(123deg) brightness(100%) contrast(98%);
}
.header-logo a {
  padding: 20px;
  display: block;
}
@media screen and (max-width: 480px) {
  .header-logo a {
    padding: 12px;
  }
}

.headerColorScroll {
  background: #1B2465;
  transition: all 0.4s;
}

.g-nav {
  position: relative;
  display: block;
}
@media screen and (max-width: 1024px) {
  .g-nav {
    display: none;
  }
}
.g-nav > ul {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  min-height: 80px;
}
.g-nav > ul > li {
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.g-nav > ul > li > a {
  color: #fff;
  padding: 30px 10px;
  display: inline-block;
  width: 100%;
  font-weight: bold;
}
.g-nav > ul > li:last-child {
  background: linear-gradient(90deg, rgb(255, 112, 30) 0%, rgb(255, 191, 48) 50%, rgb(255, 77, 48) 100%); /* (to left, #fa709a 0%, #fee140 100%); */
  background-size: 200% 100%;
  text-shadow: 1px 1px 2px #e79909;
  transition: all 0.3s;
}
.g-nav > ul > li:last-child:hover {
  background-position: 100% 0;
  transition: all 0.3s;
}

.g-nav_items a {
  display: inline-block;
  perspective: 1000px;
  perspective-origin: 50% 50%;
  vertical-align: bottom;
  overflow: hidden;
}

.g-nav_items a span {
  display: inline-block;
  position: relative;
  transition: 0.4s;
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
}

.g-nav_items a:hover span {
  transform: translate3d(0, 0, -30px) rotateX(90deg);
}

.g-nav_items a span:after {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: attr(data-text);
  color: #7d91b2;
  transform-origin: 50% 0%;
  transform: translate3d(0, 105%, 0) rotateX(-90deg);
}

.child_menu li a {
  font-weight: bold;
  color: #131B59;
}

.child_menu li a {
  padding-bottom: 5px;
  position: relative;
}

.child_menu li a::before {
  background: #131B59;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.child_menu li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.child_menu { /* 下層メニューのスタイル */
  display: flex;
  width: 70vw;
  min-width: 1000px;
  position: absolute;
  top: 100%; /* 親項目の直下に配置 */
  right: 20px;
  padding: 30px;
  color: #333;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.child_menu > h2 {
  width: 30%;
}
.child_menu > h2 .child_menu_jp {
  color: #1B2465;
  position: relative;
  font-size: 2.5rem;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .child_menu > h2 .child_menu_jp {
    font-size: 1.8rem;
  }
}
.child_menu > h2 .child_menu_en {
  top: 52%;
  left: 16px;
  font-size: 7rem;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  position: absolute;
  color: rgba(56, 69, 127, 0.2);
  z-index: 5;
}
@media screen and (max-width: 480px) {
  .child_menu > h2 .child_menu_en {
    font-size: 5rem;
  }
}
.child_menu .child_menu_list {
  width: 40%;
  padding: 25px 0px 0px 0px;
  display: flex;
}
.child_menu .child_menu_list ul {
  width: 50%;
  flex-direction: column;
}
.child_menu .child_menu_list li {
  margin-bottom: 30px;
}
.child_menu .child_menu_img {
  width: 30%;
  min-width: 250px;
  position: relative;
  overflow: hidden;
}
.child_menu .child_menu_img::after {
  content: "";
  display: block;
  padding-top: 75%;
}
.child_menu .child_menu_img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
  opacity: 0;
}
.child_menu .child_menu_img img.child_menu_img_fadeIn {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease-in 0s forwards;
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.menu:hover .child_menu {
  visibility: visible;
  opacity: 1;
  right: 0;
  transition: 0.3s;
}

.fas {
  padding-right: 3px;
}

/*------------------------------------------------------------
スマホナビ
------------------------------------------------------------*/
.sp-logo {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp-logo {
    display: block;
    padding: 20px;
  }
}

nav.globalMenuSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 998;
    top: 0;
    left: 0;
    color: #000;
    text-align: center;
    transform: translateY(5%);
    visibility: hidden;
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  nav.globalMenuSp .menu p {
    color: #fff;
    font-weight: bold;
    padding: 1em 0;
    font-size: 1.1em;
  }
  nav.globalMenuSp .child_menu_sp {
    padding: 0px 10px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    border-bottom: dotted 1px #fff;
  }
  nav.globalMenuSp .child_menu_sp .menu_sp_list-items {
    width: 45%;
    padding-bottom: 20px;
  }
  nav.globalMenuSp .child_menu_sp .menu_sp_list-items a {
    border-bottom: none;
    padding: 0;
    font-size: 0.9em;
  }
  nav.globalMenuSp .child_menu_sp .menu_sp_list-items a div {
    padding-bottom: 5px;
  }
  nav.globalMenuSp .child_menu_sp .menu_sp_list-items img {
    width: 100%;
  }
  nav.globalMenuSp .child_menu_sp::after {
    content: "";
    display: block;
    width: 45%; /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
  }
  nav.globalMenuSp ul {
    background: #131b59;
    /*background: -webkit-linear-gradient(-45deg, #fa709a 0%, #fbb0c9 100%);*/
    background-size: cover;
    margin: 0 auto;
    padding: 100px 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    font-weight: bold;
    padding: 1em 0;
    font-size: 1.1em;
    border-bottom: dotted 1px #fff;
  }
  nav.globalMenuSp ul li a:hover {
    background: rgba(245, 245, 245, 0.8);
  }
  nav.globalMenuSp.nav_active {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 480px) {
  nav.globalMenuSp ul {
    padding: 50px 0;
  }
}

.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    background: #3cb371;
    background: url(../img/bg7.png);
    background-size: cover;
    cursor: pointer;
    z-index: 999;
    text-align: center;
    border-radius: 5px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 47px;
    border-bottom: solid 4px #fff;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 23px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
  .navToggle.nav_active span:nth-child(1) {
    top: 22px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 480px) {
  .navToggle {
    top: 0px;
    right: 10px;
  }
}

/* TOPテキスト */
.top_text_area {
  max-width: 900px;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  overflow: hidden;
  z-index: 100;
}
.top_text_area h2 {
  font-size: 4.5em;
  color: #fff;
  font-weight: bold;
  line-height: 1.2em;
  letter-spacing: 3px;
}
@media screen and (max-width: 480px) {
  .top_text_area h2 {
    font-size: 2.5em;
    color: #fff;
    font-weight: bold;
    line-height: 1.2em;
    text-shadow: 0px 0px 5px #000;
  }
}

.boxInner {
  display: block;
  width: inherit;
  height: inherit;
  opacity: 0;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .boxInner {
    flex-wrap: wrap;
  }
}

.isPlay {
  animation-name: play;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:before {
  animation-name: maskOut;
  animation-duration: 0.4s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #fff;
}

.top_image_area .isPlay:before {
  background: #fff;
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
/* headerslide */
.top_image_area {
  position: absolute;
  bottom: -10%;
  right: 10%;
  overflow: hidden;
  z-index: 99;
  border-radius: 50%;
  width: 35%;
  min-width: 550px;
}
.top_image_area::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media screen and (max-width: 480px) {
  .top_image_area::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.5);
  }
}
.top_image_area .top-image {
  position: absolute;
  width: 100%;
  height: 100% !important;
  min-height: 550px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------------------------------------
　main
------------------------------------------------------------*/
/* カラー */
.white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.mb10 {
  margin-bottom: 10px;
}

/* 横ライン */
.line-x {
  width: 100%;
  height: 1px;
  border-top: 1px solid #38457F;
}

/* h2スタイル */
.ttl {
  position: relative;
  font-weight: bold;
  padding-top: 55px;
}
@media screen and (max-width: 480px) {
  .ttl {
    padding-top: 20px;
  }
}
.ttl .jp {
  position: relative;
  font-size: 2.5rem;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .ttl .jp {
    font-size: 1.8rem;
  }
}
.ttl .en {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  position: absolute;
  bottom: -50%;
  color: rgba(56, 69, 127, 0.5);
  font-size: 160px;
  z-index: 5;
}
@media screen and (max-width: 480px) {
  .ttl .en {
    font-size: 5rem;
  }
}

/* h2 ttl　アニメーション */
.js_ttlFadeIn {
  margin-bottom: 5%;
  transform: translateX(-3%);
  opacity: 0;
}

.huwa {
  animation: huwa 1s ease-out forwards;
}

@keyframes huwa {
  to {
    transform: initial;
    opacity: 1;
  }
}
/* テキストボックス　フェードイン */
.js_txtboxFadeIn {
  opacity: 0;
}

.view {
  animation: view 3s ease-out forwards;
}

@keyframes view {
  to {
    opacity: 1;
  }
}
/* h3スタイル */
.txtbox_ttl {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
  line-height: 1.5;
}

.txt-box {
  margin-bottom: 40px;
  line-height: 1.7;
}
.txt-box p {
  margin-bottom: 10px;
}

/* ボタン */
.more-btn {
  text-align: center;
  width: 160px;
  height: 60px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .more-btn {
    width: 130px;
    height: 50px;
  }
}
.more-btn a {
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.more-btn a:hover {
  border: 1px solid #fff;
  background-color: #1B2465;
  color: #fff;
  transition: all 0.3s;
  box-sizing: border-box;
}

/* ご挨拶 */
.greeting {
  padding-bottom: 200px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .greeting {
    padding-bottom: 100px;
  }
}
.greeting h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .greeting h2 .en {
    left: 75px;
  }
}
.greeting .txt-box {
  font-size: 1.3em;
}
@media screen and (max-width: 480px) {
  .greeting .txt-box {
    font-size: 1em;
  }
}

/* 業務内容 */
.wroks {
  padding-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .wroks {
    padding-bottom: 100px;
  }
}
.wroks h2 {
  margin-bottom: 60px;
  color: #fff;
}

.wroks_box {
  min-height: 400px;
  position: relative;
  margin-bottom: 50px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .wroks_box {
    height: 100%;
  }
}

/* 左画像　右テキスト */
.l_img {
  width: 52%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: url("../img/mask.svg");
          mask-image: url("../img/mask.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top right;
          mask-position: top right;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
@media screen and (max-width: 1024px) {
  .l_img {
    width: 100%;
    height: 22vh;
    display: block;
    position: static;
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.l_img img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .l_img img {
    filter: grayscale(0%);
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.r_txt {
  width: 52%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-mask-image: url("../img/mask2.svg");
          mask-image: url("../img/mask2.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom left;
          mask-position: bottom left;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1024px) {
  .r_txt {
    width: 100%;
    height: 100%;
    position: static;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

.r_txt_inner {
  width: 100%;
  position: relative;
  padding: 50px 0;
}
.r_txt_inner .txt-box {
  padding: 0 20px 0 100px;
}
@media screen and (max-width: 1024px) {
  .r_txt_inner .txt-box {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .r_txt_inner {
    width: 100%;
    padding: 0 10px;
  }
}
.r_txt_inner h3 {
  text-align: center;
}
@media screen and (max-width: 480px) {
  .r_txt_inner h3 {
    padding-top: 30px;
  }
}
.r_txt_inner .more-btn {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .r_txt_inner .more-btn {
    position: static;
    transform: translatex(0%);
    margin-bottom: 30px;
  }
}
.r_txt_inner .more-btn a {
  background-color: #1B2465;
  color: #fff;
  transition: all 0.3s;
}
.r_txt_inner .more-btn a:hover {
  border: 1px solid #1B2465;
  background-color: #fff;
  color: #1B2465;
  transition: all 0.3s;
}

/* 左テキスト　右画像 */
.r_img {
  width: 52%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-mask-image: url("../img/mask2.svg");
          mask-image: url("../img/mask2.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: bottom left;
          mask-position: bottom left;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
@media screen and (max-width: 1024px) {
  .r_img {
    width: 100%;
    height: 22vh;
    display: block;
    position: static;
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.r_img img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .r_img img {
    filter: grayscale(0%);
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.l_txt {
  width: 52%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-mask-image: url("../img/mask.svg");
          mask-image: url("../img/mask.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top right;
          mask-position: top right;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  display: flex;
  justify-content: start;
}
@media screen and (max-width: 1024px) {
  .l_txt {
    width: 100%;
    height: 100%;
    position: static;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

.l_txt_inner {
  width: 100%;
  position: relative;
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .l_txt_inner {
    width: 100%;
    padding: 0 10px;
  }
}
.l_txt_inner .txt-box {
  padding: 0 80px 0 20px;
}
@media screen and (max-width: 1024px) {
  .l_txt_inner .txt-box {
    padding: 0;
  }
}
.l_txt_inner h3 {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .l_txt_inner h3 {
    padding-top: 30px;
  }
}
.l_txt_inner .more-btn {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .l_txt_inner .more-btn {
    position: static;
    transform: translatex(0%);
    margin-bottom: 30px;
  }
}
.l_txt_inner .more-btn a {
  background-color: #1B2465;
  color: #fff;
  transition: all 0.3s;
}
.l_txt_inner .more-btn a:hover {
  border: 1px solid #1B2465;
  background-color: #fff;
  color: #1B2465;
  transition: all 0.3s;
}
.l_txt_inner .more-btn a:hover .l_txt_inner {
  width: 80%;
  position: relative;
  padding-left: 20px;
}
.l_txt_inner .more-btn a:hover .l_txt_inner h3 {
  text-align: center;
  padding-top: 50px;
}
.l_txt_inner .more-btn a:hover .l_txt_inner .more-btn {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 70px;
}
.l_txt_inner .more-btn a:hover .l_txt_inner .more-btn a {
  background-color: #1B2465;
  color: #fff;
  transition: all 0.3s;
}
.l_txt_inner .more-btn a:hover .l_txt_inner .more-btn a:hover {
  border: 1px solid #1B2465;
  background-color: #fff;
  color: #1B2465;
  transition: all 0.3s;
}

/* works　アニメーション */
.worksLeft {
  opacity: 0;
  transform: translatex(-30%);
}

.worksRight {
  opacity: 0;
  transform: translatex(30%);
}

.workshuwa {
  animation: workshuwa 0.5s ease-out forwards;
}

@keyframes workshuwa {
  to {
    transform: initial;
    opacity: 1;
  }
}
/* works　アニメーション */
/* 採用情報 */
.recruit {
  margin-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .recruit {
    margin-bottom: 100px;
  }
}
.recruit h2 {
  margin-bottom: 60px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .recruit h3 {
    font-size: 24px;
  }
}

/* .recruit_img{
	padding-bottom: 20px;
	margin: 0 auto;
	img{
		width: 100%;
		height: auto;
	}
} */
footer div {
  background-color: #131B59;
  text-align: center;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 16px;
}
@media screen and (max-width: 480px) {
  footer div {
    padding-top: 20px;
  }
}
footer div p {
  margin-bottom: 10px;
}
footer div p a {
  color: #fff;
}
footer div small {
  font-size: 0.8rem;
}

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

下層ページ

------------------------------------------------------------*/
.sub-header {
  height: 55vh;
  background: url(../img/header-bg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .sub-header {
    max-height: 550px;
  }
}

.sub-header_nav {
  background-color: #131b59;
}

.sub-header_ttl {
  position: absolute;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  left: 30%;
  padding-top: 55px;
}
@media screen and (max-width: 1024px) {
  .sub-header_ttl {
    padding-top: 18px;
    top: 45%;
    left: 8%;
  }
}
.sub-header_ttl .jp {
  position: relative;
  font-size: 2.5rem;
  z-index: 10;
  color: #131b59;
}
@media screen and (max-width: 480px) {
  .sub-header_ttl .jp {
    font-size: 1.8rem;
  }
}
.sub-header_ttl .en {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  position: absolute;
  bottom: -50%;
  left: 120px;
  color: rgba(56, 69, 127, 0.5);
  font-size: 160px;
  z-index: 5;
  transition: 0.5s;
}
@media screen and (max-width: 480px) {
  .sub-header_ttl .en {
    bottom: -50%;
    left: 60%;
    font-size: 5rem;
  }
}

.sub-ttl {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .sub-ttl {
    line-height: 1.7;
  }
}

/*------------------------------------------------------------
　会社概要
------------------------------------------------------------*/
.intro {
  color: #fff;
  padding-bottom: 100px;
}

.company {
  padding-bottom: 50px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .company {
    padding-bottom: 10px;
  }
}
.company .jp {
  color: #fff;
}
.company .company_ttl {
  padding-bottom: 50px;
}

.company_map {
  margin-bottom: 200px;
}
@media screen and (max-width: 480px) {
  .company_map {
    margin-bottom: 100px;
  }
}

.tbl {
  margin: 0 auto;
  width: 90%;
  border-collapse: collapse;
}
@media screen and (max-width: 480px) {
  .tbl {
    width: 100%;
  }
}
.tbl th {
  text-align: left;
  padding: 15px 30px 15px 10px;
  border-bottom: 1px solid #36437d;
  width: 25%;
}
@media screen and (max-width: 480px) {
  .tbl th {
    display: block;
    width: 100%;
    background: #293572;
    border-bottom: none;
  }
}
.tbl td {
  padding: 15px 30px 15px 10px;
  border-bottom: 1px solid #36437d;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .tbl td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}

.telnum a {
  color: #fff;
}

.contact {
  color: #fff;
}
@media screen and (max-width: 480px) {
  .contact .contact_ttl .en {
    left: 140px;
  }
}

/*------------------------------------------------------------
　採用情報
------------------------------------------------------------*/
.recruit_int {
  color: #fff;
  padding-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .recruit_int {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .recruit_int {
    padding-bottom: 60px;
  }
}
.recruit_int .sub-ttl {
  font-size: 1.8rem;
  padding-top: 15px;
}
@media screen and (max-width: 480px) {
  .recruit_int .sub-ttl {
    font-size: 1.2em;
    padding-top: 0;
    margin-bottom: 10px;
  }
}
.recruit_int .sub-ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  .recruit_int .sub-ttl br {
    display: block;
  }
}
.recruit_int .txt-box {
  margin-bottom: 20px;
  font-size: 1.2rem;
}
@media screen and (max-width: 480px) {
  .recruit_int .txt-box {
    font-size: 1em;
  }
}

.recruit_img {
  padding-bottom: 20px;
  margin: 0 auto;
}
.recruit_img img {
  width: 100%;
  height: auto;
}

.recruit_area {
  background-color: #f5f5f5;
  color: #000;
  padding-top: 150px;
}
@media screen and (max-width: 1024px) {
  .recruit_area {
    padding-top: 100px;
  }
}
.recruit_area .recruit_ttl {
  padding-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .recruit_area .recruit_ttl {
    padding-bottom: 20px;
  }
}
.recruit_area .recruit_ttl .jp {
  color: #36437d;
}
.recruit_area .recruit_ttl .en {
  color: rgba(56, 69, 127, 0.1);
}
@media screen and (max-width: 1024px) {
  .recruit_area .recruit_ttl .en {
    left: 190px;
    font-size: 6rem;
    bottom: -15px;
  }
}
@media screen and (max-width: 480px) {
  .recruit_area .recruit_ttl .en {
    left: -10px;
    font-size: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .recruit_area .tbl th {
    font-weight: bold;
    background: #e4e4ea;
  }
}

.recruit_tbl {
  padding-bottom: 120px;
}
@media screen and (max-width: 480px) {
  .recruit_tbl {
    padding-bottom: 80px;
  }
}
.recruit_tbl h4 {
  font-size: 2em;
  padding-bottom: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .recruit_tbl h4 {
    font-size: 1.2em;
  }
}

.recruit_link {
  display: flex;
  padding-bottom: 200px;
  /* height: -webkit-fill-available; */
}
@media screen and (max-width: 1024px) {
  .recruit_link {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .recruit_link {
    display: block;
  }
}
.recruit_link .recruit_link_box {
  width: 33.3333333333vw;
  height: 290px;
  aspect-ratio: 16/9;
  -webkit-aspect-ratio: 16/9;
}
@media screen and (max-width: 480px) {
  .recruit_link .recruit_link_box {
    width: 100%;
  }
}
.recruit_link .recruit_link_box a {
  position: relative;
  z-index: 9;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.recruit_link .recruit_link_box p {
  position: relative;
  z-index: 99;
  font-size: 2.5em;
  color: #fff;
  font-weight: bold;
  letter-spacing: 16px;
}
@media screen and (max-width: 1024px) {
  .recruit_link .recruit_link_box p {
    font-size: 1.2em;
    letter-spacing: 1px;
    text-shadow: 1px 2px 5px #333;
  }
}
.recruit_link .flow_link {
  background: url(../img/mv-sub4.jpg) no-repeat center/cover;
}
.recruit_link .Job-reqs_link {
  background: url(../img/mv-sub6.jpg) no-repeat center/cover;
}
.recruit_link .entry_link {
  background: url(../img/mv-sub2.jpg) no-repeat center/cover;
}
.recruit_link .flow_link, .recruit_link .Job-reqs_link, .recruit_link .entry_link {
  position: relative;
  transition: 0.3s;
}
.recruit_link .flow_link::after, .recruit_link .Job-reqs_link::after, .recruit_link .entry_link::after {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .recruit_link .flow_link::after, .recruit_link .Job-reqs_link::after, .recruit_link .entry_link::after {
    background: none;
  }
}
@media screen and (max-width: 480px) {
  .recruit_link .flow_link, .recruit_link .Job-reqs_link, .recruit_link .entry_link {
    height: 100px;
    overflow: hidden;
  }
}
.recruit_link .flow_link:hover::after, .recruit_link .Job-reqs_link:hover::after, .recruit_link .entry_link:hover::after {
  background: none;
  transition: 0.3s;
}

.flow {
  color: #fff;
  padding-bottom: 300px;
}
@media screen and (max-width: 1024px) {
  .flow {
    padding-bottom: 25px;
  }
}
.flow .flow_ttl {
  padding-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .flow .flow_ttl .en {
    left: 190px;
    font-size: 6rem;
    bottom: -15px;
  }
}
@media screen and (max-width: 480px) {
  .flow .flow_ttl .en {
    left: 30px;
    font-size: 4rem;
  }
}

.flow-cnt {
  display: flex;
}

.flow-cnt_txtbox {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .flow-cnt_txtbox {
    width: 100%;
  }
}
.flow-cnt_txtbox .flow-cnt_img {
  display: none;
}
@media screen and (max-width: 480px) {
  .flow-cnt_txtbox .flow-cnt_img {
    display: block;
    position: relative;
    max-width: 600px;
    overflow: hidden;
  }
  .flow-cnt_txtbox .flow-cnt_img::after {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .flow-cnt_txtbox .flow-cnt_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.flow-cnt_imgbox {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .flow-cnt_imgbox {
    display: none;
  }
}
.flow-cnt_imgbox .flow-cnt_img {
  position: relative;
  max-width: 580px;
  overflow: hidden;
  margin-bottom: 50px;
}
.flow-cnt_imgbox .flow-cnt_img::after {
  content: "";
  display: block;
  padding-top: 75%;
}
.flow-cnt_imgbox .flow-cnt_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow-cnt_time {
  width: 100px;
  height: 100px;
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  background: #f5f5f5;
  color: #131B59;
  margin-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow-cnt_ttlwrap {
  display: flex;
  align-items: center;
}

.flow-cnt_ttl {
  font-size: 1.5em;
}

.flow-cnt_txtbox_inner {
  padding-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .flow-cnt_txtbox_inner {
    padding-bottom: 100px;
  }
}
.flow-cnt_txtbox_inner .txt-box {
  padding-top: 30px;
}
@media screen and (max-width: 480px) {
  .flow-cnt_txtbox_inner .txt-box {
    padding-top: 20px;
    margin-bottom: 0;
  }
}

.entry {
  color: #fff;
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  .entry {
    padding-top: 100px;
  }
}

.entry_ttl {
  padding-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .entry_ttl .en {
    left: 190px;
    font-size: 6rem;
    bottom: -15px;
  }
}
@media screen and (max-width: 480px) {
  .entry_ttl .en {
    left: 150px;
  }
}

.entry_tel {
  padding-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .entry_tel {
    padding-bottom: 50px;
  }
}
.entry_tel .sub-ttl {
  font-size: 2em;
}
.entry_tel p {
  line-height: 1.7;
  padding-bottom: 30px;
}
.entry_tel a {
  color: #fff;
}

/* メールフォーム */
#mailformpro {
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 480px) {
  #mailformpro {
    width: 100%;
  }
}

.entryform {
  color: #fff;
}
.entryform .sub-ttl {
  font-size: 2em;
}
@media screen and (max-width: 480px) {
  .entryform .sub-ttl {
    font-size: 1.3em;
  }
}

/* 追加css */
form#mailformpro dl dt {
  border-top: solid 1px #36437d;
  padding: 15px 0px;
  width: 180px;
}
@media screen and (max-width: 480px) {
  form#mailformpro dl dt {
    width: 100%;
  }
}

form#mailformpro dl dd {
  border-top: solid 1px #36437d;
  padding: 15px 5px 15px 100px;
}
@media screen and (max-width: 480px) {
  form#mailformpro dl dd {
    border-top: none;
    padding: 15px 0;
  }
}

.mfp-namebox {
  display: flex;
}
.mfp-namebox .mlr {
  margin-left: 50px;
  margin-right: 20px;
}
@media screen and (max-width: 480px) {
  .mfp-namebox .mlr {
    margin-left: 0;
    margin-right: 10px;
  }
}
.mfp-namebox .mb10 {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .mfp-namebox .mb10 {
    margin-bottom: 10px;
  }
}

.remarks {
  width: 300px !important;
  height: 80px !important;
}
@media screen and (max-width: 480px) {
  .remarks {
    width: 300px;
    height: 100px;
  }
}

.ml50 {
  margin-left: 50px;
}
@media screen and (max-width: 480px) {
  .ml50 {
    margin-left: 0;
  }
}

.mfp {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}
@media screen and (max-width: 480px) {
  .mfp {
    justify-content: flex-start;
  }
}

input {
  vertical-align: middle;
}

.mfp_buttons button {
  color: #000;
}

#mfp_thanks {
  text-align: center;
  color: #fff;
  padding-bottom: 50px;
  font-size: 1.5em;
}

.privacy {
  width: 100%;
  height: 200px;
  overflow-y: scroll;
  padding: 20px;
  margin: 30px auto 10px;
  line-height: 1.6em;
  font-size: 16px;
  background-color: #fafafa;
  color: #777;
}
@media screen and (max-width: 480px) {
  .privacy {
    height: 150px;
  }
}

/*------------------------------------------------------------
　事業案内
------------------------------------------------------------*/
.wroks-cat {
  color: #fff;
  padding-top: 100px;
  padding-bottom: 150px;
}
@media screen and (max-width: 480px) {
  .wroks-cat {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.wroks-cat h3 {
  font-size: 1.7em;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 0px 55px;
}
@media screen and (max-width: 480px) {
  .wroks-cat h3 {
    font-size: 1.3em;
  }
}
.wroks-cat h3::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 2px;
  border-top: solid 1px #fff;
}
.wroks-cat h3::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 35px;
  height: 2px;
  border-top: solid 1px #fff;
}
.wroks-cat h3::before {
  left: 0;
}
.wroks-cat h3::after {
  right: 0;
}

.wroks-cat_img {
  max-width: 1000px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.wroks-cat_img::after {
  content: "";
  display: block;
  padding-top: 75%;
}
.wroks-cat_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.wroks-cat_thumbnail {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.wroks-cat_thumbnail li {
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  .wroks-cat_thumbnail li {
    margin-left: 15px;
    max-width: 109px;
  }
}
.wroks-cat_thumbnail li:first-child {
  margin-left: 0;
}

.thumbnail_item {
  position: relative;
  width: 200px;
  overflow: hidden;
  cursor: pointer;
}
.thumbnail_item::after {
  content: "";
  display: block;
  padding-top: 75%;
}
.thumbnail_item img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(1);
}

.bg-blue {
  background: #293066;
}

.pagetop {
  cursor: pointer;
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: 0.3s;
  color: #131b59;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 3px 6px #000;
}
@media screen and (max-width: 480px) {
  .pagetop {
    right: 0;
    bottom: 0;
    width: 60px;
    height: 60px;
    border-radius: 0%;
    box-shadow: none;
  }
}
.pagetop::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
}

.works_btn {
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  .works_btn {
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .works_btn {
    display: none;
  }
}
.works_btn ul {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .works_btn ul {
    flex-wrap: wrap;
  }
}
.works_btn ul li {
  flex: 1;
  padding: 0 5px;
}
@media screen and (max-width: 1024px) {
  .works_btn ul li {
    flex: none;
    width: 33.3333333333%;
    padding-bottom: 10px;
  }
}
.works_btn ul li a {
  color: #fff;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 220px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.works_btn ul li a::before {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transition: 0.2s ease 0s;
}
.works_btn ul li a::after {
  content: url(../img/yajirusi.svg);
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  transition: 0.2s ease 0.2s;
  height: 100%;
  transition: all 0.3s;
  transform: translateX(0) translateY(0);
  opacity: 0;
}
.works_btn ul li a:hover::before {
  width: 0%;
  border-left: 0px;
}
.works_btn ul li a:hover::after {
  right: 0;
  opacity: 1;
  transform: translateX(80%) translateY(0);
}
.works_btn ul li a:hover {
  text-decoration: none;
}

.works_btn.wrap {
  overflow: hidden;
}

.works_btn_sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .works_btn_sp {
    display: grid;
    align-items: center;
    position: relative;
  }
}
.works_btn_sp::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.works_btn_sp select {
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 230px;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: none;
  border-bottom: 2px solid #cccccc;
  background-color: #f3f3f3;
  color: #131b59;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
}
.works_btn_sp select:focus {
  outline: none;
}/*# sourceMappingURL=style.css.map */