/* ボディ部分 */

body {
	background-color:  #c7cfd5;  /* 全体の背景色 */
	margin: 0;
	padding: 0;
	
}

.bodyback {
	width: 100%;
	height: auto;
	background: url(img/aoppoi.jpg) repeat  bottom -80px left 0px / contain rgba(255, 255, 255, 0.879);
	background-blend-mode:hard-light;
	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%;
	
}

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

header a {											/* ヘッダー内リンク */
	text-decoration: none;					/* ヘッダー内リンクの装飾を無しに */
	color:rgb(0, 0, 0);							/* ヘッダー内リンクの文字色を黒に */

}

.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;
}
  
 /* ヘッダー終わり部分 */
























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

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


	header {
		position: fixed;							/* ヘッダーの中身を横並び */			
		align-items: center;						/* ヘッダーの中身を中央寄せ */
		background-color: rgb(255, 255, 255);		/* 背景カラー */
		width: 100%;								/* 横幅いっぱい */
		height: 120px;								/* たて幅　*/
		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: 125%;
	}
	
	/* ヘッダーリンク部分 */
	
	a {											/* ヘッダー内リンク */
		text-decoration: none;					/* ヘッダー内リンクの装飾を無しに */
		color:black;							/* ヘッダー内リンクの文字色を黒に */
	}
	
	.menu-item {
		text-decoration: none;
		display: inline-block;
		padding: 15px;							/* リンク全方向の内側の余白 */
		font-size: 22px;
	  }
	
	.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: 30px;								/* 上からの距離 */
		right: 30px;							/* 右からの距離 */
		font-family: "Hina Mincho", serif;
		text-align: right;
		margin: 0;
		padding: 0;
	}
	
	.menu-group {
		margin: 0;
		padding: 0;
	}
	  
	 /* ヘッダー終わり部分 */
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/* ヘッダ-部分　480px以下に適用されるCSS（スマホ用） */
	
	@media screen and (max-width: 480px) {
	
		header {
			position: fixed;							/* ヘッダーの中身を横並び */			
			align-items: center;						/* ヘッダーの中身を中央寄せ */
			background-color: rgb(255, 255, 255);		/* 背景カラー */
			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;
		}
	
	
		nav.navmenu {											/* ヘッダー内リンク */
			text-decoration: none;					/* ヘッダー内リンクの装飾を無しに */
			color:black;							/* ヘッダー内リンクの文字色を黒に */
			font-size: 7px;
		}
	
		
		nav .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);
		}
	
	}
	
	
	
















/* サービスページ部分 */


.service1 {
	width: 100%;
	height: 100px;
	margin-top: 200px;
	position: relative;
	color: #000000;
}



.service1_sa {
	background: linear-gradient(to bottom, hsl(157, 94%, 75%), #8ce2f5);
	
	width: 200px;
	height: 200px;
	position: absolute;
	left: 10%;
	top: 15%;
 	filter:blur(10px);
  border-radius: 70% 60% 50% 50% / 50% 60% 70% 80%;
  z-index: 10;
  opacity: calc(0.6);

}



.service1_jp {
	font-size: 25px;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	padding-bottom: 0;
	font-family: "Hina Mincho", serif;
	position: absolute;
	z-index: 11;
	left: 13%;
	top: -10%;
	


}

.service1_En {
	display: block;
	font-size: 18px;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	position: absolute;
	font-family: "Hina Mincho", serif;
	z-index: 11;
	left: 13%;
	top: 48%;
}






.Slide {
	width: 1000px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 200px;

}

.Slide_text {
	height: 100px;
	font-family: "Hina Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 25px;
	margin: 0;
	padding: o;
	letter-spacing: 1.5px;
	margin-bottom: -60px;
}



.arrow {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 2px;
	margin-top: -50px;
	border-radius: 9999px;
	background-color: #000000;
  }
  
  .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 20px;
	height: 2px;
	border-radius: 9999px;
	background-color: #000000;
	transform: rotate(45deg);
	transform-origin: calc(100% - 2px) 50%;
  }
  







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

.service1 {
	width: 100%;
	height: 100px;
	margin-top: 100px;
	position: relative;
	color: #000000;
}



.service1_sa {
	background: linear-gradient(to bottom, hsl(157, 94%, 75%), #8ce2f5);
	width: 80px;
	height: 80px;
	position: absolute;
	top: -3%;
 	filter:blur(10px);
  border-radius: 70% 60% 50% 50% / 50% 60% 70% 80%;
  z-index: 10;
  opacity: calc(0.6);

}



.service1_jp {
	font-size: 12px;
	width: 70%;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0px;
	padding-bottom: 0;
	font-family: "Hina Mincho", serif;


}

.service1_En {
	display: block;
	font-size: 10px;
	width: 70%;
	margin-top: -40px;
	margin-right: auto;
	position: absolute;
	font-family: "Hina Mincho", serif;

}






.Slide {
	width: 300px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;

}

.Slide_text {
	height: 100px;
	font-family: "Hina Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	margin: 0;
	padding: o;
	letter-spacing: 1.5px;
	margin-bottom: -80px;
}



.arrow {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 1px;
	margin-top: -70px;
	border-radius: 9999px;
	background-color: #000000;
  }
  
  .arrow::before {
	content: "";
	position: absolute;
	top: calc(50% - 2px);
	right: 0;
	width: 10px;
	height: 1px;
	border-radius: 9999px;
	background-color: #000000;
	transform: rotate(45deg);
	transform-origin: calc(100% - 2px) 50%;
  }
  




  }

























/* 印刷制作部分 */



.news {
	width: 1000px;
	height: 500px;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 400px;
}

.news::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.news::-webkit-scrollbar-thumb {
    background: #58b8f4;
	border-radius: 5px;
}
.news::-webkit-scrollbar-track {
    background: linear-gradient(to right, hsla(157, 94%, 75%, 0.571), #8ce2f58d);
	border-radius: 5px;
}




.news_mainbox {
	width: 300px;
	height: 400px;
	margin: 15px;



}




.news_pic1 {
	width: 300px;
	height: 200px;
	background-image: url(img/サイトモックアップ.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	
	



}

.news_pic2 {
	width: 300px;
	height: 200px;
	background-image: url(img/サイトモックアップ.jpeg);

}


.news_pic3 {
	width: 300px;
	height: 200px;
	background-image: url(img/サイトモックアップ.tif);

}

.news_article {
	width: 275px;
	height: 150px;
	padding: 0;
	padding-left: 15px;
	margin-top: 40px;
	margin-right: 0;
}




.news_article1 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	padding: 0;
	margin: 0;
	width: 275px;
}



.time {
	font-family: "Josefin Sans", sans-serif;
	  font-optical-sizing: auto;
	  font-style: normal;
	  font-size: 20px;
	  margin-bottom: 15px;
	  display: block;
	  padding: 0;
	  border-bottom:dashed 1.5px #335e84;
}




.staff_title {
	width: 1000px;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	text-align: center;

	font-size: 25px;
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	padding-bottom: 0;
	font-family: "Kaisei Opti", serif;
	font-weight: 400;
	font-style: normal;
	
	

}












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




/* 印刷制作部分 */



.news {
	width: 350px;
	height: 500px;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	/*display: flex;*/
	overflow-x: auto;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	margin-bottom: 200px;
}

.news::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.news::-webkit-scrollbar-thumb {
    background: #58b8f4;
	border-radius: 5px;
}
.news::-webkit-scrollbar-track {
    background: linear-gradient(to right, hsla(157, 94%, 75%, 0.571), #8ce2f58d);
	border-radius: 5px;
}




.news_mainbox {
	width: 300px;
	height: 400px;
	margin: 15px;
	border-left: 1px solid #333333;


}




.news_pic1 {
	width: 200px;
	height: 200px;
	background-image: url(img/サイトモックアップ.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 20px;
	
	



}

.news_pic2 {
	width: 200px;
	height: 200px;
	background-image: url(img/サイトモックアップ.jpeg);

}


.news_pic3 {
	width: 200px;
	height: 200px;
	background-image: url(img/サイトモックアップ.tif);

}

.news_article {
	width: 200px;
	height: 150px;
	padding: 0;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0;
	margin-left: 20px;
}




.news_article1 {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 10px;
	padding: 0;
	margin: 0;
	width: 200px;
}



.time {
	font-family: "Josefin Sans", sans-serif;
	  font-optical-sizing: auto;
	  font-style: normal;
	  font-size: 12px;
	  margin-bottom: 15px;
	  display: block;
	  padding: 0;
	  border-bottom:dashed 1px #335e84;
}




.staff_title {
	width: 300px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	text-align: center;
	font-size: 12px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
	padding-bottom: 0;
	font-family: "Kaisei Opti", serif;
	font-weight: 400;
	font-style: normal;
	
	

}





}




















.staff {
	width: 1100px;
	height: 2000px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: -200px;
	display: flex;

	
}

.icon {
	width:400px;
	height: 400px;
	
	margin-top: 100px;
	background-image: url(img/production.png);
	background-size: contain;
	background-repeat: no-repeat;
}



.memo {
	width: 900px;
	height: 300px;
	margin-left:100px;
	margin-top: 100px;
	background-color: #ffffff;
	border-radius: 50px;
	filter: drop-shadow(3px,3px,3px,#333333);
}














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


	.staff {
		width: 300px;
		height: 2000px;
		margin-left: auto;
		margin-right: auto;
		position: relative;
		margin-top: -100px;
		/*display: flex;*/
		display: block;

	
		
	}
	
	.icon {

		width:300px;
		margin-top: 100px;
		background-image: url(img/production.png);
		background-size: 100%;
		margin-bottom: -100px;
		background-repeat: no-repeat;
	}
	
	
	
	.memo {
		width: 300px;
		height: 00px;
		margin-top: -350px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 0px;
		background-color: #ffffff;
		border-radius: 50px;
		filter: drop-shadow(3px,3px,3px,#333333);
	}
	
	
}	





























  /* フッター部分 */
  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;
	text-decoration: none;
}

























/* フッター部分  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;
	}
	
	
	
	
}
	
	
	
	


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

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

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





