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

.move2{
	opacity: 0;
	}

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



@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.section-header {
   margin-top: 120px;
   margin-bottom: 120px;	
}
.section-title {
   font-family: Poppins;
   font-weight: 500;
   font-size: 6.0rem;
   letter-spacing: 0.1em;
   color: #333333;
   text-transform: uppercase;
   margin-top: 0px;
   margin-bottom: 80px;
   text-align: center;
}
.lead-text {
  line-height: 2.5;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;	
}

.section-text {
  line-height: 1.78;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 41.66%;

}
.btn_text{
	line-height: 1.78;
	text-align: center;
	margin-bottom: 40px;
}

.section_ph{
	width: 54.16%;
	height: auto;
}

.text-center {
  text-align: center;
}
.copyright {
  color: #333333;
  padding-bottom: 20px;
}

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


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

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(255,255,255,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: 500;
	color: #333333;
	font-size: 2.4rem;
	text-decoration: none;
	padding:20px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.nav-insta{
	width: 36px;
	fill: #333333;
}
/*==================================================
　5-2-2 ボタン：2本線が×に
===================================*/

/*ボタン外側*/
.openbtn{
	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: #000000;
	
  }


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

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

/*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%;
}

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


.mv-ph{
	background-image: url("../images/pc_mv.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	height: 46.875vw;
	
}
.mv-logo {
	position: absolute;
	width: 29.79%;
	height: 17.55%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;

}





/*-----------------------
*
*consept
*-------------------------*/
.main-title {
  font-family: Poppins;
  font-weight: 500;
  font-size: 6.0rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #333333;
  text-transform: uppercase;
  margin-top: 120px;
  margin-bottom: 60px;
  text-align: center;
	
}

/*-----------------------
*
*ABOUT US
*-------------------------*/
.about_bg{
	background-image: url("../images/about_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 120px;
}

.about_area{
	display: flex;
	justify-content: space-between;
	
}

.career_title{
	font-size: 2.0rem;
	font-weight: 500;
	margin-top: 40px;
	
}
.career{
	margin-top: 20px;
}

.career_list{
	padding-bottom: 10px;

}
li:last-child{
	padding-bottom: 0px;
}




/*-----------------------
*
*SYSTEM
*-------------------------*/

.system_area1{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-bottom:  100px;
}

.system_text{
	width: 41.66%;
}

.number{
	font-family: Poppins;
    font-weight: 500;
	font-size: 6.0rem;
	padding-bottom: 40px;
}

.text{
	line-height: 1.78;
    margin-top: 0px;
    margin-bottom: 0px;
	
}

.system_area2{
	display: flex;
	justify-content: space-between;
    margin-bottom: 100px;
	
}

.subtitle_area{
	display: flex;
	justify-content: space-between;
}

.subtitle{
	font-family: Poppins;
    font-weight: 500;
	font-size: 3.4rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding-left: 24px;
	
	
}



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

.btn {
	font-family: Poppins;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
  	font-size: 1.8rem;
  	display: block;
  	width: 100%;
  	max-width: 280px;
  	padding: 16px 0;
	border-width: 1px;
	border-style: solid;
	border-color: #333333;
  	color: #333333;
  	margin: 0px auto 0px;
}
.btn:hover{
	border-color: #bebebe;
	color: #bebebe;
}



/*-----------------------
*
*ACCESS
*-------------------------*/

.access_bg{
	background-image: url("../images/access_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 120px;
}

.access_area{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-top: 80px;
}


.address_title{
	font-size: 2.0rem;
	font-weight: 500;
	padding-bottom: 20px;
}

.address{
	font-style: normal;
	padding-bottom: 40px;
}



/*-----------------------
*
*CONTACT
*-------------------------*/
.contact_bg{
	background-image: url("../images/contact_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 120px;
}


/*-----------------------
*
*btn2 
*
*-------------------------*/

.btn2 {
	font-family: Poppins;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
  	font-size: 1.8rem;
  	display: block;
  	width: 100%;
  	max-width: 280px;
  	padding: 16px 0;
	border-width: 1px;
	border-style: solid;
	border-color: #333333;
  	color: #333333;
  	margin: 40px auto 0px;
}
.btn2:hover{
	border-color: #FFFFFF;
	color: #ffffff;
}


/*-----------------------
*
*ONLINE STORE
*-------------------------*/

.onlinestore_bg{
	background-image: url("../images/onlinestore_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 120px;
}





/*-----------------------
*
*COMPANY
*-------------------------*/

.company_area{
	display: flex;
	justify-content: space-between;
	
}


.company_title{
	font-size: 2.0rem;
	font-weight: 500;
	padding-bottom: 20px;
}





/*-----------------------
*
*CORPORATE PHILOSOPHY
*-------------------------*/

.corporate_bg{
	background-image: url("../images/corporate_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 120px;
	
}

.lead-title{
	font-family: Poppins;
    font-weight: 500;
    font-size: 3.8rem;
	margin-bottom: 40px;

}






/*-----------------------
*
*footer
*
*-------------------------*/
.footer{
	margin-top: 30px;
}

.footer-logo{
	width: 15.83%;
	margin: 0 auto;
	padding-bottom: 30px;
}
.insta_link{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

.footer_insta{
	width: 2%;
	
}
.url_text{
	font-size: 1.4rem;
	padding-left: 8px;
}




.copyright{
	margin-top: 20px;
	text-align: center;
	font-size: 1.2rem;
  
}





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

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

/*-----------------------
*
*sp共通エリア 
*
*-------------------------*/	
	
.section-header {
   margin-top: 60px;
   margin-bottom:80px;	
}
.section-title {
   font-family: Poppins;
   font-weight: 500;
   font-size: 3.0rem;
   letter-spacing: 0.1em;
   line-height: 1.2; 
   color: #333333;
   text-transform: uppercase;
   margin-top: 0px;
   margin-bottom: 40px;
   text-align: center;
}
.lead-text {
  line-height: 2.5;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: center;	
}

.section-text {
  line-height: 1.78;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;

}
.btn_text{
	line-height: 1.78;
	text-align: center;
	margin-bottom: 20px;
}

.section_ph{
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

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

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


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

}	
	
	

	
	

/*-----------------------
*
*sp_consept
*-------------------------*/
.main-title {
  font-family: Poppins;
  font-weight: 500;
  font-size: 3.0rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #333333;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
	
}
	

	
/*-----------------------
*
*sp_ABOUT US
*-------------------------*/
.about_bg{
	background-image: url("../images/sp_about_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 60px;
	padding-bottom: 80px;
}

.about_area{
	display: flex;
	flex-direction: column;
	
}

.career_title{
	font-size: 1.5rem;
	font-weight: 500;
	margin-top: 40px;
	
}
.career{
	margin-top: 10px;
}

.career_list{
	padding-bottom: 5px;

}
li:last-child{
	padding-bottom: 0px;
}



	
/*-----------------------
*
*sp_SYSTEM
*-------------------------*/

.system_area1{
	display: flex;
	flex-direction: column;
	margin-bottom:  50px;
}

.system_text{
	width: 100%;
}

.number{
	font-family: Poppins;
    font-weight: 500;
	font-size: 3.0rem;
	padding-bottom: 0px;
}

.text{
	line-height: 1.78;
    margin-top: 0px;
    margin-bottom: 0px;
	
}

.system_area2{
	display: flex;
	flex-direction: column;
	margin-bottom:  50px;
	
}

.subtitle_area{
	display: flex;
	justify-content: space-between;
}

.subtitle{
	font-family: Poppins;
    font-weight: 500;
	font-size: 2.0rem;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding-left: 12px;
	
	
}
	
	

/*-----------------------
*
*sp_btn 
*
*-------------------------*/

.btn {
	font-family: Poppins;
	letter-spacing: 0.1em;
	text-transform: uppercase;
  	font-size: 1.4rem;
  	font-weight: 500;
  	display: block;
  	width: 100%;
  	max-width: 180px;
  	padding: 10px 0;
	border-width: 1px;
	border-style: solid;
	border-color: #333333;
  	color: #333333;
  	margin: 0px auto 0px;
}	
	

/*-----------------------
*
*sp_ACCESS
*-------------------------*/

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

.access_area{
	display: flex;
	flex-direction: column;
	margin-top: 20px;
}


.address_title{
	font-size: 1.5rem;
	font-weight: 500;
	padding-bottom: 10px;
}

.address{
	font-style: normal;
	padding-bottom: 20px;
}
	
	
	
/*-----------------------
*
*sp_CONTACT
*-------------------------*/
.contact_bg{
	background-image: url("../images/sp_contact_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 60px;
	padding-bottom: 80px;
}	
	
	
	
/*-----------------------
*
*sp_btn2
*
*-------------------------*/
	
.btn2 {
	font-family: Poppins;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
  	font-size: 1.4rem;
  	display: block;
  	width: 100%;
  	max-width: 180px;
  	padding: 10px 0;
/*	background-color: #ffffff;*/
	border-width: 1px;
	border-style: solid;
	border-color: #333333;
  	color: #333333;
  	margin: 20px auto 0px;
}
	


/*-----------------------
*
*sp_ONLINE STORE
*-------------------------*/

.onlinestore_bg{
	background-image: url("../images/sp_onlinestore_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 60px;
	padding-bottom: 80px;
}	
	
	
/*-----------------------
*
*sp_COMPANY
*-------------------------*/

.company_area{
	display: flex;
	flex-direction: column;
	
}


.company_title{
	font-size: 1.5rem;
	font-weight: 500;
	padding-bottom: 10px;
}
	
	
	
/*-----------------------
*
*sp_CORPORATE PHILOSOPHY
*-------------------------*/

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

.lead-title{
	font-family: Poppins;
    font-weight: 500;
    font-size: 2.0rem;
	margin-bottom: 20px;

}	
	
	

	
	

/*-----------------------
*
*sp_footer
*
*-------------------------*/	
.footer{
	margin-top: 40px;
}	
	
.footer-logo{
	width: 30.8%;
	margin: 0 auto;
	padding-bottom: 15px;
}
	
.insta_link{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}
	
.footer_insta{
	width: 4%;
	
}
.url_text{
	font-size: 1.2rem;
	padding-left: 8px;
}
	
.copyright{
	text-align: center;
	font-size: 1.0rem;
  
}	

	

	
	
	
	





	
	
}

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






  
