@charset "UTF-8";
/* --------------------------------------------------------- */

/* ===== Hero ===== */

/* ===== #Company .Hero ===== */
#Company .Hero {
	height: 150px;
	background-position: center;
	background-size: cover;
	background-color: var(--kblue);
	margin: 0;
}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
	#Company .Hero{
		height: 120px;
	  }
	}
	@media only screen and (max-width: 559px) {
	 #Company .Hero{
		height: 80px;
	  }
	} 
#Company .Hero__Inner {
    padding-bottom: 0;
	align-items: center;
  }
#Company .Hero__Inner .Heading_wrap{
	width:100%;
	padding: 0;
	text-align: left;
	z-index: 20;
	background:none;
	}
	 #Company .Hero .Hero__heading {
		font-size: 3rem;
		line-height: 1;
		color: #FFF;
		position: relative;
		}
		@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .Hero .Hero__heading {
			font-size: 2.6rem;
		  }
		}
		@media only screen and (max-width: 559px) {
		 #Company .Hero .Hero__heading {
			font-size: 2rem;
		  }
		} 
	/* #Company .Hero .Hero__heading__sub {
		font-size: 2rem;
		line-height: 1;
		margin: 1rem 0 0 0;
		color: var(--kblue-deep);
		position: relative;
		}*/
/*
#Company .Button__List{
width:100%;
margin: 10rem auto 0 auto;

display: flex;
flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	align-content: flex-start;
	gap:20px;
}

#Company .Button__List .ButtonList__item{
	width: calc(33% - 20px);
	margin: 0 0 20px 0;
	}
#Company .Button__List .Button::before {
	top: 3rem;
	border-top: 2px solid #00a8a9;
	border-right: 2px solid #00a8a9;
	
	z-index: 1;
	}
*/
#Company .Button.-Large .Button__inner{
	padding: 4rem 2.5rem;

	background-color: #FFF;
	position: relative;
	z-index: 0;
}
#Company .Button.-Large .Button__inner::after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 0%;
	height: 100%;
	background-color: var(--kblue);
	-webkit-transition: .5s;
	transition: .5s;
}
#Company .Button.-Large .Button__inner:hover .Button__text{
	color:#FFF;
}
#Company .Button.-Large .Button__inner:hover::after{
	width: 100%;
}
#Company .Button.-Large .Button__text {
  font-size: 2rem;
  color:var(--gray-deep);
}

.CompanyIndex__cardList{
	width:100%;
	margin: 10rem auto 0 auto;

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	align-items: stretch;
	align-content: flex-start;
	gap:40px;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
	.CompanyIndex__cardList{
		margin: 6rem auto 0 auto;
		gap:30px;
	  }
	}
	@media only screen and (max-width: 559px) {
	 .CompanyIndex__cardList{
		margin: 4rem auto 0 auto;
		gap:20px;
	  }
	} 

.CompanyIndex__cardItem{
	width: calc((100% - 80px)/3);
	/*margin: 0 0 20px 0;*/
	position: relative;
	font-size: 2rem;

	border-top:1px solid;
	border-color: var(--kblue);
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
	.CompanyIndex__cardItem{
		width: calc((100% - 30px)/2);
	  }
	}
	@media only screen and (max-width: 559px) {
	.CompanyIndex__cardItem{
		width: 100%;
		font-size: 1.6rem;
	  }
	} 
.CompanyIndex__cardItem .CompanyIndexCard {
	display: block;
	width: 100%;
	padding: 2rem 2.5rem 10rem 2.5rem;

	color:var(--kblue-deep);
	background-color: var(--gray-light);
	position: relative;
	z-index: 0;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
	.CompanyIndex__cardItem .CompanyIndexCard {
		padding: 2rem 2.5rem 10rem 2.5rem;
	  }
	}
	@media only screen and (max-width: 559px) {
	.CompanyIndex__cardItem .CompanyIndexCard {
		padding: 1.5rem 2rem 4rem 2rem;
	  }
	} 
.CompanyIndex__cardItem .CompanyIndexCard::after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 0%;
	height: 100%;
	background-color: var(--kblue);
	-webkit-transition: .5s;
	transition: .5s;
	}
.CompanyIndex__cardItem .CompanyIndexCard:hover{
	color:#FFF;
	}
.CompanyIndex__cardItem .CompanyIndexCard:hover::after{
	width: 100%;
			}

.CompanyIndexCard__button{
	width:30px;
	height: 30px;
	position: absolute;
	overflow: hidden;
	right: 0;
	bottom:0;
	}
.CompanyIndexCard__button .Button{
	width:100%;
	height: 100%;
	position: relative;
	margin: 0;
	}
.CompanyIndexCard__button .Button:hover{
	opacity: 1;
	}
.CompanyIndexCard__button .Button__text{
	display: none;
	}
.CompanyIndexCard__button .Button::before{
	content: "";
  display: inline-block;
  position: absolute;
	top: 40%;
    left: 30%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  
  width: 0.8rem;
  height: 0.8rem;
  margin: 0;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
}	
	
	
	
	
	
	
	
	
#Company .Button.-Full,
#Company .Button.-Full .Button__text {
	  width:100%;
	}
.Banner__company{
	margin: 8rem 0 0 0;
}

#Company .Block__section:first-child {
}	
#Company .Section__heading {
  max-width: 1600px;
	display: block;
    margin: 0 auto 0 auto;
	padding: 0;
    background: #FFF;
  }
#Company .Section__heading h2 {
	color: var(--kblue-deep);
	font-size: 3rem;
	/*line-height: 5rem;*/
	border-bottom:2px solid;
	border-color: var(--kblue);
}
  @media only screen and (min-width: 560px) and (max-width: 959px) {
	#Company .Section__heading h2 {
		font-size: 2.4rem;
	  }
	}
	@media only screen and (max-width: 559px) {
	 #Company .Section__heading h2 {
		font-size: 2rem;
	  }
	} 


#Company .Section__level3{
	margin: 0 0 10rem 0;
	}
	@media only screen and (max-width: 559px) {
	 #Company .Section__level3{
		margin: 0 0 8rem 0;
	  }
	} 
#Company .Section__level3 h2{
	/*font-size: 3rem;*/
	margin: 0;
	}
	
	
#Company .AnchorList{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	align-content: flex-start;
	}
#Company .AnchorList__item{
	margin: 0 2rem 2rem 0;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .AnchorList__item{
		margin: 0 1.5rem 1.5rem 0;
		}
	}
	@media only screen and (max-width: 559px) {
	   #Company .AnchorList__item{
		width:100%;
		margin: 0 0 0.5rem 0;
		}
	}

#Company .AnchorList__item .Button_ancher{
	display: block;
	padding: 1.5rem 2rem 1.5rem 3.5rem;
	background-color: var(--gray-light);
	position: relative;
	z-index: 0;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .AnchorList__item .Button_ancher{
		padding: 1.5rem 2rem 1.5rem 3.5rem;
		}
	}
	@media only screen and (max-width: 559px) {
	   #Company .AnchorList__item .Button_ancher{
		padding: 1rem 1rem 1rem 2.5rem;
		}
	}
	#Company .AnchorList__item .Button_ancher:hover{
		color: #FFF;
	}
#Company .AnchorList__item .Button_ancher::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 40%;
	left: 2rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);

	width: 0.8rem;
	height: 0.8rem;
	margin: 0;
	border-top: 2px solid;
	border-right: 2px solid;
	border-color:var(--kblue);
	transform: rotate(135deg);
	z-index: 1;
	}
	@media only screen and (max-width: 559px) {
	   #Company .AnchorList__item .Button_ancher::before {
		left: 1.2rem;
		width: 0.6rem;
		height: 0.6rem;
		border-top: 1px solid;
		border-right: 1px solid;
		}
	}
	#Company .AnchorList__item .Button_ancher::after {
		content: '';
			  display: block;
			  position: absolute;
			  top: 0;
			  left: 0;
			  z-index: -1;
			  width: 0%;
			  height: 100%;
			  background-color: var(--kblue);
			  -webkit-transition: .5s;
			  transition: .5s;
			}
		#Company .AnchorList__item .Button_ancher:hover::after {
			width: 100%;
			}

  
 
 /* Topmsg 
#Company .Topmsg {
margin: 0;
}
#Company .Topmsg__wrap{
  width:100%;
  position: relative;
}

	@media only screen and (max-width: 559px) {
		#Company .Topmsg__wrap {
		height: auto;
		}
	}
#Company .Topmsg__Img{
  width:100%;
  height: 100%;
  margin: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top:0;
  z-index: 1;
}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg__Img {
			height: 70vw;
			background-position: left center;
			}
		}

#Company .Topmsg__msg{
  width:100%;
  color: #333;
  position: relative;
  z-index: 2;
}
#Company .Topmsg__Headingwrap{
	height: auto;
	margin-bottom: 10rem;
	padding: 10rem 0;
	
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
	
	display: flex;
	align-items: center;
	justify-content: flex-start;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
			#Company .Topmsg__Headingwrap {
				padding: 7rem 0;
				margin-bottom: 5rem;
				}
		}
	@media only screen and (max-width: 559px) {
		#Company .Topmsg__Headingwrap {
		padding: 5rem 0;
		margin-bottom: 2rem;
		}
	}
#Company .Topmsg__Heading{
	padding-left: 4rem;
	border-left: 6px solid;
	border-color: var(--kblue-deep);
	color: #fff;
	}
		@media only screen and (min-width: 560px) and (max-width: 959px) {
			#Company .Topmsg__Heading {
				padding-left:2rem;
				border-left:4px solid;
				border-color:var(--kblue-deep);
				}
		}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg__Heading {
				padding-left:2rem;
				border-left:3px solid;
				border-color:var(--kblue-deep);
				}
		}
	
	#Company .Topmsg__Heading .Heading{
		display: inline-block;
		border-bottom:1px solid #FFF;
		margin-bottom:0.2em;
		
		font-size: 4.9rem;
		line-height: 1.6;
		letter-spacing: 0.05em;
		}

		@media only screen and (min-width: 560px)  and (max-width: 955px) {
				#Company .Topmsg__Heading .Heading {
				font-size: 4rem;
				}
			}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg__Heading .Heading {
			font-size: 6.5vw;
			}
		}
	#Company .Topmsg__Heading .Text__eng{
		font-size: 1.8rem;
		}
			@media only screen and (min-width: 560px)  and (max-width: 955px) {
				#Company .Topmsg__Heading .Text__eng{
				font-size: 1.6rem;
				}
			}
			@media only screen and (max-width: 559px) {
				#Company .Topmsg__Heading .Text__eng{
				font-size: 3vw;
				}
			}
	#Company .Topmsg__Heading .Heading span{
		display: inline-block;
		}
	#Company .Topmsg__Heading .Entry__author{
		font-size: 3.6rem;
		}
		@media only screen and (min-width: 560px)  and (max-width: 955px) {
				#Company .Topmsg__Heading .Entry__author{
				font-size: 3rem;
				}
			}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg__Heading .Entry__author{
			font-size: 5vw;
			}
		}
	

#Company .Topmsg__comment{
	width:100%;
	}
	@media only screen and (min-width: 560px)  and (max-width: 1199px) {
			#Company .Topmsg__comment{
			}
		}
	@media only screen and  (max-width: 559px) {
			#Company .Topmsg__comment{
			width:100%;
			}
		}
#Company .Topmsg__msg .Text{
  text-align:justify;
  margin-top: 2em;
}
#Company .BoardPrimary__signature{
margin: 4rem 0 0 0;
	text-align: right;
} 

#Company  .Topmsg__msg .Board__name{
	font-size: 3rem;
	text-align: right;
	}
	@media only screen and (min-width: 560px)  and (max-width: 1199px) {
			#Company  .Topmsg__msg .Board__name{
			font-size: 2.4rem;
			}
		}
	@media only screen and  (max-width: 559px) {
			#Company  .Topmsg__msg .Board__name{
			font-size:2rem;
			}
		}

*/

 /* Topmsg2 */
#Company .Topmsg2 {
margin: 0;
}
#Company .Topmsg2 .Topmsg__wrap{
  width:100%;
  position: relative;
}
#Company .Topmsg2 .Topmsg__Img{
  width:100%;
  height: 100%;
  margin: 0;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top:0;
  z-index: 1;
}
		@media only screen and (min-width: 560px)  and (max-width: 1199px) {
			#Company .Topmsg2 .Topmsg__Img {
			/* height: 460px; */
			height: clamp(560 * 0.7px, 560 / 1199 * 100vw, 560px);
			background-size: 130%;
			background-position: 15% 15%;
			}
		}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg2 .Topmsg__Img {
			height: 70vw;
			background-size: 150%;
			background-position: 30% 18%;
			}
		}
#Company .Topmsg2 .Topmsg__msg{
  width:100%;
  color: #333;
  position: relative;
  z-index: 2;
}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg2 .Topmsg__msg {
			width:100%;
			}
		}
#Company .Topmsg2 .Topmsg__Headingwrap{
	height: auto;
	margin-bottom: 10rem;
	padding-top: 10rem;
	color:#FFF;
	}
		@media only screen and (min-width: 560px) and (max-width: 1199px) {
			#Company .Topmsg2 .Topmsg__Headingwrap {
				display: block;
				height: clamp(560 * 0.7px, 560 / 1199 * 100vw, 560px);
				margin-bottom: 5rem;
				padding-top: 8rem;
				}
		}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg2 .Topmsg__Headingwrap {
				display: block;
				height: 70vw;
				margin-bottom: 2rem;
				padding-top: 5rem;
				}
		}
#Company .Topmsg2 .Topmsg__Heading{
	padding-left:4rem;
	border-left:6px solid;
	border-color:var(--kblue-deep);
	}
	@media only screen and (min-width: 560px) and (max-width: 1199px) {
		#Company .Topmsg2 .Topmsg__Heading {
			padding-left: clamp(40 * 0.7px, 40 / 1199 * 100vw, 40px);
		}
		
	}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg2 .Topmsg__Heading {
				padding-left:1.5rem;
				border-left:3px solid;
				border-color:var(--kblue-deep);
				}
		}
	
	#Company .Topmsg2 .Topmsg__Heading .Heading{
		display: inline-block;
		border-bottom:1px solid #FFF;
		margin-bottom:0.2em;
		padding-bottom: 0.2em;
		
		font-size: 4.9rem;
		line-height: 1.6;
		letter-spacing: 0.05em;
		}
		@media only screen and (min-width: 560px) and (max-width: 1199px) {
			#Company .Topmsg2 .Topmsg__Heading .Heading {
				/*font-size: 5.1vw;*/
				font-size: clamp(40 * 0.7px, 40 / 1199 * 100vw, 40px);
				}
		}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg2 .Topmsg__Heading .Heading {
			font-size: 4.6vw;
			}
		}
	#Company .Topmsg2 .Topmsg__Heading .Text__eng{
		font-size: 1.8rem;
		}
			@media only screen and (min-width: 560px)  and (max-width: 1199px) {
				#Company .Topmsg2 .Topmsg__Heading .Text__eng{
				/*font-size: 3vw;*/
				/* font-size: 1.6rem; */
				font-size: clamp(16 * 0.7px, 16 / 1199 * 100vw, 16px);
				}
			}
			@media only screen and (max-width: 559px) {
				#Company .Topmsg2 .Topmsg__Heading .Text__eng{
				font-size: 2.8vw;
				}
			}
	#Company .Topmsg2 .Topmsg__Heading .Heading span{
		display: block;
		}
	#Company .Topmsg2 .Topmsg__Heading .Entry__author{
		font-size: 3.6rem;
		}
		@media only screen and (min-width: 560px)  and (max-width: 1199px) {
				#Company .Topmsg2 .Topmsg__Heading .Entry__author{
				/*font-size: 5vw;*/
				/* font-size: 3rem; */
				font-size: clamp(30 * 0.7px, 30 / 1199 * 100vw, 30px);
				}
			}
		@media only screen and (max-width: 559px) {
			#Company .Topmsg2 .Topmsg__Heading .Entry__author{
			/* font-size: 5vw; */
			font-size: 3.5vw;
			}
		}
	

#Company .Topmsg2 .Topmsg__comment{
	width:52rem;
	margin-left: 4.5rem;
	padding-bottom:5rem;
	color: #FFF;
	}
	@media only screen and (min-width: 560px)  and (max-width: 1199px) {
			#Company .Topmsg2 .Topmsg__comment{
			width:100%;
			margin-left: 0;
			color: #333;
			}
		}
	@media only screen and  (max-width: 559px) {
			#Company .Topmsg2 .Topmsg__comment{
			width:100%;
			margin-left: 0;
			color: #333;
			}
		}
#Company .Topmsg2 .Topmsg__comment .Text{

  text-align:justify;
}
#Company .Topmsg2 .BoardPrimary__signature{
margin: 2rem 0 0 0;
	text-align: right;
} 
#Company .Topmsg2  .Topmsg__msg .Board_position{

	}
#Company .Topmsg2 .Topmsg__msg .Board__name{
	font-size: 3rem;
	text-align: right;
	}
	@media only screen and (min-width: 560px)  and (max-width: 1199px) {
			#Company .Topmsg2 .Topmsg__msg .Board__name{
			font-size: 2.4rem;
			}
		}
	@media only screen and  (max-width: 559px) {
			#Company .Topmsg2  .Topmsg__msg .Board__name{
			font-size:2rem;
			}
		}
 /* company__boardmember */
#Company .BoardList {
	width:100%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	align-content: flex-start;
	
	gap:30px;
	margin: 5rem 0 0 0;
}
	@media only screen and (min-width: 560px) and (max-width: 959px){
			#Company .BoardList {
			gap:20px;
			margin-top: 4rem;
			}
	}
	@media only screen and (max-width: 559px){
		  #Company .BoardList {
			gap:15px;
			margin-top: 3rem;
			}
	}

#Company .BoardList .BoardList__item{
	width:calc(33.33% - 30px);
	}
	@media only screen and (min-width: 560px) and (max-width: 959px){
			#Company .BoardList .BoardList__item{
			width:calc((100% - 20px)/2);
			}
	}
	@media only screen and (max-width: 559px){
		  #Company .BoardList .BoardList__item{
			width:100%;
			}
	}
#Company .BoardList .BoardList__item.-Full{
	width:100%;
	}
#Company .BoardList .Board{
	padding: 5px 20px;
	border-left:1px solid;
border-color: var(--gray-line);
	}
#Company .BoardList .Board__position{
font-size: 1.4rem;
line-height: 1.5;
margin: 0;
}
	@media only screen and (min-width: 560px) and (max-width: 959px){
			#Company .BoardList .Board__position{
			font-size: 1.3rem;
			}
	}
	@media only screen and (max-width: 559px){
		 #Company .BoardList .Board__position{
			font-size: 1.2rem;
			}
	}
#Company .BoardList .Board__name{
	font-size: 2.2rem;
	margin: 0;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px){
			#Company .BoardList .Board__name{
			font-size: 2rem;
			}
	}
	@media only screen and (max-width: 559px){
		 #Company .BoardList .Board__name{
			font-size: 1.8rem;
			}
	}


 /* company__profile */
#Company .ProfileList{
	width:100%;
	margin: 5rem 0 0 0;
}
#Company .ProfileList .ProfileList__item{
	
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	align-content: flex-start;
	
	border-top:1px solid;
	border-color:var(--gray-deep);
	margin: 0 0 1rem 0;
	padding:1rem 0 0 0;
	}
@media only screen and (max-width: 559px) {
	    #Company .ProfileList .ProfileList__item{
		margin: 0 0 2rem 0;
		}
	}
#Company .ProfileList .ProfileList__item:last-child{
	border-bottom:1px solid;
	border-color:var(--gray-deep);
	padding:1rem 0 1rem 0;
	}	
#Company .ProfileList .ProfileList__title{
	width:200px;
	margin: 0;
	padding: 30px 20px;
	background-color:var(--gray-light);
	}
	
	@media only screen and (max-width: 559px) {
	    #Company .ProfileList .ProfileList__title{
		width:100%;
		padding: 10px 20px;
		font-size: 1.4rem;
		}
	}
	#Company .ProfileList .ProfileList__title p{
	line-height: 1.7;
	}
	@media only screen and (max-width: 559px) {
	    #Company .ProfileList .ProfileList__title p{
		margin: 0;
		}
		#Company .ProfileList .ProfileList__title p br{
		display: none;
		}
	}
#Company .ProfileList .ProfileList__content{
	width:calc(100% - 200px);
	padding: 30px;
	}
	@media only screen and (max-width: 559px) {
	    #Company .ProfileList .ProfileList__content{
		width:100%;
		padding: 15px 20px;
		}
	}
	#Company .ProfileList .ProfileList__content p{
		line-height: 1.7;
		margin: 0;
		}
	
#Company .TableList__column{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	align-content: flex-start;
	border-top:1px solid;
	border-bottom:1px solid;
	border-right:1px solid;
	border-color:var(--gray-deep);
	}
	#Company .TableList__item{
		with:100%;
		border-left:1px solid;
		border-color:var(--gray-deep);
		flex-grow:1;
		}
	#Company .TableList__item .TableList__title{
		background:var(--gray-medium);
		padding: 1rem;
		font-weight: bolder;
		}
	#Company .TableList__item .TableList__content{
		background:#FFF;
		padding: 1rem;
		}
	#Company .TableList__item .-center{
		text-align: center;
		}

 /* company__history */
#Company .HistoryList{
	with:90%;
	margin: 3rem 0 0 10%;
	position: relative;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .HistoryList{
		margin: 3rem 0 0 10%;
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .HistoryList{
		margin: 2rem 0 0 2rem;
		}
	}
#Company .HistoryList__item{
	with:100%;
	margin: 0 0 1rem 0;
	padding: 2rem 0;

	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	align-content: flex-start;
	border-bottom: 1px solid #666;
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .HistoryList__item{
		padding: 2rem 0;
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .HistoryList__item{
		padding: 1.5rem 0;
		}
	}
#Company .HistoryList__item .HistoryList__year{
	width:150px;
	text-align: right;
	padding-right: 2rem;
	border-right:5px solid;
	border-color:var(--gray-medium);
	/*background-color:var(--gray-light);*/
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .HistoryList__item .HistoryList__year{
		width:120px;
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .HistoryList__item .HistoryList__year{
		width:80px;
		padding-right: 1.5rem;
		border-right:3px solid;
		border-color:var(--gray-medium);
		}
	}
#Company .HistoryList__item .HistoryList__year p{
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.7;
	color:var(--kblue-deep);
	}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .HistoryList__item .HistoryList__year p{
		font-size: 1.6rem;
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .HistoryList__item .HistoryList__year p{
		font-size: 1.5rem;
		}
	}
#Company .HistoryList__item .HistoryList__content{
	width:calc(100% - 150px);
	background:#FFF;
	padding-left: 2rem;
	}
	@media only screen and (max-width: 559px) {
	    #Company .HistoryList__item .HistoryList__content{
		width:calc(100% - 80px);
		padding-left: 1.5rem;
		}
	}
#Company .HistoryList__item .HistoryList__content p{
	margin: 0;
	line-height: 1.7;
	}
		
		
/* ===== LocationMap ===== */
#Company #LocationMap{
	width:100%;
	height: 680px;
	margin: 0 auto;
	background-color:var(--kblue);
	overflow: hidden;
	position: relative;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		#Company #LocationMap{
		height: 75.55vw;
		}
	}
	@media only screen and (max-width: 559px) {
	   #Company #LocationMap{
		height: auto;
		}
	}
#Company .LocationMap__inner{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;

	width: 100%;
	max-width: 1300px;
	min-width: 900px;
	height: 100%;

	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
	z-index: 1;
 }
 @media only screen and (min-width: 560px) and (max-width: 1049px) {
		#Company .LocationMap__inner{
		width: 100%;
		max-width: 100vw;
		min-width: 100%;
		height: 100%;
		}
	}
	@media only screen and (max-width: 559px) {
	   #Company .LocationMap__inner{
		width: 100%;
		max-width: 100vw;
		min-width: 100%;
		height: 140vw;
		}
	}
#Company .LocationMap__Catch{
	width:100%;
	position: absolute;
	left: 0;
	top:4rem;
	z-index: 2;
}
	@media only screen and (min-width: 560px) and (max-width: 899px) {
		#Company .LocationMap__Catch{
		top:4rem;
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .LocationMap__Catch{
		top:2rem;
		}
	}
#Company .LocationMap__Catch .Catch{
	font-size: 3.2rem;
	color: #FFF;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}	
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .LocationMap__Catch .Catch{
		font-size: 2.4rem;
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .LocationMap__Catch .Catch{
		font-size: 6vw;
		}
	}
#Company .Map__image{
	width: 900px;
	height: auto;
	margin-left:70px;
}
	@media only screen and (min-width: 1050px) and (max-width: 1239px) {
		#Company .Map__image{
			margin-left:0;
		}
	}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		#Company .Map__image{
		width: 100%;
		margin-left:0;
		
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .Map__image{
		width: 100%;
		margin-left:0;
		}
	}
#Company .Map__image img{
	/*width: 900px;*/
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		#Company .Map__image img{
			width: 100%;
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .Map__image img{
			width: 100%;
		}
	}
	
#Company .Location__plot__Wrap{
width: 900px;
height: 100%;
position: absolute;
top: 0;
left: 70px;
/*left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);*/

overflow: hidden;
z-index: 4;
animation-name: fadeIn2;
animation-duration: 1s;
animation-iteration-count: 1;
animation-fill-mode:both;
animation-delay: 2s;
}
	@keyframes fadeIn2 {
		from {
			opacity: 0;
		}
		to {
			opacity: 1;
		}
		}
	@media only screen and (min-width: 900px) and (max-width: 1239px) {
		#Company .Location__plot__Wrap{
		left: 0;
		}
	}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		#Company .Location__plot__Wrap{
		width: 100%;
		left: 0;
		}
	}
	@media only screen and (max-width: 559px) {
		#Company .Location__plot__Wrap{
	    width: 100%;
		left: 0;
		
		animation-delay: 1.2s;
		}
	}
		
#Company .Location__plot__inner{
	width: 100%;
	height: 100%;
	position: relative;
}	
#Company .Location__plot1{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top:0;
	z-index: 999;
}

#Company .Location__plot2{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top:0;
	z-index: 9;
}
#Company .Location__plot3{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top:0;
	z-index: 8;
}
#Company .Location__plot4{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top:0;
	z-index: 7;
}
@media only screen and (max-width: 559px) {
		#Company .Location__plot1,
		#Company .Location__plot2,
		#Company .Location__plot3,
		#Company .Location__plot4{
	    top:32vw;
		}
	}
.Plot{
	border-radius:999px;
	position: absolute;
	z-index: 12;
}
li.Plot1{
	width:1.5rem;
	height: 1.5rem;
	background-color:#ffff99;
	box-shadow: 0.2rem 0.2rem 0.2rem rgba(0,0,0,0.3);
}
	@media only screen and (max-width: 559px) {
	    li.Plot1{
		width:1rem;
		height: 1rem;
		}
	}
li.Plot1 span{
	display: none;
}
.-mainoffice{
	left: 480px;
	top:476px;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		.-mainoffice{
		left: 53.33vw;
		top:52.88vw;
		}
	}
	@media only screen and (max-width: 559px) {
	    .-mainoffice{
		left: 53.33vw;
		top:52.88vw;
		}
	}
.-branchoffice1{
	left: 572px;
	top:92px;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		.-branchoffice1{
		left: 63.55vw;
		top:10.22vw;
		}
	}
	@media only screen and (max-width: 559px) {
	    .-branchoffice1{
		left: 63.55vw;
		top:10.22vw;
		}
	}
.-branchoffice2{
	left: 534px;
	top:340px;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		.-branchoffice2{
		left: 59.33vw;
		top:37.77vw;
		}
	}
	@media only screen and (max-width: 559px) {
	    .-branchoffice2{
		left: 59.33vw;
		top:37.77vw;
		}
	}
.-branchoffice3{
	left: 365px;
	top:498px;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		.-branchoffice3{
		left: 40.55vw;
		top:55.33vw;
		}
	}
	@media only screen and (max-width: 559px) {
	    .-branchoffice3{
		left: 40.55vw;
		top:55.33vw;
		}
	}
.-branchoffice4{
	left: 301px;
	top:516px;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		.-branchoffice4{
		left: 33.44vw;
		top:57.33vw;
		}
	}
	@media only screen and (max-width: 559px) {
	   .-branchoffice4{
		left: 33.44vw;
		top:57.33vw;
		}
	}
.-branchoffice5{
	left: 176px;
	top:526px;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		.-branchoffice5{
		left: 19.55vw;
		top:58.44vw;
		}
	}
	@media only screen and (max-width: 559px) {
	   .-branchoffice5{
		left: 19.55vw;
		top:58.44vw;
		}
	}
.-branchoffice6{
	left: 100px;
	top:560px;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		.-branchoffice6{
		left: 11.11vw;
		top:62.22vw;
		}
	}
	@media only screen and (max-width: 559px) {
	   .-branchoffice6{
		left: 11.11vw;
		top:62.22vw;
		}
	}
li.Plot1:hover::after{
	content: "";
	position: absolute;
	width: 10rem;
	/*background:var(--kblue-exdeep);
	color:#FFF;*/
	background:#FFF;
	color: var(--kblue-exdeep);
	padding: 0.5rem 1rem;
	font-size: 1.4rem;
	text-align: center;
	box-shadow: 0.3rem 0.3rem 0.5rem rgba(0,0,0,0.2);
	z-index: 1000;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		li.Plot1:hover::after{
		width:10rem;
		font-size: 1.4rem;
		padding: 0.3rem 1rem;
		}
	}
	@media only screen and (max-width: 559px) {
	   li.Plot1:hover::after{
		width:10rem;
		font-size: 1.2rem;
		padding: 0.3rem 1rem;
		}
	}
li.-mainoffice:hover::after{
content: "本社";
right: -10rem;
top:0rem;
}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		li.-mainoffice:hover::after{
		right: auto;
		left: -10rem;
		top:auto;
		bottom:0;
		}
	}
	@media only screen and (max-width: 559px) {
	   li.-mainoffice:hover::after{
		top:auto;
		bottom:0;
		}
	}
li.-branchoffice1:hover::after{
content: "北海道支店";
right: -10rem;
top:0rem;
}
li.-branchoffice2:hover::after{
content: "東北支店";
right: -10rem;
top:0rem;
}
	/*@media only screen and (min-width: 560px) and (max-width: 1049px) {
		li.-branchoffice2:hover::after{
		right: auto;
		left: -10rem;
		top:auto;
		bottom:0;
		}
	}
	@media only screen and (max-width: 559px) {
	   li.-branchoffice2:hover::after{
		
		top:auto;
		bottom:0;
		}
	}*/
li.-branchoffice3:hover::after{
content: "中部支店";
right: -10rem;
top:0rem;
}
li.-branchoffice4:hover::after{
content: "大阪支社";
right: -10rem;
top:0rem;
}
li.-branchoffice5:hover::after{
content: "中国支店";
right: -10rem;
top:0rem;
}
li.-branchoffice6:hover::after{
content: "九州支店";
right: -10rem;
top:0rem;
}
#Company .Location__list_wrap{
width:100%;
position: absolute;
left: 0;
top: 230px;
z-index: 2;
}
#Company .Location__list_wrap .SiteContent__sectionInner{
	position: relative;
	z-index: 2;
}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .Location__list_wrap{
		top: 180px;
		}
	}
	@media only screen and (max-width: 559px) {
	  #Company .Location__list_wrap{
		top: auto;
		bottom:3rem;
		}
	}
#Company .Location__list,
#Company .Location__listAsia{
width: 26rem;
margin: 0;
padding: 0;
border-bottom:1px solid #FFF;

animation-name: fadeIn2;
animation-duration: 1s;
animation-iteration-count: 1;
animation-fill-mode:both;
animation-delay: 2s;
}

	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .Location__list,
		#Company .Location__listAsia{
		width: 18rem;
		bottom: 4rem;
		right: 2rem;
		}
	}
	@media only screen and (max-width: 559px) {
	  #Company .Location__list,
	  #Company .Location__listAsia{
		width: 100%;
		border-bottom:none;
		
		animation-delay: 1.2s;
		
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		column-gap:2rem;
		}
	}
#Company .Location__list li,
#Company .Location__listAsia li{
	padding: 0.3rem 1rem;
	border-top:1px solid #FFF;
	font-size: 1.6rem;
	color: #FFF;
}
	@media only screen and (min-width: 560px) and (max-width: 959px) {
		#Company .Location__list li,
		#Company .Location__listAsia li{
		padding: 0.5rem 0.5rem;
		font-size: 1.4rem;
		}
	}
	@media only screen and (max-width: 559px) {
		#Company .Location__list li,
		#Company .Location__listAsia li{
		width:calc((100% - 2rem)/2);
		padding: 0.5rem 0.5rem;
		margin: 0;
		font-size: 1.3rem;
		}
		#Company .Location__list li:nth-child(3),
		#Company .Location__list li:nth-child(4),
		#Company .Location__listAsia li{
		border-bottom:1px solid #FFF;
		}
	}
#Company .Location__list .-mainoffice{
color:#ffff99;
}
#Company .Location__list .-salesoffice{
	color:#ffc942;
	font-size: 1.2rem;
	padding: 0 0.25rem;
}
#Company .Location__list .-business_tech_center{
	color:#f29292;
	font-size: 1.2rem;
	padding: 0 0.25rem;
}
#Company .Location__list .-maintenance_office{
	color:#FFF;
	font-size: 1.2rem;
	padding: 0 0.25rem;
}

#Company .Location__listAsia .-asiabases{
	color:#a975ff;
	font-size: 1.2rem;
	padding: 0 0.25rem;
}


#Company .MapAsia{
width: 500px;
height: auto;
position: absolute;
top:auto;
bottom: 35px;
right: 50px;

z-index: 2;
}
	@media only screen and (min-width: 1050px) and (max-width: 1239px) {
		#Company .MapAsia{
			width: 40%;
		}
	}
	@media only screen and (min-width: 560px) and (max-width: 1049px) {
		#Company .MapAsia{
		width: 35%;
		right: 20px;
		}
	}
	@media only screen and (max-width: 559px) {
	    #Company .MapAsia.sp_obj{
		width:100%;
		position: relative;
		bottom:0;
		right:0;
		}
	}
#Company .MapAsia__image{
width:100%;
animation-fill-mode:both;
animation-delay: 0.8s;
position: relative;
z-index: 3;
}
	@media only screen and (max-width: 559px) {
	    #Company .MapAsia__image{
		animation-delay: 0s;
		}
	}

#Company .Location__listAsia_wrap{
width:100%;
position: absolute;
top:-50px;
left: 0;
z-index: 4;
}
	@media only screen and (max-width: 559px) {
	  #Company .Location__listAsia_wrap{
	  position: relative;
	  top:0;
	  margin-top:20px;
	  padding-bottom:20px;
		}
	}
#Company .Location__listAsia{
margin-left: auto;
}