@charset "UTF-8";

/* ===================================
	File Name   : top.css
	Description : Top Page CSS
	Editor      : Bface Chiba
	Last Editor : Bface Chiba
	
	Update Description :
	[2022/08/08] 新規制作
====================================== */

/*========== Style Contents ==========

	1. Redefinition
  2. Section [top_hero]
  3. Section [top_date]
  5. Section [top_structure]
  6. Section [top_contact]
  11. Section [top_documents]
  12. Other

====================================== */



/*===== 1. Redefinition =====*/
/* box */
main { margin: 0;}

@media (max-width: 768px) {
  /* box */
}


/*===== 2. Section [top_hero]  =====*/
#top_hero {
  padding: 0;
}
#top_hero #main_announce{
  margin: 0 auto;
}
#top_hero .slick-slide{
  width: 100%;
  height: auto;
}
#top_hero .slide a{
  position: relative;
	background: #e3e3e3;
	padding: 0.5rem;
	width: 100%;
}

/*スライダーあり用*/
/*
#top_hero .slick-slide:not(.slick-center){
	position: relative;
}

#top_hero .slick-slide:not(.slick-center)::before {
	position: absolute;
	content: '';
  top: 1.0rem;
  right: 1.0rem;
  left: 1.0rem;
  bottom: 1.5rem;
	background:  rgba(102, 102, 102, 0.7);
	z-index: 5;
}

/*スライダーなし用*/
/*
#top_hero #main_announce{
		margin: 0 1rem;
    background: #191d69;
}
#top_hero #main_announce .slide{
	margin: 0 3rem;
}
#top_hero #main_announce .slide > div{
  max-width: 1366px;
	margin: 0 auto;
  background: #fff;
  padding: 1rem;
}
#top_hero #main_announce .slide > div > div{
  width: calc(70% - 4rem);
  margin: 0 auto;
}
#top_hero #main_announce .slide a img{
  vertical-align: top;
}
*/


@media (max-width: 768px) {
  #top_hero #main_announce{
    max-width: none;
    width:100%;
  }

  #top_hero .slide{
    width: auto;
  }
  
/*
  #top_hero .slide a{
    padding: 0!important;
  }
	
*/
  #top_hero .slide a:after{
    border: 0.5rem solid #000;
  }
/*スライダーあり用*/

	#top_hero .slick-slide:not(.slick-center)::before {
		top: 0;
		right:0;
		left: 0;
		bottom: 0.5rem;
	}

	
/*スライダーなし用*/
/*
	#top_hero #main_announce{
		margin: 0 1.0rem;
		width: auto;
	}
	#top_hero #main_announce .slide{
		margin: 0 1.5rem;
	}
  
  #top_hero #main_announce .slide > div > div{
		width: 90%;
	}

*/
}


/*===== 3. Section [top_date]  =====*/
#top_date {
  margin-bottom: 3.0rem;
  padding: 5.0rem 0;
	background: #191d69;
}

#top_date h2 {
	margin-bottom: 3.0rem;
}

#top_date h2 b{
	position: relative;
  font-size: 5.2rem;
	font-weight: bold;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

#top_date h2 b::before, #top_date h2 b::after {
	width: 22.0rem;
	height: 0.1rem;
	margin: 0 1.0rem;
	background: #fff;
	content: "";
}


#top_date ul{
	width: 80%;
	min-width: 80.0rem;
	margin: 2.0rem auto 0;
	display: flex;
	justify-content: center;
}

#top_date li{
	position: relative;
	width: calc(50% - 2.0rem);
	background: #e8e9f0;
	box-sizing: border-box;
	font-weight: bold;
	box-shadow: 0 0 0 0.2rem #191d69, 0 0 0 0.4rem #e8e9f0;
  padding: 3rem;
}	

#top_date li i{
	position: absolute;
	right: 0;
	bottom: 0;
	font-weight: bold;
	color: #555;
	opacity: .1;
	font-size: 7rem;
}

#top_date h3{
	font-weight: bold;
	font-size: 2.6rem;
	color: #fff;
	margin: 2.0rem 0 0 ;
	padding: 1.0rem 2.0rem;
	background: #191d69;
	width: 95%;
}

#top_date dl{

	display: flex;
	align-items: flex-start;
}
#top_date dl:not(:last-of-type){
	margin-bottom: 2.0rem;
}
#top_date dt {
	width: 7.0rem;
	border-bottom: 0.3rem solid #191d69;
	text-align: center;
	margin: -0.2rem 1.5rem 0 0;
	font-size: 1.8rem;
	color: #191d69;
}

#top_date dd{
	flex: 1;
	font-size: 2.0rem;
}

@media (max-width: 1024px){
	#top_date ul{
		width: 100%;
		min-width: auto;
	}
}

@media (max-width: 768px) {
	#top_date {
		margin-bottom: 2rem;
		padding: 1.5rem 1.0rem 3.0rem;
		background: #191d69;
	}

	#top_date h2 {
		margin-bottom: 1.5rem;
	}

	#top_date h2 b{
		position: relative;
		font-size: 2.2rem;
    text-align: center;
	}

	#top_date h2 b::before, #top_date h2 b::after {
		width: 6.0rem;
		height: 0.1rem;
		margin: 0 1.0rem;
	}

	#top_date ul{
		width: 100%;
		margin: 2.0rem auto 0;
		display: block;
		min-width: auto;
	}

	#top_date li{
		position: relative;
		width: 100%;
		box-shadow: 0 0 0 0.2rem #191d69, 0 0 0 0.4rem #e8e9f0;
		margin: 0 0 3.0rem;
    padding: 2rem;
	}	
	
	#top_date li:last-of-type{margin-bottom: 0;}
	
	#top_date li i{
		display: none;
	}

	#top_date h3{
		font-size: 2.0rem;
		margin: 0 0 1.5rem;
		padding: 1.0rem 2.0rem;
		width: 100%;
		text-align: center;
	}

	#top_date dl{
		margin: 0;
		display: block;
	}

	#top_date dt {
		width: 100%;
		padding-bottom: 1rem;	
		border-bottom: 0.3rem solid #191d69;
		font-size: 1.6rem;
    margin-bottom: 1rem;
	}

	#top_date dd{
		font-size: 1.6rem;
	}
}



/*===== 4. Section [top_structure]  =====*/
#top_structure{
	margin: 5rem 0 4rem;
}

#top_structure > div > div{
	position: relative;
	z-index: 1;
}

#top_structure > div > div:after{
	position: absolute;
	background:  #191d69;
	content: '';
	top: 0;
	bottom: 0;
	left: 0;
	width: 90%;
	z-index: -1;
}

#top_structure > div > div:nth-child(2):after{
	background:  #af0d01;
}

#top_structure div > ul > li{
	position: relative;
	background: #fff;
	margin: 0 0 1.0rem 2.0rem;
	padding: 1.5rem;
	box-shadow: 0.5rem 0.5rem rgba(25,29,109,0.3);
	z-index: 1
}

#top_structure > div > div:nth-child(2) > ul > li{
	box-shadow: 0.5rem 0.5rem rgba(175,13,1,0.3)
}

#top_structure div > ul > li h4{
  font-weight: bold;
  font-size: 2.8rem;
/*  margin-bottom: 0.5rem;*/
}

#top_structure div > ul > li h4 span{
  font-size: 1.4rem;
  display: block;
}


#top_structure div > ul > li#motor h4{color: #C8161D;}
#top_structure div > ul > li#power h4{color: #ED6C00;}
#top_structure div > ul > li#emc h4{color: #00913A;}
#top_structure div > ul > li#material h4{color: #6FBA2C;}
#top_structure div > ul > li#mecha h4{color: #666464;}
#top_structure div > ul > li#power-ele h4{color: #E7310E;}
#top_structure div > ul > li#motion h4{color: #008CD6;}
#top_structure div > ul > li#design h4,
#top_structure div > ul > li#parts h4{color: #C88D38;}
#top_structure div > ul > li#thermal h4{color: #E85298;}

#top_structure div > ul > li#connect h4{color: #E8380D;}
#top_structure div > ul > li#manufacturing h4{color: #5D77AD;}
#top_structure div > ul > li#dx h4{color: #DCA54C;}
#top_structure div > ul > li#robot h4{color: #0081A4;}
#top_structure div > ul > li#predictive h4{color: #006CB8 ;}
#top_structure div > ul > li#logistics h4{color: #00693E;}
#top_structure div > ul > li#contactless h4{color: #0068B7;}
#top_structure div > ul > li#hydrogen h4,
#top_structure div > ul > li#sier h4{color: #006CB8;}



#top_structure div > ul > li dt{
  border-left: 0.5rem solid #666;
  padding: 0.2rem 0.5rem;
  background: #ededed;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

#top_structure div > ul > li#motor dt{border-left: 0.5rem solid #C8161D; color: #C8161D; background-color:rgba(200,22,29,.1);}
#top_structure div > ul > li#power dt{border-left: 0.5rem solid #ED6C00; color: #ED6C00; background-color:rgba(237,108,0,.1);}
#top_structure div > ul > li#emc dt{border-left: 0.5rem solid #00913A; color: #00913A; background-color:rgba(0,145,58,.1);}
#top_structure div > ul > li#material dt{border-left: 0.5rem solid #6FBA2C; color: #6FBA2C; background-color:rgba(111,186,44,.1);}
#top_structure div > ul > li#mecha dt{border-left: 0.5rem solid #666464; color: #666464; background-color:rgba(102,100,100,.1);}
#top_structure div > ul > li#power-ele dt{border-left: 0.5rem solid #E7310E; color: #E7310E; background-color:rgba(231,49,14,.1);}
#top_structure div > ul > li#motion dt{border-left: 0.5rem solid #008CD6; color: #008CD6; background-color:rgba(0,140,214,.1);}
#top_structure div > ul > li#design dt,
#top_structure div > ul > li#parts dt{border-left: 0.5rem solid #C88D38; color: #C88D38; background-color:rgba(200,141,56,.1);}
#top_structure div > ul > li#thermal dt{border-left: 0.5rem solid #E85298; color: #E85298; background-color:rgba(232,82,152,.1);}

#top_structure div > ul > li#connect dt{border-left: 0.5rem solid #E8380D; color: #E8380D; background-color:rgba(232,56,13,.1);}
#top_structure div > ul > li#manufacturing dt{border-left: 0.5rem solid #5d77ad; color: #5d77ad; background-color:rgba(93,119,173,.1);}
#top_structure div > ul > li#dx dt{border-left: 0.5rem solid #DCA54C; color: #DCA54C; background-color:rgba(220,165,76,.1);}
#top_structure div > ul > li#robot dt{border-left: 0.5rem solid #0081A4; color: #0081A4; background-color:rgba(0,129,164,.1);}
#top_structure div > ul > li#predictive dt{border-left: 0.5rem solid #006CB8; color: #006CB8; background-color:rgba(0,108,184,.1);}
#top_structure div > ul > li#logistics dt{border-left: 0.5rem solid #00693E; color: #00693E; background-color:rgba(0,105,62,.1);}
#top_structure div > ul > li#contactless dt{border-left: 0.5rem solid #0068B7; color: #0068B7; background-color:rgba(0,104,183,.1);}
#top_structure div > ul > li#hydrogen dt,
#top_structure div > ul > li#sier dt{border-left: 0.5rem solid #0068B7; color: #0068B7; background-color:rgba(0,104,183,.1);}

#top_structure div > ul > li li{
  display: inline-block;
  margin-right: 3rem;
  position: relative;
  padding-left: 1rem;
}

#top_structure div > ul > li li::before{
  transform: translateY(-50%);
  position: absolute;
  top: 1rem;
  width: 0.2rem;
  height: 0.2rem;
 left: 0;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

@media (max-width: 768px) {
	#top_structure{
		margin: 1.5rem 0 3.0rem;
	}
	
	#top_structure > div > div:after{
		width: 100%;
		bottom: -1.5rem;
	}

	#top_structure div > ul > li{
		position: relative;
		background: #fff;
		margin: 0 0 1rem 1rem;
		padding: 1.0rem ;
		box-shadow: 0.5rem 0.5rem rgba(25,29,109,0.3);
	}
  
  #top_structure div > ul > li h4{
    font-weight: bold;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
  
}

/*===== 6. Section [top_contact]  =====*/
#top_contact{
  margin-bottom: 5rem;
}
#top_contact li{
  padding: 0.5rem;
  background: #eee;
}

#top_contact li div{
  padding: 2.5rem 2.5rem 2.5rem 4rem;
  border: solid #fff 0.1rem;
  position: relative;
}

#top_contact li div span{
  position: absolute;
  top: 0;
  right: 4rem;
  font-weight: bold;
  color: #fff;
  font-size: 20rem;
  z-index: 0;
  font-style: italic;
  opacity: 0.4
}

#top_contact li h3{
  position: relative;
  font-weight: bold;  
  font-size: 2rem;
  margin-bottom: 1rem;
  z-index: 2;
}

#top_contact p{
  position: relative;
  z-index: 2;
  line-height: 1.4
}


@media (max-width: 768px) {
  #top_contact li div{
    padding: 1.5rem;
  }
  #top_contact li div span{
    font-size: 18rem;
  }
}


/*===== 10. Section [top_documents]  =====*/
#top_documents {
	margin: 4.0rem 0 0;
}
#top_documents li{
	border:  0.1rem solid #191d69;
	padding: 0.2rem;
	box-shadow: 1.0rem 1.0rem 1.5rem rgba(0,0,0,.20);
}

#top_documents li > div{
	height: 100%;
}
#top_documents li figure{
  height: 18.0rem;
  overflow: hidden;
}

#top_documents li figure img{
	transform: translateY(-5%) rotate(20deg);
	border: 0.1rem solid #ccc;
	transition: .5s ;
}

#top_documents li div > div{
	background: #191d69;
	color: #fff;
	padding: 2.0rem;
	display: flex;
	flex-direction: column;
}

#top_documents dl{
	margin: 0 0 2.0rem;
}
#top_documents dt{
	margin-bottom: 1.0rem;
	padding-bottom: 1.0rem;
	text-align: center;
	border-bottom: 0.1rem solid #fff;
	font-size: 2.0rem;
}

#top_documents dd{
	line-height: 1.6;
}

#top_documents a.buttonlink{
	display: block;
	width: 100%;
	font-size: 1.4rem;
}



@media (max-width: 1024px) {
	#top_documents {
		margin: 1.5rem 0 0;
	}
	
	#top_documents li { 
		width: calc(50% - 2.0rem);
		margin-bottom: 2.0rem;
	}
}

@media (max-width: 768px) {
	#top_documents li{
		width: 100%;
		border:  0.1rem solid #191d69;
		padding: 0.2rem;
		box-shadow: 0.2rem 0.2rem 0.5rem rgba(0,0,0,.25);
		margin-bottom: 2.0rem;
	}
	#top_documents li figure{
		height: 18rem;
	}

	#top_documents li figure img{
		border: 0.1rem solid #ccc;
		transition: .5s ;
	}

	#top_documents li div > div{
		padding: 2.0rem;
	}

	#top_documents dl{
		margin: 0 0 2.0rem;
	}
	
	#top_documents dt{
		margin-bottom: 1.0rem;
		padding-bottom: 1.0rem;
		border-bottom: 0.1rem solid #fff;
		font-size: 2.0rem
	}

	#top_documents a.buttonlink{
		font-size: 1.6rem;
	}
}


/*===== 12. Section [contact_btn]  =====*/
.contact_btn a span{
	box-shadow: 0.2rem 0.2rem 0.2rem rgba(0,0,0,.2);
}

.contact_btn a .ico_blank:before{
	font-size: 2.4rem; 
}

@media (max-width: 1024px) {
	#contact_btn{
		width: 90%;
	}
}

@media (max-width: 768px) {
  .contact_btn a span{
    border-radius: 4rem;
  }
  
  .contact_btn a .ico_blank:before{
    font-size: 1.8rem; 
  }
	
}
