@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

main{
  overflow: visible;
}

/* ヘッダー */
.header{
  top: -70px;
}
.header-inner{
  width: 100%;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.header-inner h1{
  display: none;
}
.logo{
  opacity: 1;
}
.nav{
  overflow: visible;
  margin-left: 200px;
}
.nav ul{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li{
  list-style-position: unset;
  list-style-type: none;
  padding-left: 0;
}
.nav a{
  text-decoration: none;
  color: #000;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}
.nav a:hover{
  opacity: 0.7;
}
.entry-btn{
  height: 100%;
}
.entry-btn a{
  min-width: 150px;
  height: 100%;
  background: #2C74DA;
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  font-weight: 600;
  transition: background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.entry-btn a:hover{
  opacity: 0.7;
}

/* ハンバーガー */
.hamburger{
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer; 
  z-index: 1001;
}
.hamburger span{
  display: block;
  height: 3px;
  background: #a6b9c1;
  transition: 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1){
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2){
  opacity: 0;
}
.hamburger.active span:nth-child(3){
  transform: translateY(-7.5px) rotate(-45deg);
}
@media screen and (max-width: 900px){
.nav{
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease;
    margin-left: 0;
  }
.nav.active{
    display: flex;
    visibility: visible;
    opacity: 1;
  }
.nav ul{
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    background: rgba(46,68,78,0.9);
    height: 100%;
    justify-content: center;
    text-align: center;
  }
  .nav a{
    color: #fff;
  }
  .hamburger{
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }
}

/* 本来のヘッダー非表示*/
.DEVELOP779{
  display: none!important;
}
header#pattern2>nav{
  display: none!important;
}

/* MV非表示 */
#lv_outer{
  display: none!important;
}

/* ボタン装飾 */
.contents_btn01{
  overflow: visible;
}
.contents_btn01 a{
  min-width: 280px;
  transition: .3s;
  text-align: center;
  border-radius: 30px;
  background: #fff;
  font-size: 1.55rem;
  padding: 5px!important;
  border: 2px solid #2C74DA;
  color: #2C74DA!important;
  font-weight: bold;
  box-shadow: 5px 5px 0px 0px rgb(44, 116, 218, 50%);
  position: relative;
}
.contents_btn01 a::before{
  content: '';
  position: absolute;
  width: 40px;
  height: 2px;
  background: #2C74DA;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.contents_btn01 a::after{
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #2C74DA;
  right: 8px;
  top: 44%;
  transform: translateY(-50%) rotate(45deg);
}

/* 会社概要 */
#recruit_company+section{
  margin-top: 70px; /* 後で消す */
  position: relative;
}
#recruit_company+section::before{
  content: 'VISION';
  position: absolute;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  transform: skew(-10deg);
  opacity: 0.5;
  left: 0;
}
#recruit_company+section::after{
  content: 'MISSION';
  position: absolute;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  transform: skew(-10deg);
  opacity: 0.5;
  right: 0;
  top: 0;
}
#recruit_company+section .text_wrapper{
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 100px;
}
#recruit_company+section .text_wrapper .left{
  font-size: 5rem;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(50px);
}
#recruit_company+section .text_wrapper .left span{
  font-size: 0.7em;
  font-weight: 500;
}
#recruit_company+section .text_wrapper .center{
  font-size: 7rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
  transform: translateY(25px);
}
#recruit_company+section .text_wrapper .right{
  font-size: 5rem;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.4);
}
#recruit_company+section .text_wrapper .right span{
  font-size: 0.7em;
  font-weight: 500;
}
#recruit_company+section .text{
  color: #fff;
  margin-bottom: 40px;
}
#recruit_company+section .contents_btn01{
  text-align: left;
}

/* 働く環境 */
#environment+section{
  position: relative;
}
#environment+section::before{
  content: 'GROWTH';
  position: absolute;
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: #2C74DA;
  left: -13vw;
  top: 180px;
  transform: rotate(90deg) skew(-10deg);
}
#environment+section .main_subtitle span{
  font-size: 4rem;
  font-weight: bold;
  color: #2C74DA;
  line-height: 1;
  border-bottom: 3px solid #2C74DA;
  display: inline-block;
}
/* #environment+section .main_title{
  transform: translateX(250px);
} */
#environment+section .main_title>span{
  font-size: 8rem;
  font-weight: bold;
  color: #2C74DA;
  line-height: 1;
  border-bottom: 3px solid #2C74DA;
  display: inline-block;
}
#environment+section .box-wrapper{
  margin-top: 40px;
  margin-bottom: 100px;
  gap: 30px;
}
#environment+section .box-wrapper .box{
  width: calc(100% / 3 - 30px);
  background: #fff;
  border: 3px solid #2C74DA;
  padding: 20px 30px;
}
#environment+section .box-wrapper .box:nth-of-type(2){
  transform: translateY(70px);
}
#environment+section .box-wrapper .box:nth-of-type(3){
  transform: translateY(20px);
}
#environment+section .box-wrapper .box .title{
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: #2C74DA;
  position: relative;
}
#environment+section .box-wrapper .box .title::before{
  content: '';
  position: absolute;
  width: 70%;
  height: 3px;
  background: #2C74DA;
  bottom: -15px;
  left: -65px;
}
#environment+section .box-wrapper .box .text{
  margin-top: 25px;
}

/* 福利厚生 */
#benefits+section .heading.block_header_6 .h{
  font-size: 10rem;
  font-weight: 900;
  color: #fff;
  transform: skew(-10deg);
  opacity: 0.8;
}
#benefits+section .heading.block_header_6 .h::before{
  content: none;
}
#benefits+section .title_small>span{
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  border-bottom: 3px solid #fff;
  display: inline-block;
}
#benefits+section .title_small>span span{
  font-size: 0.6em;
}
#benefits+section .title_big>span{
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  border-bottom: 3px solid #fff;
  display: inline-block;
}
#benefits+section .box-wrapper{
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}
#benefits+section .box{
  width: calc(100% / 4 - 15px);
  background: #fff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
#benefits+section .box .img{
  width: 100%;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
#benefits+section .box .img img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#benefits+section .box .title{
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 社員インタビュー */
#people_ttl+section .heading.block_header_6 .h{
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  color: #fff;
  transform: skew(-10deg);
  opacity: 0.8;
}
#people_ttl+section .heading.block_header_6 .h::before{
  content: none;
}
#people_ttl+section .title_big>span{
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  border-bottom: 3px solid #fff;
  display: inline-block;
}
#people_ttl+section .title_big>span span,
#people_ttl+section .title_small>span span{
  font-size: 0.6em;
}
#people_ttl+section .title_small>span{
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  border-bottom: 3px solid #fff;
  display: inline-block;
}

#people+div .wrapper_item{
  overflow: visible;
}
#people+div .inner_item{
  background: #fff;
  box-shadow: 2px 2px 4px 0px rgb(0, 0, 0, 0.3);
}
#people+div .inner_item a{
  height: 200px;
  background: #1E48A2;
}
#people+div .inner_item .inner_item_txt{
  margin-top: 0;
  padding: 20px 20px 10px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#people+div .inner_item .inner_item_txt>p{
  flex-grow: 1;
}
#people+div .inner_item .inner_item_txt>div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 3px solid #2C74DA;
  margin-top: 15px;
  padding-top: 15px;
}
#people+div .inner_item .inner_item_txt>div p:nth-of-type(1){
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0;
}
#people+div .inner_item .inner_item_txt>div p:nth-of-type(2){
  background: #2C74DA;
  padding: 10px;
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

/* 事業 */
#business+section .title_small>span{
  font-size: 5rem;
  font-weight: bold;
  color: #2C74DA;
  line-height: 1;
  border-bottom: 3px solid #2C74DA;
  display: inline-block;
}
#business+section .title_big>span{
  font-size: 8rem;
  font-weight: bold;
  color: #2C74DA;
  line-height: 1;
  border-bottom: 3px solid #2C74DA;
  display: inline-block;
}
#business+section .text{
  color: #2C74DA;
  font-size: 2rem;
  font-weight: bold;
}

/* 募集要項 */
#recruit+section .heading.block_header_6 .h{
  font-size: 8rem;
  font-weight: 900;
  color: #fff;
  transform: skew(-10deg);
  margin-bottom: 0;
  padding-bottom: 0;
}
#recruit+section .heading.block_header_6 .h::before{
  content: none;
}
#recruit+section .heading.block_header_6 p{
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
#recruit+section .wrapper_item{
  width: 70%;
  margin: 0 auto;
}
#recruit+section .wrapper_item .inner_item_img{
  max-width: 100%;
  margin-bottom: 0;
  position: relative;
}
#recruit+section .wrapper_item .inner_item_img::before{
  content: 'WEBコンサルティング営業';
  position: absolute;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#recruit+section .wrapper_item .inner_item_img img{
  object-fit: cover;
  height: 150px;
}
#recruit+section .wrapper_item .inner_item_txt .table-wrap{
  background: #fff;
  padding: 40px;
  margin-bottom: 40px;
}
#recruit+section .wrapper_item .inner_item_txt .table-wrap table{
  max-width: 100%!important;
  border: none;
}
#recruit+section .wrapper_item .inner_item_txt .table-wrap table tr td:nth-child(1){
  border: none;
  border-top: 2px solid #2C74DA;
  padding: 5px 10px 5px 30px;
}
#recruit+section .wrapper_item .inner_item_txt .table-wrap table tr td:nth-child(2){
  border: none;
  border-top: 1px solid #2C74DA;
  padding: 5px 10px 5px 20px;
}
#recruit+section .wrapper_item .inner_item_txt .table-wrap table tr:last-of-type td:nth-child(1){
  border-bottom: 2px solid #2C74DA;
}
#recruit+section .wrapper_item .inner_item_txt .table-wrap table tr:last-of-type td:nth-child(2){
  border-bottom: 1px solid #2C74DA;
}

/* フロー */
#flow+section .heading.block_header_6 .h{
  font-size: 8rem;
  font-weight: 900;
  color: #fff;
  transform: skew(-10deg);
  margin-bottom: 0;
  padding-bottom: 0;
}
#flow+section .heading.block_header_6 .h::before{
  content: none;
}
#flow+section .heading.block_header_6 p{
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
#flow+section .box-wrapper{
  gap: 30px;
}
#flow+section .box{
  width: calc((100% - 60px)  / 3);
  background: #fff;
  text-align: center;
  position: relative;
}
#flow+section .box::after{
  content: '▶︎';
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  background: #2C74DA;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 60%;
  transform: translateY(-50%);
  right: -40px;
  z-index: 1;
}
#flow+section .box:last-of-type::after{
  content: none;
}
#flow+section .box p:nth-of-type(1){
  background: #2C74DA;
  padding: 10px 0;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
#flow+section .box p:nth-of-type(2){
  font-size: 2rem;
  font-weight: bold;
}
#flow+section .box p:nth-of-type(3){
  border: 1px solid #2C74DA;
  display: inline-block;
  padding: 5px 20px;
  color: #2C74DA;
  font-weight: bold;
  margin-bottom: 20px;
  min-width: 100px;
}
#flow+section .text{
  margin-top: 30px;
}

/* お知らせ */
#recruit_news+div .content_wrapper{
  display: flex;
  justify-content: space-between;
}
#recruit_news+div .heading.block_header_6 .h{
  font-size: 8rem;
  font-weight: 900;
  color: #2C74DA;
  transform: skew(-10deg);
  margin-bottom: 0;
  padding-bottom: 0;
}
#recruit_news+div .heading.block_header_6 .h::before{
  content: none;
}
#recruit_news+div .heading.block_header_6 p{
  font-size: 3rem;
  color: #2C74DA;
  font-weight: bold;
  line-height: 1;
}
#recruit_news+div ul li a>p:before{
  content: none;
}
#recruit_news+div ul li:nth-of-type(1){
  border-top: none;
}
#recruit_news+div ul>li{
  border-bottom: 1px solid #2C74DA;
}

/* バナー */
#banner+section .title{
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}
#banner+section .title span{
  font-size: 6rem;
}
#banner+section .inner_item_txt>div{
  display: flex;
  gap: 50px;
  margin-top: 20px;
}
#banner+section .inner_item_txt>div .text{
  border: 1px solid #fff;
  background: rgba(44, 116, 218, 0.8);
  padding: 10px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}

#banner+section .inner_item_txt>div .text span{
  font-size: 4rem;
}
#banner+section .contents_btn01 a{
  min-width: 300px;
  background: #FFFF00;
}
#banner+section .contents_btn01 a::before,
#banner+section .contents_btn01 a::after{
  content: none;
}
