@charset "utf-8";
/* CSS Document */

@media print{
   /*印刷用CSSで適用させる定義を記述*/
    .to_top{
        display: none;
    }
}

html {    
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 62.5%;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 1.5rem;
    -webkit-text-size-adjust: none;
	color: #000;
    overflow: hidden;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
	background-color: #F4F6FB;
}
/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}

#all_wrap {
	/*
	※ない方がいいかも
	overflow: hidden;*/
}

::-webkit-scrollbar-track {
	background: #333;
}
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-thumb {
	background: #ccc;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

*{
	margin: 0;
	padding: 0;
}

*:focus {
  outline: none;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: top;
	vertical-align: bottom;
}

.pc_hide {
	display: none !important;
}

.sp_hide {
}

a {
	font-size: 1.5rem;
	outline: none;
	color: #333333;
	text-decoration:none;
	transition: 0.3s;
	opacity: 1;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    cursor:pointer;
}

a:hover {
	opacity: 0.6;
}

/*電話番号のリンク（.tellink）はPCではOFF*/
a.tellink{
    pointer-events: none;
    color: #fff;
}
ul{
    list-style-type: none;
}
input, textarea{
    /*bodyと同じフォントcssを入れる*/
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
select::-ms-expand {
    display: none;
}
button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/*※アンカーリンクの着地点はCSSで調整*/
[id] {
  scroll-margin-top: 84px;
}

/*-----------------------------------------------------------*/
/*フォント*/

.barlow {
  font-family: "Barlow", sans-serif;
  font-style: normal;
}

.notosansjp {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

.mplus2 {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.roboto {
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
}

/*-----------------------------------------------------------*/
/*リンク（横幅・高さ指定無し）*/

a.btns{
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;	
}
a.btns:hover{
	opacity: 1.0;
}

a.btns.entry{
	width: calc( 100% - 43px );
	padding-left: 43px;
	background: url(./images/common/btn_bk01.jpg) 0 0 / cover no-repeat, #0099FF;
}
a.btns.entry::before{
	content: '';
	width: 78px;
	height: 78px;
	background: url("./images/common/arrow01.svg") 0 0 / contain no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 35px;
}
a.btns.entry:hover{
	background: #0099FF;
}
a.btns.entry > dl{
	display: flex;
	align-items: baseline;
	gap: 0 25px;
}
a.btns.entry > dl dt{
	font-size: 8.0rem;
	color: #B7F1FF;
	font-style: Italic;
	font-weight: 200;
}
a.btns.entry > dl dd{
	font-size: 2.5rem;
	color: #B7F1FF;
	font-weight: 600;
}

a.btns.normal{
	width: calc( 100% - 36px );
	padding-left: 36px;
	align-items: center;
	border: 1px solid #4976C6;
	box-sizing: border-box;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
	font-family: "Barlow", sans-serif;
	color: #4976C6;
	font-size: 3.8rem;
	font-weight: 200;
	font-style: italic;
	background: rgba(255,152,0,0.00);
}
a.btns.normal::before{
	content: '';
	width: 60px;
	height: 60px;
	background: url("./images/common/arrow02.svg") 0 0 / contain no-repeat;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 12px;
}
a.btns.normal:hover{
	background: #FF9800;
}

/*-----------------------------------------------------------*/
/*ヘッダー*/

#header_wrap {
width: 100%;
height: 84px;
z-index: 10;
position: fixed;
top: 0;
}
#header_wrap::before{
	content: '';
    width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}
#header_wrap #header{
    max-width: 1440px;
    width: 100%;
	height: 100%;
    margin: 0 auto;
    padding: 0 34px;
    box-sizing: border-box;
	display: flex;
	align-items: center;
}

#header_wrap #header .logo{
    position: relative;
	z-index: 0;
}
#header_wrap #g-nav ul{
    min-width: 635px;
	height: 100%;
	display: flex;
	align-items: center;
	gap: 0 50px;
    position: absolute;
    top: 0;
    right: 200px;
    margin: auto;
	margin-top: 10px;
}
#header_wrap #g-nav ul li{
}
#header_wrap #g-nav ul li a{
	font-size: 1.5rem;
	color: #4976C6;
	font-weight: 500;
	letter-spacing: 0.03em;
}

/*-----------------------------------------------------------*/
/*サブメニュー（採用専用メニュー）*/

.openrecruitbtn{
	position: absolute;
	top: 0;
	right: 0;
    width: 169px;
    height: 154px;
	z-index: 9;
	background: url("./images/common/btn_recruit_type2.svg") 0 0 / contain no-repeat, url(./images/common/btn_recruit_c.svg) 0 0 / contain no-repeat;
	transition: 0.3s;
    cursor:pointer;	
}
#all_wrap.recruit .openrecruitbtn{
	background: url(./images/common/btn_recruit.svg) 0 0 / contain no-repeat, url(./images/common/btn_recruit_h.svg) 0 0 / contain no-repeat, url(./images/common/btn_recruit_c.svg) 0 0 / contain no-repeat;
}
#all_wrap.recruit .openrecruitbtn:not(.active):hover{
	background: url(./images/common/btn_recruit_h.svg) 0 0 / contain no-repeat;
}
.openrecruitbtn.active{
	background: url(./images/common/btn_recruit_c.svg) 0 0 / contain no-repeat !important;
}

#r-nav{
    position: fixed;
	z-index: -1;
    width: 100%;
    height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
    background-color:#E1F9FF;
    top:0;
	left: 0;
	opacity: 0.0;
    transition: all 0.6s;
}
#r-nav.panelactive{
	opacity: 1.0;
	height: 100vh;
}
#r-nav.panelactive #r-nav-list::-webkit-scrollbar{
	display: none;
}
#r-nav #r-nav-list{
	max-width: 1040px;
    width: 100%;
	margin: 84px auto 0;
}
#r-nav #r-nav-list h2.hd{
	margin: 0 auto 0;
    font-family: "Barlow", sans-serif;
	font-size: 10.0rem;
	color: #4976C6;
	font-weight: 200;
	font-style: Italic;
	border-bottom: 1px solid #89DDFF;
}
/*メニュー中身*/
#header_wrap #r-nav ul{
    width: 100%;
	margin: 45px auto 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 35px 40px;
}
#header_wrap #r-nav ul li{
    position: relative;
	max-width: 230px;
	width: calc( 25% - 26px );
	height: 230px;
}
#header_wrap #r-nav ul li.career, #header_wrap #r-nav ul li.panf, #header_wrap #r-nav ul li.contact{
	height: 130px;
}
#header_wrap #r-nav ul li a{
    display: block;
	width: 100%;
	height: 100%;
}
#header_wrap #r-nav ul li a > span{
    display: none;
}
#header_wrap #r-nav ul li.message a{
	background: url(./images/common/recruitbtn01.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn01_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.movie a{
	background: url(./images/common/recruitbtn02.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn02_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.office a{
	background: url(./images/common/recruitbtn04.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn04_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.interview a{
	background: url(./images/common/recruitbtn03.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn03_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.working a{
	background: url(./images/common/recruitbtn05.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn05_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.data a{
	background: url(./images/common/recruitbtn06.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn06_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.works a{
	background: url(./images/common/recruitbtn07.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn07_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.fresh a{
	background: url(./images/common/recruitbtn08.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn08_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.career a{
	background: url(./images/common/recruitbtn09.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn09_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.panf a{
	background: url(./images/common/recruitbtn10.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn10_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.contact a{
	background: url(./images/common/recruitbtn11.svg) 0 0 / contain no-repeat, url(./images/common/recruitbtn11_h.svg) 0 0 / contain no-repeat;
}

#header_wrap #r-nav ul li a:hover{
	opacity: 1.0;
}
#header_wrap #r-nav ul li.message a:hover{
	background: url(./images/common/recruitbtn01_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.movie a:hover{
	background: url(./images/common/recruitbtn02_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.office a:hover{
	background: url(./images/common/recruitbtn04_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.interview a:hover{
	background: url(./images/common/recruitbtn03_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.working a:hover{
	background: url(./images/common/recruitbtn05_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.data a:hover{
	background: url(./images/common/recruitbtn06_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.works a:hover{
	background: url(./images/common/recruitbtn07_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.fresh a:hover{
	background: url(./images/common/recruitbtn08_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.career a:hover{
	background: url(./images/common/recruitbtn09_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.panf a:hover{
	background: url(./images/common/recruitbtn10_h.svg) 0 0 / contain no-repeat;
}
#header_wrap #r-nav ul li.contact a:hover{
	background: url(./images/common/recruitbtn11_h.svg) 0 0 / contain no-repeat;
}

#header_wrap #r-nav .banner{
	width: 100%;
	height: 130px;
	margin: 40px auto 50px;
}

/*-----------------------------------------------------------*/
/*コアページ（共通）*/

main#coa{
    width: 100%;
    max-width: none;
	margin: 125px 0 80px;
}

section > .inner{
    width: 100%;
    max-width: 1070px;
    padding: 0 15px;
    margin: auto;
    position: relative;
}
section > .inner.w1240{
    max-width: 1270px;
}

/*職種のclass*/
main.recruit_top .type.app, main.career .type.app, main.employee .type.app {
	color: #13B292;
}
main.recruit_top .type.infra, main.career .type.infra, main.employee .type.infra {
	color: #97AFC7;
}
main.recruit_top .type.development, main.career .type.development, main.employee .type.development {
	color: #0099FF;
}
main.recruit_top .type.intro, main.career .type.intro, main.employee .type.intro {
	color: #4976C6;
}
main.recruit_top .type.architect, main.career .type.architect, main.employee .type.architect {
	color: #887FCB;
}
main.recruit_top .type.support, main.career .type.support, main.employee .type.support {
	color: #FF9800;
}

/*リクルートサイト*/
#all_wrap.recruit section > .inner h2.hd{
	margin: 0 auto 50px;
}
#all_wrap.recruit section > .inner h2.hd dl{
	display: flex;
	flex-direction: column;
	gap: 0 0;
	color: #4976C6;
	padding: 0 0 20px;
	border-bottom: 1px solid #89DDFF;
}
#all_wrap.recruit section > .inner h2.hd dl dt{
	font-family: "Barlow", sans-serif;
	font-size: 10.0rem;
	font-weight: 200;
	font-style: italic;
}
#all_wrap.recruit section > .inner h2.hd dl dd{
	font-size: 2.0rem;
	font-weight: 700;
}

/*コーポレートサイト*/
#all_wrap.corporate main#coa{
	margin: 84px 0 80px;
}
#all_wrap.corporate #titleblock{
    display: flex;
	align-items: center;
	width: 100%;
	height: auto;
	min-height: 340px;
	background: url("./images/about/title.jpg") center top / cover no-repeat;
	aspect-ratio: 1440 / 340;
}
#all_wrap.corporate #titleblock dl{
	width: max-content;
	margin-left: 140px;
}
#all_wrap.corporate #titleblock dl dt{
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
	font-size: 10.0rem;
	line-height: 100%;
}
#all_wrap.corporate #titleblock dl dd{
	margin-top: 10px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #fff;
	font-size: 1.8rem;
	line-height: 100%;
}

#all_wrap.corporate #contentsflex{
    display: flex;
	max-width: 1030px;
	width: 100%;
	margin: 84px auto 0;
}
#all_wrap.corporate #contentsflex #sidebar{
    width: 200px;
    flex-shrink: 0;
}
#all_wrap.corporate #contentsflex #sidebar > ul{
    padding-right: 15px;
}
#all_wrap.corporate #contentsflex #sidebar > ul li a{
	display: flex;
	align-items: center;
    font-weight: 700;
	color: #4976C6;
	letter-spacing: 0.03em;
	line-height: 40px;
	font-size: 1.5rem;
}
#all_wrap.corporate #contentsflex #sidebar > ul li a::before{
    content: '';
	width: 5px;
	height: 5px;
	background-color: rgba(0,153,255,0.00);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;	
	margin-right: 10px;
	transition: 0.3s;
}
#all_wrap.corporate #contentsflex #sidebar > ul li a:hover{
	opacity: 1.0;
}
#all_wrap.corporate #contentsflex #sidebar > ul li a:hover::before{
	background-color: #0099FF;
}
#all_wrap.corporate #contentsflex #mainbody{
    flex: 1;
    min-width: 0;
}
#all_wrap.corporate #contentsflex #mainbody section > .inner{
    max-width: none;
    padding: 0;
}
#all_wrap.corporate section > .inner h3.hd{
	margin: 0 auto 50px;
}
#all_wrap.corporate section > .inner h3.hd dl{
	display: flex;
	flex-direction: column;
	gap: 0 0;
	color: #4976C6;
	padding: 0 0 20px;
	border-bottom: 1px solid #fff;
}
#all_wrap.corporate section > .inner h3.hd dl dt{
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #4976C6;
	font-size: 7.0rem;
	line-height: 100%;
}
#all_wrap.corporate section > .inner h3.hd dl dd{
	margin-top: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #4976C6;
	font-size: 2.0rem;
	line-height: 100%;
}


/*-----------------------------------------------------------*/
/*フッター*/

#footer_wrap{
}
#footer_wrap > .inner{
	max-width: 1083px;
	width: 100%;
	margin: 0 auto;
	padding: 0 0 82px;
	display: flex;
	justify-content: space-between;
}

#footer_wrap > .inner > .left{
	width: 36%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#footer_wrap > .inner > .left dl.logo{
	
}
#footer_wrap > .inner > .left dl.logo dt{
	
}
#footer_wrap > .inner > .left dl.logo dd{
	margin-top: 40px;
	font-size: 1.4rem;
	font-weight: 700;
	color: #4976C6;
	letter-spacing: 0.03em;
}
#footer_wrap > .inner > .left .copy{
	font-family: "M PLUS 2", sans-serif;
	font-size: 1.1rem;
	color: #4976C6;
	font-weight: 400;
	letter-spacing: 0.03em;
}

#footer_wrap > .inner > .right{
	width: 56%;
}
#footer_wrap > .inner > .right .sitemap{
	display: flex;
	justify-content: space-between;
}
#footer_wrap > .inner > .right .sitemap dl{
	display: flex;
	flex-direction: column;
	gap: 18px 0;
	width: fit-content;
}
#footer_wrap > .inner > .right .sitemap dl dt a{
	font-size: 1.6rem;
	color: #4976C6;
	font-weight: 700;
	letter-spacing: 0.03em;
}
#footer_wrap > .inner > .right .sitemap dl dd{
	display: flex;
	gap: 0 43px;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul{
	display: flex;
	flex-direction: column;
	gap: 5px 0;
	display: none;/*リクルートサイト公開時、非表示*/
}
/*
#footer_wrap > .inner > .right .sitemap dl:nth-of-type(2) dd > ul{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 1fr);
	gap: 5px 45px;
}
*/
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(2){
	grid-column-start: 1;
	grid-row-start: 2;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(3){
 grid-column-start: 1;
    grid-row-start: 3;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(4){
    grid-column-start: 1;
    grid-row-start: 4;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(5){
    grid-column-start: 1;
    grid-row-start: 5;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(6){
    grid-column-start: 1;
    grid-row-start: 6;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(7){
    grid-column-start: 1;
    grid-row-start: 7;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(8){
    grid-column-start: 2;
    grid-row-start: 1;
}
#footer_wrap > .inner > .right .sitemap dl dd > ul li:nth-child(9){
    grid-column-start: 2;
    grid-row-start: 2;
}
#footer_wrap > .inner > .right .sitemap dl dd a{
	font-size: 1.3rem;
	color: #4976C6;
	font-weight: 400;
	letter-spacing: 0.03em;
}

#footer_wrap > .inner > .right .address{
	margin: 70px auto 0;
	border-top: 1px solid #4976C6;
	padding-top: 38px;
	display: flex;
	justify-content: space-between;
}
#footer_wrap > .inner > .right .address > dl{
	width: fit-content;
	display: flex;
	flex-direction: column;
	gap: 18px 0;
}
#footer_wrap > .inner > .right .address > dl dt{
	font-size: 1.6rem;
	color: #4976C6;
	font-weight: 700;
	letter-spacing: 0.03em;
}
#footer_wrap > .inner > .right .address > dl dd{
	font-size: 1.3rem;
	color: #4976C6;
	font-weight: 400;
	line-height: 180%;
	letter-spacing: 0.03em;
}

/*-----------------------------------------------------------*/
/*to top*/

#pagetop {
    position: fixed;
	width: 100px;
	height: 100px;
    right: 5%;
    bottom: 5%;
    z-index: 10;
}
#pagetop a{
    display: flex;
	width: 100%;
	height: 100%;
	background: url(./images/common/totop.svg) 0 0 / contain no-repeat, url(./images/common/totop_h.svg) 0 0 / contain no-repeat;
}
#pagetop a:hover{
	opacity: 1.0;
	background: url(./images/common/totop_h.svg) 0 0 / contain no-repeat;
}

/*-----------------------------------------------------------*/
/*アニメーション*/

/*フェードアップ*/
.fadeUpTrigger, .afterloadfadeUp{
    opacity: 0;
}
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*ipad横向き時*/
@media screen and (max-width: 1500px) and (orientation: landscape) {
    
}/*ここまで*/

/*ipad縦向き時*/
@media screen and (min-width: 820px) and (orientation: portrait) {
 
}/*ここまで*/


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

