/* ボディ部分 */

body {
	
	margin: 0;
	padding: 0;
	
}

.bodyback {
	width: 100%;
	height: auto;
	background: url(img/32869538_m.jpg) repeat  bottom -80px left 0px / contain rgba(255, 255, 242, 0.512);
	background-blend-mode:color;
	
	margin-top: -200px;
	padding-top: 200px;
	top: 0;
	
}






/* ヘッダー部分 *//*画面上追従メニュー*/

header {
	position: fixed;							/* ヘッダーの中身を横並び */			
	align-items: center;						/* ヘッダーの中身を中央寄せ */
	background: linear-gradient(180deg, #fffaf800,#ffffff00);		/* 背景カラー */
	width: 100%;								/* 横幅いっぱい */
	height: 100px;								/* たて幅　*/
	margin-top: 0;								/* 上部分の外側の余白　０　*/
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	top: 0;										/* 上部分の位置　ピッタリとくっつける　*/
	z-index: 100;											/* 重なりレイヤー１００　*/
	overflow: hidden;							/* 要素からはみ出した部分を非表示　*/
}

/* ヘッダー画像部分 */

.pic {											/* ヘッダー左上　会社ロゴ　*/
	display: inline-block;
	width: 400px;
	height: 100px;
	top: 0;
	margin-right: 0;
}

.pic img {										/* ヘッダー左上　会社ロゴ　親ボックスに対しての画像の大きさ　*/
	width: 100%;
}

/* ヘッダーリンク部分 */

a {											/* ヘッダー内リンク */
	text-decoration: none;					/* ヘッダー内リンクの装飾を無しに */
	color:black;							/* ヘッダー内リンクの文字色を黒に */
}

.menu-item {
	text-decoration: none;
	display: inline-block;
	padding: 25px;							/* リンク全方向の内側の余白 */
	font-size: 18px;
  }


.navmenu {						
	width: 80px;							/* リンク全方向の内側の余白 */
	padding-bottom: 5px;					/* リンク下方向の内側の余白 */
	position: relative;						/*　基準位置の設定 */
}

.navmenu::before {							/* ヘッダー上追従メニュー　ホバー前の設定 */
  background: #335e84;						/* ホバー時変化の色の設定 */
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;						/* ホバー基準位置からの変化位置の設定 */
  left: 0;
  bottom: 0;
  transform-origin: right top;				/* 変化を始める方向の設定 */
  transform: scale(0, 1);					/* 変化したときの拡大率 */
  transition: transform .3s;				/* 変化するときのスピード */
  margin: 0;
}

.navmenu:hover::before {					/* ヘッダー上追従メニュー　ホバー時の設定 */
  transform-origin: left top;
  transform: scale(1, 1);
}

nav {										/* ヘッダー上追従メニュー*/
	position: fixed;						/* 追従させる */
	width: 100%;							/* 横幅いっぱい */
	top: 10px;								/* 上からの距離 */
	right: 50px;							/* 右からの距離 */
	font-family: "Hina Mincho", serif;
	text-align: right;
	margin: 0;
	padding: 0;
}

.menu-group {
	margin: 0;
	padding: 0;
}
  
 /* ヘッダー終わり部分 */





















/* ヘッダー部分　1680px以下に適用されるCSS（デスクトップHD用） */

@media screen and (max-width: 1680px) {



	/* ヘッダー部分 *//*画面上追従メニュー*/
	
	header {
		position: fixed;							/* ヘッダーの中身を横並び */			
		align-items: center;						/* ヘッダーの中身を中央寄せ */
		background: linear-gradient(180deg, #fffaf800,#ffffff00);		/* 背景カラー */
		width: 100%;								/* 横幅いっぱい */
		height: 100px;								/* たて幅　*/
		margin-top: 0;								/* 上部分の外側の余白　０　*/
		margin-bottom: 0;
		margin-left: 0;
		margin-right: 0;
		padding: 0;
		top: 0;										/* 上部分の位置　ピッタリとくっつける　*/
		z-index: 100;											/* 重なりレイヤー１００　*/
		overflow: hidden;							/* 要素からはみ出した部分を非表示　*/
	}
	
	/* ヘッダー画像部分 */
	
	.pic {											/* ヘッダー左上　会社ロゴ　*/
		display: inline-block;
		width: 400px;
		height: 100px;
		top: 0;
		margin-right: 0;
	}
	
	.pic img {										/* ヘッダー左上　会社ロゴ　親ボックスに対しての画像の大きさ　*/
		width: 100%;
		
	}
	
	/* ヘッダーリンク部分 */
	
	header a {											/* ヘッダー内リンク */
		text-decoration: none;					/* ヘッダー内リンクの装飾を無しに */
		color:rgb(0, 0, 0);							/* ヘッダーfilter: drop-shadow(0px 2px 3px rgba(21, 29, 37, 0.763));	
	}
	
	.menu-item {
		text-decoration: none;
		display: inline-block;
		padding: 25px;							/* リンク全方向の内側の余白 */
		font-size: 18px;
	  }
	
	
	.navmenu {						
		width: 80px;							/* リンク全方向の内側の余白 */
		padding-bottom: 5px;					/* リンク下方向の内側の余白 */
		position: relative;						/*　基準位置の設定 */
	}
	
	.navmenu::before {							/* ヘッダー上追従メニュー　ホバー前の設定 */
	  background: #335e84;						/* ホバー時変化の色の設定 */
	  content: '';
	  width: 100%;
	  height: 2px;
	  position: absolute;						/* ホバー基準位置からの変化位置の設定 */
	  left: 0;
	  bottom: 0;
	  transform-origin: right top;				/* 変化を始める方向の設定 */
	  transform: scale(0, 1);					/* 変化したときの拡大率 */
	  transition: transform .3s;				/* 変化するときのスピード */
	  margin: 0;
	}
	
	.navmenu:hover::before {					/* ヘッダー上追従メニュー　ホバー時の設定 */
	  transform-origin: left top;
	  transform: scale(1, 1);
	}
	
	nav {										/* ヘッダー上追従メニュー*/
		position: fixed;						/* 追従させる */
		width: 100%;							/* 横幅いっぱい */
		top: 10px;								/* 上からの距離 */
		right: 50px;							/* 右からの距離 */
		font-family: "Hina Mincho", serif;
		text-align: right;
		margin: 0;
		padding: 0;
	}
	
	.menu-group {
		margin: 0;
		padding: 0;
	}
	  
	 /* ヘッダー終わり部分 */
	
	
	
	
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
		
		
		
	
	
	
	
	
	
	@media screen and (max-width: 480px) {
	
		header {
			position: fixed;							/* ヘッダーの中身を横並び */			
			align-items: center;						/* ヘッダーの中身を中央寄せ */
			background-color: rgba(255, 255, 255, 0);		/* 背景カラー */
			width: 100%;								/* 横幅いっぱい */
			height: 35px;								/* たて幅　*/
			margin-top: 0;	
			margin-bottom: 0;
			margin-left: 0;
			margin-right: 0;							/* 上部分の外側の余白　０　*/
			top: 0;										/* 上部分の位置　ピッタリとくっつける　*/
			z-index: 100;								/* 重なりレイヤー１００　*/
			overflow: hidden;
			display: flex;
		}
	
	/* ヘッダー画像部分 */
	
		.pic {
			display: inline-block;
			width: 150px;
			height: 30px;
			top: 0;
		}
		
		.pic img {
			width: 90%;
		}
	
	/* ヘッダー追従メニュー部分 */
	
		nav {
			width: 100%;
			height: 80px;
			font-family: "Hina Mincho", serif;
			margin: 0;
			padding: 0;
			text-align: left;
			top: 0;
			right: 0;
		}
	
	/* ヘッダー追従メニュー ul 部分 */
		.menu-group {
			width: 300px;
			position: absolute;
			right: 0;
			margin-top: 3px;
			margin-bottom: 0;
			margin-left: 0;
			margin-right: 0;
			padding: 0;
			text-align: right;
		}
	
	
		.navmenu {											/* ヘッダー内リンク */
			text-decoration: none;					/* ヘッダー内リンクの装飾を無しに */
			color:black;							/* ヘッダー内リンクの文字色を黒に */
			font-size: 7px;
		}
	
		
		.menu-item {
			text-decoration: none;
			display: inline-block;
			padding-right: 7px;	
			padding-top: 0;
			padding-left: 0;
			padding-bottom: 0;
			font-size: 7px;
		  }
		
		nav.navmenu {						
			width: 50px;							/* リンク全方向の内側の余白 */
			padding-bottom: 1px;					/* リンク下方向の内側の余白 */
			position: relative;						/*　基準位置の設定 */
		}
		
	/* ヘッダー追従メニュー　ホバー時の設定 */
	
		.navmenu::before {							/* ホバー時の設定 */
		  background: #335e84;						/* ホバー時変化の色の設定 */
		  content: '';
		  width: 100%;
		  height: 0.8px;
		  position: absolute;						/* ホバー基準位置からの変化位置の設定 */
		  left: 0;
		  bottom: 3px;
		  transform-origin: right top;				/* 変化を始める方向の設定 */
		  transform: scale(0, 1);					/* 変化したときの拡大率 */
		  transition: transform .3s;				/* 変化するときのスピード */
		}
	
		.navmenu:hover::before {
		  transform-origin: left top;
		  transform: scale(1, 1);
		}
	
	}
	
	
	






















/* 会社情報部分 */


.company {
	width: 100%;
	height: 100px;
	margin-top: 200px;
	position: relative;
}

.company_jp {
	font-size: 25px;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	padding-bottom: 0;
	font-family: "Hina Mincho", serif;
	


}

.company_En {
	display: block;
	font-size: 18px;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	font-family: "Hina Mincho", serif;
}



.company_sa {
	background-color: #8ceffa;
	width: 200px;
	height: 200px;
	position: absolute;
	left: 10%;
	top: -5%;
	border-radius: 50%;
	mix-blend-mode:multiply;



}













@media screen and (max-width: 480px) {
	

	/* 会社情報部分 */
	
	
	.company {
		width: 100%;
		height: 100px;
		margin-top: 100px;
		position: relative;
		color: #000000;
	}
	
	.company_jp {
		font-size:12px;
		width: 70%;
		margin-left: 50px;
		margin-right: auto;
		margin-bottom: 0;
		padding-bottom: 0;
		font-family: "Hina Mincho", serif;
		
	
	
	}
	
	.company_En {
		display: block;
		font-size: 10px;
		width: 70%;
		margin-left: 50px;
		margin-right: auto;
		margin-top: 0px;
		font-family: "Hina Mincho", serif;
	
	}
	
	
	
	.company_sa {
		background-color:  #8ceffa;
		width: 80px;
		height: 80px;
		position: absolute;
		left: 10%;
		top: -3%;
		border-radius: 50%;
		mix-blend-mode:color;
	
	}
	}
	


























.rinen {
	width: 100%;
	height: 400px;
	border-bottom: 1px solid #333333;

}


.rinen_title {
	text-align: center;
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	font-family: "Hina Mincho", serif;
	font-size: 25px;
}

.rinen_A {
	display: block;
	text-align: left;
	width: 650px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	font-family: "Hina Mincho", serif;
	font-size: 18px;
}





@media screen and (max-width: 480px) {
	




	.rinen {
		width: 100%;
		height: 400px;
		border-bottom: 1px solid #333333;
	
	}
	
	
	.rinen_title {
		text-align: center;
		width: 200px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 100px;
		font-family: "Hina Mincho", serif;
		font-size: 12px;
	}
	
	.rinen_A {
		display: block;
		text-align: left;
		width: 350px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0px;
		font-family: "Hina Mincho", serif;
		font-size: 10px;
	}
}	















  /* 沿革部分 */

  .enkaku {
	display: inline-block;
	width: 100%;
	height: 1300px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding-bottom: 150px;
	border-bottom: 1px solid #333333;
}

.enkaku_title {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	font-size: 25px;
	font-family: "Hina Mincho", serif;

}




.enkakutable {
	display: inline-block;
	width: 700px;
	margin-left: auto;
	margin-right: auto;
	color: rgb(0, 0, 0);
	font-size: 15px;
	font-family: "Hina Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	margin-top: 50px;
	
	
	/*background-color: aqua;*/
}

.enkakugyou {
	/*background-color: cadetblue;*/
	text-align: left;
	border-top: 0.28px solid rgb(0, 0, 0);
}






.nengetu {
	/*background-color: chocolate;*/
	text-align: left;
	width: 200px;
	height: 60px;
	font-family: "Hina Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 400;
}




.aisatu_space {
	width: 100%;
	margin-top: 50px;
	margin-left: 0;
	margin-right: 0;
	display: inline-block;
	text-align: center;
	border-bottom: 1px solid #333333;
	padding-bottom: 100px;
}



.aisatu_title {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	font-size: 25px;
	font-family: "Hina Mincho", serif;
	

}


.aisatu {
	display: inline-block;
	width: 700px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
	text-align: justify;
	font-size: 15px;
	line-height: 25px;
	font-family: "Hina Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
	
}



.daihyou {
	display: block;
	text-align: end;
	width: 700px;
	margin-left: auto;
	margin-right: auto;
}


.daihyou_A {
	font-size: 15px;
	font-family: "Hina Mincho", serif;
}


.daihyou_B {
	font-size: 20px;
	font-family: "Hina Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
}








@media screen and (max-width: 480px) {
	



  /* 沿革部分 */

  .enkaku {
		display: inline-block;
		width: 100%;
		height: 1300px;
		margin-top: 50px;
		margin-left: 0;
		margin-right: 0;
		text-align: center;
		padding-bottom: 50px;
		border-bottom: 1px solid #333333;
}

.enkaku_title {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	font-size: 12px;
	font-family: "Hina Mincho", serif;

}




.enkakutable {
	display: inline-block;
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	color: rgb(0, 0, 0);
	font-size: 15px;
	font-family: "Hina Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	margin-top: 20px;
	
	
	/*background-color: aqua;*/
}

.enkakugyou {
	/*background-color: cadetblue;*/
	text-align: left;
	border-top: 0.28px solid rgb(0, 0, 0);
}






.nengetu {
	/*background-color: chocolate;*/
	text-align: left;
	width: 100px;
	height: 60px;
	font-family: "Hina Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 10px;

}


.dekigoto {
	font-size: 10px;
}





.aisatu_space {
	width: 100%;
	margin-top: 50px;
	margin-left: 0;
	margin-right: 0;
	display: inline-block;
	text-align: center;
	border-bottom: 1px solid #333333;
	padding-bottom: 100px;
	
}




.aisatu_title {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	font-size: 12px;
	font-family: "Hina Mincho", serif;
	

}


.aisatu {
	display: inline-block;
	width: 300px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
	text-align: justify;
	font-size: 10px;
	line-height: 20px;
	font-family: "Hina Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
	
}



.daihyou {
	display: block;
	text-align: end;
	width: 300px;
	margin-left: auto;
	margin-right: auto;
}


.daihyou_A {
	font-size: 12px;
	font-family: "Hina Mincho", serif;
}


.daihyou_B {
	font-size: 12px;
	font-family: "Hina Mincho", serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
}

}

































  /* アクセス部分 */

.akusesu {
	width: 100%;
	height: 700px;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	padding-top: 100px;

}

.akusesu_title {
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	font-size: 25px;
	font-family: "Hina Mincho", serif;

}


.mapbox {
	width: 980px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	background-color: #05ff09;
	position: relative;

}


iframe {
	width: 500px;
	border-radius: 10px;
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 0;
	position:absolute;
	left: 0;

}


.here {
	position: absolute;
	right: 10%;
	width: 300px;
	margin-top: 50px;
	font-family: "Hina Mincho", serif;
	font-size: 15px;
	text-align: left;
	line-height: 1.5;
}

.point {
	display: block;
	height: 30px;
	font-size: 18px;
	padding-top: 0px;
	padding-left: 2px;
	position: relative;



}




.point::after {
	content: '';
	display: block;
	width: 5px;
	height: 25px;
	font-size: 18px;
	background-color: #8ceffa;
	position: absolute;
	top: 0px;
	left: -10px;


}







.sen {
	display: inline-block;
	width: 400px;
	border-bottom: 1px dashed #000000;
	position: absolute;
	right: 0%;
	margin-top: 200px;
}














@media screen and (max-width: 480px) {
	







  /* アクセス部分 */

  .akusesu {
	width: 100%;
	height: 700px;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	padding-top: 100px;

}

.akusesu_title {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	font-size: 12px;
	font-family: "Hina Mincho", serif;

}


.mapbox {
	width: 300px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	
	position: relative;

}


iframe {
	width: 300px;
	height: 300px;
	border-radius: 10px;
	margin-top: 0px;
	margin-bottom: 50px;
	padding: 0;
	margin-left: auto;
	margin-right: auto;

}


.here {
	display: inline-block;
	width: 250px;
	margin-top: 350px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Hina Mincho", serif;
	font-size: 10px;
	text-align: left;
	line-height: 1.5;
}

.point {
	display: block;
	height: 30px;
	font-size: 12px;
	padding-top: 0px;
	padding-left: 2px;
	position: relative;
	margin-left: auto;
	margin-right: auto;




}




.point::after {
	content: '';
	display: block;
	width: 5px;
	height: 15px;
	font-size: 10px;
	background-color: #8ceffa;
	position: absolute;
	top: 0px;
	left: -10px;


}







.sen {
	display: inline-block;
	width: 400px;
	border-bottom: 1px dashed #000000;
	position: absolute;
	right: 0%;
	margin-top: 200px;
	display: none;
}





}



























  /* フッター部分 */
  footer {
	background-color: rgb(40, 40, 36, 0.9);
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	margin-top: 58px;
	
}


.footercontent {
	width: 1500px;
	height: 350px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}

.fcon_En_jp {
	width: 480px;
	height: 120px;
	border-bottom: solid 1px #e5e5e5;
}

.fcon_link {
	width: 500px;
	display: block;
}


.link_btn {
	width: 50px;
	height:50px;

	margin-top: -70px;
	margin-left: 400px;
	border-radius: 30px;
	border-bottom: 1px solid #ffffff;
	border-top: 1px solid  #ffffff;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
}


.link_btn::before{
	content: "";
	position: absolute;
	top: 21.3%;
	left: 29%;
	width: 15px;
	height: 2px;
	border-radius: 9999px;
	background-color: #ffffff;
	transform-origin: calc(100% - 2px) 50%;
}

.link_btn::before {
	transform: rotate(45deg);
  }
  



  .link_btn::after {
  content: "";
  position: absolute;
  top: 21.7%;
  left: 29%;
  width: 15px;
  height: 2px;
  border-radius: 9999px;
  background-color:  #ffffff;
  transform-origin: calc(100% - 2px) 50%;
}

.link_btn::after {
  transform: rotate(-45deg);
}






.fcon {
	height: 50px;
	display: inline-block;
	color: #e5e5e5;
	font-size: 25px;
	font-family: "Hina Mincho", serif;
	letter-spacing: 1.5px;
	margin-bottom: -10px;
	position: relative;
}

.fcon_jp {
	display: inline-block;
	color: #e5e5e5;
	font-size: 18px;
	font-family: "Hina Mincho", serif;
	letter-spacing: 1.5px;
	margin-top: -60px;
}


















.comp_tell {
	display: inline-block;
	color: #e5e5e5;
	font-size: 25px;
	font-family: "Hina Mincho", serif;
	letter-spacing: 1.5px;
	margin-bottom: 0;
}

.comp_ju {
	display: inline-block;
	color: #e5e5e5;
	font-size: 18px;
	font-family: "Hina Mincho", serif;
	letter-spacing: 1.5px;
	margin-top: 10px;
}


.conpany {
	width: 980px;
	height: 50px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.conpanyname {
	display: inline-block;
	font-size: 15px;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
	color: #e5e5e5;
	margin: 0;

}


/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 15px;
    bottom: 50px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #ffffff;
    padding: 0 0 0 35px;
    border-top: solid 1px;
	
}
#page-top a::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
	color: #ffffff;

}


.top {
	color: #ffffff;
}
















/* フッター部分  1280px以下に適用されるCSS（デスクトップHD用） */





/* フッター部分  1280px以下に適用されるCSS（デスクトップHD用） */


@media screen and (max-width:  1680px) {

 

	/* フッター部分 */
	footer {
	  background-color: rgb(40, 40, 36, 0.9);
	  width: 100%;
	  position: relative;
	  margin: 0;
	  padding: 0;
	  margin-top: 0px;
	  
  }
  
  
  .footercontent {
	  width: 1500px;
	  height: 350px;
	  margin-left: auto;
	  margin-right: auto;
	  padding-top: 30px;
	  padding-bottom: 0;
	  padding-left: 0;
	  padding-right: 0;
  }
  
  .fcon_En_jp {
	  width: 480px;
	  height: 120px;
	  border-bottom: solid 1px #e5e5e5;
  }
  
  .fcon_link {
	  width: 500px;
	  display: block;
  }
  
  
  .link_btn {
	  width: 50px;
	  height:50px;
  
	  margin-top: -70px;
	  margin-left: 400px;
	  border-radius: 30px;
	  border-bottom: 1px solid #ffffff;
	  border-top: 1px solid  #ffffff;
	  border-left: 1px solid #ffffff;
	  border-right: 1px solid #ffffff;
	  position: relative;
  }
  
  
  .link_btn::before{
	  content: "";
	  position: absolute;
	  top: 45%;
	  left: 30%;
	  width: 15px;
	  height: 2px;
	  
	  border-radius: 9999px;
	  background-color: #ffffff;
	  transform-origin: calc(100% - 2px) 50%;
  }
  
  .link_btn::before {
	  transform: rotate(45deg);
	}
	
  
  
  
	.link_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 30%;
	width: 15px;
	height: 2px;
	
	border-radius: 9999px;
	background-color:  #ffffff;
	transform-origin: calc(100% - 2px) 50%;
  }
  
  .link_btn::after {
	transform: rotate(-45deg);
  }
  
  
  
  
  
  
  .fcon {
	  height: 50px;
	  display: inline-block;
	  color: #e5e5e5;
	  font-size: 25px;
	  font-family: "Hina Mincho", serif;
	  letter-spacing: 1.5px;
	  margin-bottom: -10px;
	  position: relative;
  }
  
  .fcon_jp {
	  display: inline-block;
	  color: #e5e5e5;
	  font-size: 18px;
	  font-family: "Hina Mincho", serif;
	  letter-spacing: 1.5px;
	  margin-top: -60px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .comp_tell {
	  display: inline-block;
	  color: #e5e5e5;
	  font-size: 25px;
	  font-family: "Hina Mincho", serif;
	  letter-spacing: 1.5px;
	  margin-bottom: 0;
  }
  
  .comp_ju {
	  display: inline-block;
	  color: #e5e5e5;
	  font-size: 18px;
	  font-family: "Hina Mincho", serif;
	  letter-spacing: 1.5px;
	  margin-top: 10px;
  }
  
  
  .conpany {
	  width: 980px;
	  height: 50px;
	  margin-left: auto;
	  margin-right: auto;
	  padding: 0;
	  text-align: center;
	  display: flex;
	  justify-content: center;
	  align-items: center;
  }
  
  .conpanyname {
	  display: inline-block;
	  font-size: 15px;
	  font-family: "Noto Serif JP", serif;
	  font-optical-sizing: auto;
	  font-weight: 100;
	  font-style: normal;
	  color: #e5e5e5;
	  margin: 0;
  
  }
  
  
  /***追従するトップへ戻るボタン***/
  #page-top {
	  position: fixed;
	  right: 15px;
	  bottom: 50px;
	  height: 50px;
	  text-decoration: none;
	  font-weight: bold;
	  transform: rotate(90deg);
	  font-size: 90%;
	  line-height: 1.5rem;
	  color: #ffffff;
	  padding: 0 0 0 35px;
	  border-top: solid 1px;
	  
  }
  #page-top a::before {
	  content: "";
	  display: block;
	  position: absolute;
	  top: -1px;
	  left: 0px;
	  width: 15px;
	  border-top: solid 1px;
	  transform: rotate(35deg);
	  transform-origin: left top;
	  color: #ffffff;
  
  }
  
  
  .top {
	  color: #ffffff;
  }
  
  
  
  
  
  }
  
  
  
  
























  @media screen and (max-width: 480px) {

	footer {
		background-color: rgb(40, 40, 36, 0.9);
		width: 100%;
		position: relative;
		margin: 0;
		padding: 0;
		margin-top: 200px;
		
	}
	
	
	.footercontent {
		width: 380px;
		height: 350px;
		margin-left: 0;
		margin-right: 0;
		padding-top: 30px;
		padding-bottom: 0;
		padding-left: 20px;
		padding-right: 0;
	}
	
	.fcon_En_jp {
		width: 200px;
		height: 80px;
		border-bottom: solid 1px #e5e5e5;
	}
	
	.fcon_link {
		width: 380px;
		display: block;
	}
	
	
	
	.link_btn {
		width: 25px;
		height:25px;
	
		margin-top: -50px;
		margin-left: 160px;
		border-radius: 30px;
		border-bottom: 1px solid #ffffff;
		border-top: 1px solid  #ffffff;
		border-left: 1px solid #ffffff;
		border-right: 1px solid #ffffff;
	}
	
	
	.link_btn::before{
		content: "";
		position: absolute;
		top: 43.6%;
		left: 33.5%;
		width: 10px;
		height: 1px;
		border-radius: 9999px;
		
		transform-origin: calc(100% - 2px) 50%;
	}
	
	.link_btn::before {
		transform: rotate(45deg);
	  }
	  
	
	
	
	  .link_btn::after {
	  content: "";
	  position: absolute;
	  top: 53.5%;
	  left: 33.5%;
	  width: 10px;
	  height: 1px;
	  border-radius: 9999px;
	 
	  transform-origin: calc(100% - 2px) 50%;
	}
	
	
	.link_btn::after {
	  transform: rotate(-45deg);
	}
	
	
	
	
	
	
	.fcon {
		height: 50px;
		display: inline-block;
		color: #e5e5e5;
		font-size: 15px;
		font-family: "Hina Mincho", serif;
		letter-spacing: 1.5px;
		margin-bottom: -60px;
		position: relative;
	}
	
	.fcon_jp {
		display: inline-block;
		color: #e5e5e5;
		font-size: 12px;
		font-family: "Hina Mincho", serif;
		letter-spacing: 1.5px;
		margin-top: -100px;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	.comp_tell {
		display: inline-block;
		color: #e5e5e5;
		font-size: 15px;
		font-family: "Hina Mincho", serif;
		letter-spacing: 1.5px;
		margin-bottom: -10px;
	}
	
	.comp_ju {
		display: inline-block;
		color: #e5e5e5;
		font-size: 12px;
		font-family: "Hina Mincho", serif;
		letter-spacing: 1.5px;
		margin-top: -10px;
	}
	
	
	.conpany {
		width: 100%;
		height: 50px;
		margin-left: auto;
		margin-right: auto;
		margin-top: -50px;
		padding: 0;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	.conpanyname {
		display: inline-block;
		font-size: 8px;
		font-family: "Noto Serif JP", serif;
		font-optical-sizing: auto;
		font-weight: 100;
		font-style: normal;
		color: #e5e5e5;
		margin: 0;
	
	}
	
	
	/***追従するトップへ戻るボタン***/
	#page-top {
		position: fixed;
		right: 10px;
		bottom: 35px;
		height: 50px;
		text-decoration: none;
		font-weight: bold;
		transform: rotate(90deg);
		font-size: 65%;
		line-height: 1.5rem;
		color: #ffffff;
		padding: 0 0 0 35px;
		border-top: solid 1px;
		
	}
	#page-top a::before {
		content: "";
		display: block;
		position: absolute;
		top: -1px;
		left: 0px;
		width: 15px;
		border-top: solid 1px;
		transform: rotate(35deg);
		transform-origin: left top;
		color: #ffffff;
	
	}
	
	
	.top {
		color: #ffffff;
	}
	
	
	
	
}
	
	
	
	


/***トップへ戻るボタンここまで***/

  /* フッター終わり部分 */

  /* フッター終わり部分 */


