/* ボディ部分 */

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, 243, 0.512);
	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%;
	filter: drop-shadow(0px 2px 3px rgba(21, 29, 37, 0.763));	
}

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

header a {											/* ヘッダー内リンク */
	text-decoration: none;					/* ヘッダー内リンクの装飾を無しに */
	color:rgb(255, 255, 255);							/* ヘッダー内リンクの文字色を黒に */
	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;
}
  
 /* ヘッダー終わり部分 */
























/* ヘッダー部分　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%;
	filter: drop-shadow(0px 2px 3px rgba(21, 29, 37, 0.763));	
}

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

header a {											/* ヘッダー内リンク */
	text-decoration: none;					/* ヘッダー内リンクの装飾を無しに */
	color:rgb(255, 255, 255);							/* ヘッダー内リンクの文字色を黒に */
	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;
}
  
 /* ヘッダー終わり部分 */




}













	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/* ヘッダ-部分　480px以下に適用されるCSS（スマホ用） */
	
	@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;
		}
	
	
		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);
		}
	
	}
	
	
	





















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

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



	figure {
		width: 100%;
		height: 700px;
		background-blend-mode: darken;
		background: url(img/印刷透過.png)  top -300px left 0px / cover ;
		background-blend-mode: darken;
		background-repeat: no-repeat;
		margin-top: -200px;
		padding-top: 200px;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;

		


	
	}
	











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


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

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


}

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



.service1_sa {
	background-color: #05cdff;
	background-blend-mode: multiply;
	width: 200px;
	height: 200px;
	position: absolute;
	left: 10%;
	top: -5%;
	border-radius: 50%;
	mix-blend-mode: overlay; 
	

}





.service2 {
	width: 100%;
	height: 570px;
	margin-top: 50px;
	position: relative;
	background-image: url(img/designbackimg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top -280px left 0;
	padding-top: 100px;
	background-blend-mode: multiply;
}






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


}

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



.service2_sa {
	background-color: #05cdff;
	background-blend-mode: multiply;
	width: 200px;
	height: 200px;
	position: absolute;
	left: 10%;
	top: 15%;
	border-radius: 50%;
	mix-blend-mode:saturation;

}






















figure {
	width: 100%;
	height: 700px;
	background-blend-mode: darken;
	background: url(img/印刷透過.png)  top -300px left 0px / cover ;
	background-blend-mode: darken;
	background-repeat: no-repeat;
	margin-top: -200px;
	padding-top: 200px;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;

	



}












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


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

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



}

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



.service1_sa {
background-color: #05cdff;
background-blend-mode: multiply;
width: 200px;
height: 200px;
position: absolute;
left: 10%;
top: -5%;
border-radius: 50%;
mix-blend-mode: overlay; 


}





.service2 {
width: 100%;
height: 570px;
margin-top: 50px;
position: relative;
background-image: url(img/designbackimg.png);
background-size: cover;
background-repeat: no-repeat;
background-position: top -280px left 0;
padding-top: 100px;
background-blend-mode: multiply;
}






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



}

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



.service2_sa {
background-color: #05cdff;
background-blend-mode: multiply;
width: 200px;
height: 200px;
position: absolute;
left: 10%;
top: 15%;
border-radius: 50%;
mix-blend-mode:saturation;

}

}




































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




	figure {
		width: 100%;
		height: 300px;
		background-blend-mode: darken;
		background: url(img/印刷透過.png)  top 150px left 0px / contain ;
		background-blend-mode: darken;
		background-repeat: no-repeat;
		margin-top: -200px;
		padding-top: 200px;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;

		


	
	}
	











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


.service1 {
	width: 100%;
	height: 100px;
	margin-top: 100px;
	margin-left: 0;
	margin-right: 0;
    margin-bottom: 0;
	position: relative;
	color: #ffffff;
}

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


}

.service1_En {
	display: block;
	font-size: 10px;
	width: 70%;
	margin-left: 50px;
	margin-right: auto;
	margin-top: 0px;
	font-family: "Hina Mincho", serif;
}



.service1_sa {
	background-color: #05cdff;
	background-blend-mode: multiply;
	width: 80px;
	height: 80px;
	position: absolute;
	left: 10%;
	top: -3%;
	border-radius: 50%;
	mix-blend-mode: overlay; 
	

}





.service2 {
	width: 100%;
	height: 300px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;

	position: relative;
	background-image: url(img/designbackimg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top -80px left 0;
	padding-top: 100px;
	background-blend-mode: multiply;
}






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


}

.service2_En {
	display: block;
	font-size: 10px;
	width: 70%;
	margin-left: 50px;
	margin-right: auto;
	margin-top: 0px;
	font-family: "Hina Mincho", serif;
}



.service2_sa {
	background-color: #05cdff;
	background-blend-mode: multiply;
	width: 80px;
	height: 80px;
	position: absolute;
	left: 10%;
	top: 15%;
	border-radius: 50%;
	mix-blend-mode:saturation;

}


}

































/* 印刷制作部分 */


.makebook {
	width: 100%;
	height: 1400px;
	margin: 0;
	padding:0;
	margin-top: 200px;
	

}





.makebookA {
	width: 100%;
	height: 500px;
	margin: 0;
	padding:0;

}


.makebookC{
	width: 100%;
	height: 500px;
	margin: 0;
	padding:0;

}




.makebook_A {
	width: 1000px;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top:150px;
	display: flex;
	justify-content: center;
	
}




.makebook_B {
	width: 1000px;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	display: flex;
	justify-content: center;
	
}



.makebook_C {
	width: 1000px;
	height: 300px;
	margin-left: 510px;
	margin-right: auto;
	margin-top: 150px;
	
	justify-content: center;
	
}






.box_A {
	width: 485px;
	height: 300px;
	margin: 0;
	padding: 0;
	position: relative;


}

.box_B {
	width: 485px;
	height: 300px;
	margin-left: 50px;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	position: relative;


}

.pic_l {
	width: 150px;
	height: 150px;
	background-color: #333333;
	position: absolute;
	left: 0;
	z-index: 0;

}


.pic_design {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【デザイン】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}




.pic_reaf {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【リーフレット】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}




.pic_kinensi {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【記念誌】.png);
	background-size: 125%;
	background-repeat: no-repeat;
	background-position: right 2px top -0.5px;
	position: absolute;
	left: 0;
	z-index: 0;


}



.pic_dtp{
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【DTP】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}

.pic_book {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【自費出版】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}

.pic_repeat {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【定期刊行物】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;

}


.pic_posuta {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【ポスター】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;

}




.pic_ZINE {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【ZINE】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;

}










.pic_r {
	width: 150px;
	height: 150px;
	background-color: #333333;
	position: absolute;
	left: 0;
	z-index: 0;

}

.title_service1 {
	font-family: "Hina Mincho", serif;
	font-size: 18px;
	margin-left: 15px;
	margin-top: 70px;
	position: absolute;
	left: 160px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;


}

.title_service2 {
	font-family: "Hina Mincho", serif;
	font-size: 18px;
	margin-left: 15px;
	margin-top: 70px;
	position: absolute;
	left: 160px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;

	
	

}




.title_service3 {
	font-family: "Hina Mincho", serif;
	font-size: 18px;
	margin-left: 15px;
	margin-top: 10px;
	position: absolute;
	left: 0px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;

	
	

}










































.book_service1 {
	width: 95%;
	font-family: "Hina Mincho", serif;
	font-size: 14.5px;
	position: absolute;
	top: 150px;

	padding-left: 20px;
	z-index: 0;

	
}





.book_service2 {
	width: 95%;
	font-family: "Hina Mincho", serif;
	font-size: 14.5px;
	position: absolute;
	top: 150px;
	
	padding-left: 20px;
	z-index: 0;
	
}



















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



/* 印刷制作部分 */


.makebook {
	width: 100%;
	height: 1400px;
	margin: 0;
	padding:0;
	margin-top: 200px;
	

}





.makebookA {
	width: 100%;
	height: 500px;
	margin: 0;
	padding:0;

}


.makebookC{
	width: 100%;
	height: 500px;
	margin: 0;
	padding:0;

}




.makebook_A {
	width: 1000px;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top:150px;
	display: flex;
	justify-content: center;
	
}




.makebook_B {
	width: 1000px;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
	display: flex;
	justify-content: center;
	
}



.makebook_C {
	width: 200px;
	height: 300px;
	margin-left: 360px;
	margin-right: auto;
	margin-top: 150px;
	
	justify-content: center;
	
}






.box_A {
	width: 485px;
	height: 300px;
	margin: 0;
	padding: 0;
	position: relative;


}

.box_B {
	width: 485px;
	height: 300px;
	margin-left: 50px;
	margin-right: 0;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	position: relative;


}

.pic_l {
	width: 150px;
	height: 150px;
	background-color: #333333;
	position: absolute;
	left: 0;
	z-index: 0;

}


.pic_design {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【デザイン】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}




.pic_reaf {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【リーフレット】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}




.pic_kinensi {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【記念誌】.png);
	background-size: 125%;
	background-repeat: no-repeat;
	background-position: right 2px top -0.5px;
	position: absolute;
	left: 0;
	z-index: 0;


}



.pic_dtp{
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【DTP】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}

.pic_book {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【自費出版】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}

.pic_repeat {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【定期刊行物】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;

}


.pic_posuta {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【ポスター】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;

}




.pic_ZINE {
	width: 150px;
	height: 150px;
	background-image: url(img/webアイコン【ZINE】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;

}










.pic_r {
	width: 150px;
	height: 150px;
	background-color: #333333;
	position: absolute;
	left: 0;
	z-index: 0;

}

.title_service1 {
	font-family: "Hina Mincho", serif;
	font-size: 18px;
	margin-left: 15px;
	margin-top: 70px;
	position: absolute;
	left: 160px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;


}

.title_service2 {
	font-family: "Hina Mincho", serif;
	font-size: 18px;
	margin-left: 15px;
	margin-top: 70px;
	position: absolute;
	left: 160px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;

	
	

}




.title_service3 {
	font-family: "Hina Mincho", serif;
	font-size: 18px;
	margin-left: 15px;
	margin-top: 10px;
	position: absolute;
	left: 0px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;

	
	

}










































.book_service1 {
	width: 95%;
	font-family: "Hina Mincho", serif;
	font-size: 14.5px;
	position: absolute;
	top: 150px;

	padding-left: 20px;
	z-index: 0;

	
}





.book_service2 {
	width: 95%;
	font-family: "Hina Mincho", serif;
	font-size: 14.5px;
	position: absolute;
	top: 150px;
	
	padding-left: 20px;
	z-index: 0;
	
}





}











































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





/* 印刷制作部分 */


.makebook {
	width: 100%;
	height: 1750px;
	
	padding:0;
	margin-top: -200px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
	display: block;
	

}





.makebookA {
	width: 100%;
	height: 1000px;
	margin: 0;
	padding:0;
	display: block;

}






.makebookC {
	width: 100%;
	height: 500px;
	margin: 0;
	padding:0;
	display: block;
	margin-top: -200px;
	

}






.makebook_A {
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top:150px;
	display: block;
	
	
}




.makebook_B {
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 250px;
	justify-content: center;
	display: block;
	
}



.makebook_C {
	width: 100%;
	height: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 200px;
	
	justify-content: center;
	
}



.makebook_D{
	width: 100%;
	height: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-top: -500px;

	justify-content: center;
	
}






.box_A {
	width: 300px;
	height: 300px;
	margin-left: 65px;
	margin-right: auto;

	padding: 0;
	position: relative;
	display: block;


}

.box_B {
	width: 300px;
	height: 300px;
	margin-left: 65px;
	margin-right: auto;
	margin-top: -50px;
	padding: 0;
	position: relative;



}

.box_D{
	width: 300px;
	height: 300px;
	margin-left: 65px;
	margin-right: auto;
	margin-top: -100px;
	padding: 0;
	position: relative;



}







.pic_l {
	width: 150px;
	height: 150px;
	background-color: #333333;
	position: absolute;
	left: 0;
	z-index: 0;

}


.pic_design {
	width: 70px;
	height: 70px;
	background-image: url(img/webアイコン【デザイン】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}




.pic_reaf {
	width: 70px;
	height: 70px;
	background-image: url(img/webアイコン【リーフレット】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}




.pic_kinensi {
	width: 70px;
	height: 70px;
	background-image: url(img/webアイコン【記念誌】.png);
	background-size: 125%;
	background-repeat: no-repeat;
	background-position: right 2px top -0.5px;
	position: absolute;
	left: 0;
	z-index: 0;


}



.pic_dtp{
	width: 80px;
	height: 80px;
	background-image: url(img/webアイコン【DTP】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;


}

.pic_book {
	width: 70px;
	height: 70px;
	background-image: url(img/webアイコン【自費出版】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0px;
	z-index: 0;


}

.pic_repeat {
	width: 70px;
	height: 70px;
	background-image: url(img/webアイコン【定期刊行物】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;

}


.pic_posuta {
	width: 70px;
	height: 70px;
	background-image: url(img/webアイコン【ポスター】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0px;
	z-index: 0;

}




.pic_ZINE {
	width: 70px;
	height: 70px;
	background-image: url(img/webアイコン【ZINE】.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	left: 0;
	z-index: 0;

}










.pic_r {
	width: 150px;
	height: 150px;
	background-color: #333333;
	position: absolute;
	left: 0;
	z-index: 0;

}

.title_service1 {
	font-family: "Hina Mincho", serif;
	font-size: 13px;
	margin-left: 90px;
	margin-top: 30px;
	position: absolute;
	left: 0px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;


}

.title_service2 {
	font-family: "Hina Mincho", serif;
	font-size: 13px;
	margin-left: 90px;
	margin-top: 30px;
	position: absolute;
	left: 0px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;

	
	

}




.title_service3 {
	font-family: "Hina Mincho", serif;
	font-size: 13px;
	margin-left: 0px;
	margin-top: 0px;
	position: absolute;
	left: 0px;
	
	border-bottom: 1.5px dashed #000000;
	color: #000000;
	z-index: 0;

	
	

}




























.book_service1 {
	width: 100%;
	font-family: "Hina Mincho", serif;
	font-size: 12px;
	position: absolute;
	top: 70px;
	padding-left: 0px;
	z-index: 0;

	
}





.book_service2 {
	width: 100%;
	font-family: "Hina Mincho", serif;
	font-size: 12px;
	position: absolute;
	top: 70px;
	
	padding-left: 0px;
	z-index: 0;
	
}




.book_service4 {
	width: 100%;
	font-family: "Hina Mincho", serif;
	font-size: 12px;
	position: absolute;
	top: 30px;
	padding-left: 0px;
	z-index: 0;
	margin-left: 0px;
	margin-right: auto;


	
}


}















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


.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: 33%;
	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: 33%;
  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用） */


@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;
	}
	
	
	
	
}
	
	
	
	


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

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

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



















