@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Poppins:wght@700&display=swap');
html {
  font-size: 62.5%; /*16px x62.5%=10px*/
  overflow-x: hidden;
}
body {
  color: #111111;
  	font-size: 1.6rem;
	line-height: 1.65;
  	font-family: 'Noto Sans JP', 'Poppins', sans-serif;
}
* {
  box-sizing: border-box;
}
a {
  color: #efefef;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.inner {
  max-width: 960px;
  margin: auto;
}
.sp {
  display: none;
}



/*-----------------------
*
*共通エリア 
*
*-------------------------*/

/*========= 流れるテキスト左から右 ===============*/

/*全共通*/

.slide-in {
	overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:1.0s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}



.fadein-trgger{
	opacity: 0;
}
.fade-in {
animation-name: fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}



@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.section-title {
	font-family: Poppins;
   font-weight: 700;
   font-size: 5.5rem;
   letter-spacing: 0.1em;
   color: #fe1200;
   text-transform: uppercase;
   margin-top: 0px;
   margin-bottom: 20px;
   text-align: left;
}

.section-subtitle{
	font-size: 2.4rem;
	font-weight: 700;
	margin-bottom: 80px;
	
}

.gray_bg{
	background-color: #efefef;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 120px;
}

.wht_bg{
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 120px;
}


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


/*-----------------------
*
*btn 
*
*-------------------------*/

.btn {
	font-family: Poppins;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
  	font-size: 1.8rem;
  	display: block;
  	width: 100%;
  	max-width: 280px;
  	padding: 16px 0;
	border-radius: 100vh;
	background-color: #fe1200;
  	color: #ffffff;
  	margin: 0px auto 0px;
}
.btn:hover{
	background-color: #afafaf;
	color: #ffffff;
}




/*-----------------------
*
*navigation
*
*-------------------------*/


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(239,239,239,0.9);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	font-family: Poppins;
	font-weight: 700;
	color: #fe1200;
	font-size: 2.4rem;
	text-decoration: none;
	padding:20px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.nav-insta{
	width: 36px;
	fill: #f2e404;
}

.navlogo{
	width: 60%;
}

/*==================================================
　5-2-2 ボタン：2本線が×に
===================================*/

/*ボタン外側*/
.openbtn{
	caret-color: transparent;
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*ボタン内側*/

.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
	background-color: #fe1200;
	
  }


.openbtn span:nth-of-type(1) {
	top:22px;	
  	width: 50%;
	
}

.openbtn span:nth-of-type(2) {
	top:29px;
  	width:50%;
	
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn.active span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

/*-----------------------
*
*header_logo
*
*-------------------------*/

.header-logo {
	position: fixed;
	z-index: 10000;
  	width: 10%;
	top:28px;
	margin-left: 1.45%;
	
	
}


/*-----------------------
*
*mv
*
*-------------------------*/
.mv {
  width: 100%;
/*	top: 4.16%;*/
  height: 41.666vw;
  position: relative;
}


.mv-ph{
	background-image: url("../images/pckv.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 41.666vw;
	
}
.mv-title {
	position: absolute;
	width: 50%;
	height: 36.25%;
	top: 54.375%;
	bottom: 10.375%;
	left: 25%;
	right: 25%;
	margin: auto;

}



/*-----------------------
*
*MESSAGE
*-------------------------*/

.message_area{
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 40px;
		
}

.text{
	width: 51%;
}

.post{
	font-family: Poppins;
	font-size: 2.2rem;
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 2%;
	text-align: left;
}

.message_name{
	font-size: 2.4rem;
	font-weight: 700;
	padding-bottom: 1%;
	text-align: left;
	
}

.english_name{
	font-family: Poppins;
	font-size:1.2rem;
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 4%;
	text-align: left;
	
}

.lead-text {
  	line-height: 2.2;
	text-align: left;

}

.area_ph{
	align-items: flex-start;
	width: 41.66%;
	height:78.90%;
}



/*-----------------------
*
*PROBLEM
*-------------------------*/

.problem_area{
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	justify-content: space-between;
}

.probrem_icon{
	align-items: flex-start;
	width: 30.52%;
	height: fit-content;
	margin-bottom: 2%;
}



/*-----------------------
*
*SOLUTION
*-------------------------*/

.solution_list{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4%;
	
}

.solution_list:last-of-type{
	margin-bottom: 8%;
}


.solution_icon{
	width: 26.04%;
}

.solution_text{
	width: 69%;
}

.list_title{
	font-weight: 700;
	font-size: 2.8rem;
	padding-bottom: 4%;
}

.namber{
	font-family: Poppins;
	font-weight: 700;
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	padding-right: 3%;
}









/*-----------------------
*
*VOICE
*-------------------------*/


.slider {
  	position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}

.slider .slick-slide {
    margin:0 20px;
}

.slick-arrow:before{
	content:""!important;
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #bcbcbc;/*矢印の色*/
    border-right: 2px solid #bcbcbc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:-0.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:-0.5%;
    transform: rotate(45deg);
}







.voice_area{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.voice_list{
	position: relative;
	display: inline-block;
	background-color: #ffffff;
	width: 47.91%;
	height: 480px;
	border-radius: 30px;
	
	
}



.profile_ph{
	position: absolute;
	display: inline-block;
	top:7.72%;
	left: 32.87%;
	width: 100%;
	height: auto;
	
}



.voice_text{
	position: absolute;
	display: inline-block;
	top: 43.47%;
	text-align: left;
	padding: 0 40px;
}


.name{
	font-weight: 700;
	
}

.Profile_text{
	font-size: 1.4rem;
}





/*-----------------------
*
*ADVANTAGE
*-------------------------*/

.advantage_list{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8%;
	
}

.advantage_list:nth-of-type(2){
	flex-direction: row-reverse;
}

.advantage_list:last-of-type{
	margin-bottom: 0;
}


.advantage_ph{
	width: 47.91%;
}

.advantage_text{
	width: 47.91%;
}

.advantagelist_title{
	font-weight: 700;
	font-size: 2.4rem;
	padding-bottom: 4%;
}

.namber_2{
	font-family: Poppins;
	font-weight: 700;
	font-size: 3.2rem;
	letter-spacing: 0.1em;
	padding-bottom: 1%;
}




/*-----------------------
*
*CONSULT
*-------------------------*/

.Consult_bg{
	background-image: url("../images/pc_consultbg.jpg");
	background-repeat: no-repeat;
	background-position: center 50%;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 120px;
	
}

.entryflow{
	width: 100%;
	margin-bottom: 80px;
}




/*-----------------------
*
*CHANGE JOBS
*-------------------------*/

.job_area{
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	margin-bottom: 80px;
}


.job_ph{
	width: 41%
}






/*-----------------------
*
*footer
*
*-------------------------*/

.footer{
	background-color: #111111;
	background-size: cover;
}

.copyright{
	color: #ffffff;
	font-family: Poppins;
   	font-weight: 700;
	text-align: center;
	font-size: 1.2rem;
	padding: 20px 0 20px 0;
  
}





/*-----------------------
*
*sp
*
*-------------------------*/

@media screen and (max-width:768px) {
  body {
    font-size: 1.3rem;
    line-height: 1.65;
  }
  .inner {
    width: 84%;
/*    padding: 9.6%;*/
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }

/*-----------------------
*
*sp共通エリア 
*
*-------------------------*/	
	
	
.section-title {
	font-family: Poppins;
   font-weight: 700;
   font-size: 3.2rem;
   letter-spacing: 0.1em;
   color: #fe1200;
   text-transform: uppercase;
   margin-top: 0px;
   margin-bottom: 8px;
   text-align: left;
}

.section-subtitle{
	font-size: 1.7rem;
	font-weight: 700;
	margin-bottom: 40px;
	
}

.gray_bg{
	background-color: #efefef;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 60px;
}

.wht_bg{
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 50px;
	padding-bottom: 60px;
}


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




/*-----------------------
*
*sp_btn 
*
*-------------------------*/
	
	
.btn {
	font-family: Poppins;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
  	font-size: 1.4rem;
  	display: block;
  	width: 100%;
  	max-width: 180px;
  	padding: 10px 0;
	border-radius: 100vh;
	background-color: #fe1200;
  	color: #ffffff;
  	margin: 0px auto 0px;
}	
	
	

	
	

/*-----------------------
*
*sp_navigation
*
*-------------------------*/
	
#g-nav li a{
	font-family: Poppins;
	font-weight: 700;
	color: #fe1200;
	font-size: 1.8rem;
	text-decoration: none;
	padding:20px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.nav-insta{
	width: 28px;
	fill: #f2e404;
}

.navlogo{
	width: 80%;
}
	
	


	
	
/*-----------------------
*
*sp_header_logo
*
*-------------------------*/

.header-logo {
	position: fixed;
	z-index: 10000;
  	width: 24%;
	top: 28px;
	margin-left: 4.26%;
	
	
}

	
/*-----------------------
*
*sp_mv
*
*-------------------------*/
	
.mv {
  width: 100%;
/*	top: 4.16%;*/
  height: 160vw;
  position: relative;
}


.mv-ph{
	background-image: url("../images/sp_kv.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 160vw;
	
}
.mv-title {
	position: absolute;
	width: 84%;
	height: 16.25%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;

}


	
	
/*-----------------------
*
*SP_MESSAGE
*-------------------------*/

.message_area{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 40px;
		
}

.text{
	width: 100%;
}

.post{
	font-family: Poppins;
	font-size: 1.5rem;
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 1%;
	text-align: left;
}

.message_name{
	font-size: 1.7rem;
	font-weight: 700;
	padding-bottom: 1%;
	text-align: left;
	
}

.english_name{
	font-family: Poppins;
	font-size:1.0rem;
	text-transform: uppercase;
	font-weight: 700;
	padding-bottom: 3%;
	text-align: left;
	
}	


.lead-text {
  	line-height: 2.2;
	text-align: left;

}

.area_ph{
	width:80%;
	height:auto;
}
	
	
	
/*-----------------------
*
*SP_PROBLEM
*-------------------------*/

.problem_area{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.probrem_icon{
	width: 46.50%;
	margin-bottom: 8%;
}

	
	
	
/*-----------------------
*
*SP_SOLUTION
*-------------------------*/

.solution_list{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	margin-bottom: 10%;
	
}

.solution_list:last-of-type{
	margin-bottom:14%;
}


.solution_icon{
	width: 39.68%;
	margin: 0 auto;
}

.solution_text{
	width: 100%;
}

.list_title{
	font-weight: 700;
	font-size: 1.9rem;
	padding-bottom: 2%;
}

.namber{
	font-family: Poppins;
	font-weight: 700;
	font-size: 2.7rem;
	letter-spacing: 0.1em;
	padding-right: 3%;
}

	
	

	
	
/*-----------------------
*
*SP_VOICE
*-------------------------*/

.slider {
  	position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
}

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #bcbcbc;/*矢印の色*/
    border-right: 2px solid #bcbcbc;/*矢印の色*/
    height: 20px;
    width: 20px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:-1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:-1.5%;
    transform: rotate(45deg);
}





.voice_area{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.voice_list{
	position: relative;
	display: inline-block;
	background-color: #ffffff;
	width: 100%;
	height: 470px;
	border-radius: 15px;
	
	
}



.profile_ph{
	position: absolute;
	display: inline-block;
	top: 6.14%;
	left: 25%;
	width: 100%;
	height: auto;
	
}



.voice_text{
	position: absolute;
	display: inline-block;
	top: 43.66%;
	text-align: left;
	padding: 0 20px;
}


.name{
	font-weight: 700;
}

.Profile_text{
	font-size: 1.3rem;
}	
	
	
	
	
/*-----------------------
*
*SP_ADVANTAGE
*-------------------------*/

.advantage_list{
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	margin-bottom: 10%;
	
}

.advantage_list:nth-of-type(2){
	flex-direction: column;
}

.advantage_list:last-of-type{
	margin-bottom: 0;
}


.advantage_ph{
	width: 100%;
}

.advantage_text{
	width: 100%;
	margin-bottom: 5%;
}

.advantagelist_title{
	font-weight: 700;
	font-size: 1.9rem;
	padding-bottom: 2%;
}

.namber_2{
	font-family: Poppins;
	font-weight: 700;
	font-size: 2.7rem;
	letter-spacing: 0.1em;
	padding-bottom: 0;
}





/*-----------------------
*
*SP_CONSULT
*-------------------------*/

.Consult_bg{
	background-image: url("../images/sp_consultbg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top:  50px;
	padding-bottom: 60px;
	
}


	
	
.entryflow{
	width: 100%;
	margin-bottom: 40px;
}
	
	.consul_btn{
		margin-top: 40px;
	}	
	
	
/*-----------------------
*
*SP_CHANGE JOBS
*-------------------------*/

.job_area{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	margin-bottom: 40px;
}


.job_ph{
	width: 100%;
	margin-top: 40px;
		
}
	
	
	
	


	
/*-----------------------
*
*sp_footer
*
*-------------------------*/

.footer{
	background-color: #111111;
	background-size: cover;
}

.copyright{
	color: #ffffff;
	font-family: Poppins;
   	font-weight: 700;
	text-align: center;
	font-size: 1.0rem;
	padding: 10px 0 10px 0;
  
}




	
	



	
	
	
	
}

@keyframes gnaviAnime{
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}






  
