/* ボディ部分 */


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

.bodyback {
	width: 100%;
	height: auto;
	background: url(img/グレー2.jpg) repeat  bottom -80px left 0px / contain rgba(254, 254, 254, 0.704);
	background-blend-mode: soft-light;
	
	margin-top: -200px;
	padding-top: 200px;
	top: 0;
	
}





figure {
	width: 100%;
	height: 700px;
	background: url(img/自費出版ページ.png)  top -300px right 0px / cover ;
	background-blend-mode: color;
	background-repeat: no-repeat;
	margin-top: -200px;
	padding-top: 200px;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 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;
}
  
 /* ヘッダー終わり部分 */
























/* ヘッダー部分　1280px以下に適用される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%;
	}
	
	/* ヘッダーリンク部分 */
	
	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;
	}
	  
	 /* ヘッダー終わり部分 */
	
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	/* ヘッダ-部分　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);
		}
	
	}
	
	
	









/* 会社情報部分 */


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

.company_jp {
	font-size: 25px;
	width: 1100px;
	margin-left: 350px;
	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: 350px;
	margin-right: auto;
	margin-top: 0px;
	font-family: "Hina Mincho", serif;

}



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

}






























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




/* 会社情報部分 */


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

.company_jp {
	font-size: 25px;
	width: 1100px;
	margin-left: 350px;
	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: 350px;
	margin-right: auto;
	margin-top: 0px;
	font-family: "Hina Mincho", serif;

}



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

}


}
























@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: #ffe600;
	width: 80px;
	height: 80px;
	position: absolute;
	left: 10%;
	top: -3%;
	border-radius: 50%;
	mix-blend-mode:color;

}
}
















































/* 自費出版ページタイトル部分 */

.bookmaking {
	width: 100%;
	height: 1050px;
	position: relative;
	background-image: url(img/951606_s.jpg);					/* 自費出版メイン背景画像 */
	background-repeat: no-repeat;
	background-size: cover;
}


.booktitle {												/* 自費出版メインタイトル部分 */
	width: 600px;
	height: 400px;
	margin-top: 130px;
	font-size: 80px;
	font-family: "Train One", system-ui;
  	font-weight: 400;
  	font-style: normal;
	position: absolute;
	left: 10%;	
	color: #000000;
	z-index: 24;
	
}


.bookmenu {													/* 縦並びメニュー部分 */
	width: 250px;
	height: 400px;
	position: absolute;
	left: 11%;
	top:40%;
}

.bookul {
	text-align: left;
	padding: 0;


}

.bookli {
	list-style: none;
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 0;
	position: relative;
	height: 60px;
	width: 280px;
	border-radius: 40px;
}


.bookli::before {
	content: '';
	display: inline-block;
	position: absolute;
	right: 0;
	left: -90%;
	top: 0;
	bottom: 0%;
	width: 60px;
	height: 60px;
	margin: auto;
	border-radius: 50px 50px 50px 50px;
	background-color: rgb(255, 255, 255);
	z-index: 29;
	transition: 0.1s;
}


.bookli a {
	color: #000000;
	display: inline-block;
	margin-top: 15px;
	margin-left: 20px;
	position: absolute;
	top: 0;
	z-index: 30;
	width: 100%;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	font-size: 23px;
	transform-origin: left top;
}





.bookli a::before {							/* ヘッダー内aタグホバー前の設定*/
	background:  #0059ff;
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform-origin: left top;
	transform: scale(0, 1);
	transition: transform .6s;
	
  }
  
  
.bookli a:hover::before {					/* ヘッダー内リンクaタグホバーした時の設定 */
	transform-origin: left top;
	transform: scale(1, 1);
	height: 3px;
	

	
  }


  .bookli a:hover {
	color: #0059ff;
	transition: transform .5s;
  }




  













/* 自費出版ページタイトル部分終わり */































/* フロー本づくりの流れ部分 */

.making {
	width: 100%;
	margin-top: 250px;
	margin-bottom: 0px;
	text-align: center;
	margin-left: 0;
	margin-right: 0;
	/*background:linear-gradient(rgba(255, 255, 255, 0), rgba(122, 195, 255, 0.6), rgba(89, 200, 255, 0.6));*/
	z-index: 40;
	position: relative;
}


.making_1 {													/* フロー本づくりの流れタイトル部分 */
	font-size: 25px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #000000;
	margin-top: -100px;
	margin-bottom: 50px;
}


.flow_design {												/* フロー本づくりの流れ部分 */
	width: 980px;
	margin-left: auto;
	margin-right: auto;
	
}


.flow12 {
	margin: 0;
	padding: 0;
	
}

/* フロー青丸部分 */


.flow12 > li {
	list-style-type: none;
	position: relative;
	padding-bottom: 50px;
	display: flex;
	align-items: flex-start;
}


.flow12 > li:hover .icon1{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -3px;
}



.flow12 > li:hover .icon2{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


.flow12 > li:hover .icon3{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


.flow12 > li:hover .icon4{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}



.flow12 > li:hover .icon5{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


.flow12 > li:hover .icon6{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


.flow12 > li:hover .icon7{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


/* フロー青丸部分 */

/* フローグラデーション線部分 */


.flow12 > li::after {													/* フロー左線の土台部分 */
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-left: 6px dotted  #0695ae;
	border-image-source: linear-gradient(to bottom, red, yellow);
	border-image-slice: 1;

	
}

.flow12 > .list01::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#f6e576,#ffd452);
	border-image-slice: 1;
	
}



.flow12 > .list02::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ffd452,#ffac4c);
	border-image-slice: 1;
	
}


.flow12 > .list03::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ffac4c,#ff9a42);
	border-image-slice: 1;
	
}


.flow12 > .list04::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ff9a42,#ff7818);
	border-image-slice: 1;
	
}


.flow12 > .list05::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#ff7818,#ff6727);
	border-image-slice: 1;
	
}


.flow12 > .list06::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#ff6727,#ff4c1f);
	border-image-slice: 1;
	
}


.flow12 > .list07::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border: none;
	
}

/* フローグラデーション線部分 */

/* フロー白いボックス部分 */

.flow12 > li dl {
	display: inline-block;
	vertical-align: top;
	width: 800px;
	text-align: left;
	font-family: " Noto Sans TC", sans-serif;
	background-color: #ffffff;
	border-radius: 30px;
	transition: 0.5s; 										/* マウスカーソルを外すとき */
	margin-left: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 10px;
}


.flow12 > li dl:hover {													/* フロー白いボックスをホバーした時の動き */
	filter: drop-shadow(0px 6px 4px rgba(115, 137, 156, 0.6));			/* 背景シャドウがつく */
	transition: 0.5s; 													/* マウスカーソルを外すとき */
}



/* フロー青丸土台部分 */

.flow12 > li .icon1 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	font-size: 2rem;
	line-height: 100px;
	background: #f6e576;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}

.flow12 > li .icon1::-webkit-scrollbar{								/* Google・Safariでスクロールバーを非表示に */
	display: none;
  }


.flow12 > li .icon2 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	background:	#ffd452;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon2::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon3 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	background:	#ff9a42;
	border-image-slice: 1;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon3::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon4 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	text-align: center;
	vertical-align: middle;
	background:	#ff7818;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;

}


.flow12 > li .icon4::-webkit-scrollbar{
	display: none;
  }



.flow12 > li .icon5 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	font-size: 2rem;
	background:	#ff7818;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon5::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon6 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	background:#ff6727;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon6::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon7 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	background:	#ff4c1f;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon7::-webkit-scrollbar{
	display: none;
}


/* フロー青丸土台部分終わり */

/* 箱内テキスト見出し部分 */

.flow12 > li dt {
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-left: 30px;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: .1em;
	border-bottom: dotted 4px #0695ae;
}

/* 箱内テキスト本文部分 */

.flow12 > li dd {
	width: 760px;
	margin: 0;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: .1em;
	margin-left: 30px;
	font-size: 16px;
	
}

/* 箱内テキストマーカー部分 */

.genkou {
	background:linear-gradient(transparent 60%, #ff6 60%);
 
}



/*自費出版価格表*/

.moneybody {
	width: 100%;
	height:2500px;
	margin-top: 30px;
}

.making_2 {													/*自費出版価格表タイトル部分*/
	font-size: 25px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #000000;
	margin-top: 100px;
	margin-bottom: 50px;

}



.moneybun {
	font-size: 18px;
	font-family: " Noto Sans TC", sans-serif;
	margin-top: -25px;
	margin-bottom: 50px;
}


.hyobun {
	display: inline-block;
	width: 100%;
	text-align: left;
	font-size: 25px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;

}

.bookhyo {
	width: 980px;
	height: 1000px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	margin-left: auto;
	margin-right: auto;

	

}


.hyopic {														/*価格表画像部分*/
	width: 980px;
	display: inline-block;

}



.hyopic img {													
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: -50px;
}


.hyoabout {
	display: inline-block;
	width: 980px;
	text-align: left;
	padding-left: 80px;
	font-family: " Noto Sans TC", sans-serif;
	font-size: 18px;
	line-height: 1.6;

}


.hyobun2 {
	display: inline-block;
	width: 960px;
	text-align: left;
	font-size: 25px;
	margin-bottom: 0px;
	margin-top: -200px;
}




/*書籍紹介部分*/



.bookmemoraise {
	width: 100%;
	height: 1200px;
	background:linear-gradient(rgba(255, 255, 255, 0.6), rgba(122, 195, 255, 0.6), rgba(89, 200, 255, 0.6));
	padding-top: 50px;


}

.bookmemoraise_1 {
	width: 100%;
	position: relative;

}



.bookmemoraise_1title {
	font-size: 35px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #0695ae;


}

/*
.newbookubun {
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 35px;
	text-align: center;
	
}*/


.bookshoukai {
	width: 1100px;
	height: 350px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 50;
	padding-top: 50px;
}





.book1 {
	width: 275px;
	height: 350px;
	text-align: center;
}



.book2 {
	width: 275px;
	height: 350px;
	text-align: center;
}


.book3 {
	width: 275px;
	height: 350px;
	text-align: center;
}


.book4 {
	width: 275px;
	height: 350px;
	text-align: center;

}


.book1 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book2 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book3 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book4 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}



.bookshoukai_title {
	width: 1100px;
	height: 300px;
	margin-top: -80px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 51;
	margin-bottom:50px;
	text-align: left;
}


.bookshoukai_2 {
	width: 275px;
	height: 80px;
	margin-right: 0px;
	padding-left: 0px;

}


.small {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	margin-right: 15px;
}



.bookbun_1 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
	text-align: left;
}


.bookbun_2 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.bookbun_3 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.bookbun_4 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.mainbun {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	margin-top: -10px;
	font-size: 15px;
}



.morebook {
	width:980px;
	text-align: right;
	margin-left: auto;
	margin-right: auto;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 0;
	padding-right: 30px;
	position: relative;

}

.booklistbun {
	display: inline-block;
	margin-bottom: 5px;
	padding-right: 20px;

}


.booklistbun::before {
  background: #e4c27e;
  content: '';
  width: 140px;
  height: 2px;
  position: absolute;
  right: 2%;
  bottom: 0;
  padding-left: 30px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
  
}
.booklistbun:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  
}





.morebook a::before {
	content: '';
	position: absolute;
	right: 2%;
	width: 23px;
	height: 23px;
	margin: auto;
	margin-top: 2px;
	border-radius: 20px;
	background-color: #e4c27e;

  }


.morebook a::after {
	content: '';
	position: absolute;
	right: 2.5%;
	margin-top: 8px;
	border-top: 6px solid transparent;
	border-right: 0 solid transparent;
	border-left: 9px solid #ffffff;
	border-bottom: 6px solid transparent;
	box-sizing: border-box;
  }







  .bookushoukai1 {
	width: 980px;
	height: 350px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 50;
	margin-top: -100px;
}
























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







/* フロー本づくりの流れ部分 */

.making {
	width: 100%;
	margin-top: 250px;
	margin-bottom: 0px;
	text-align: center;
	margin-left: 0;
	margin-right: 0;
	/*background:linear-gradient(rgba(255, 255, 255, 0), rgba(122, 195, 255, 0.6), rgba(89, 200, 255, 0.6));*/
	z-index: 40;
	position: relative;
}


.making_1 {													/* フロー本づくりの流れタイトル部分 */
	font-size: 25px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #000000;
	margin-top: -100px;
	margin-bottom: 50px;
}


.flow_design {												/* フロー本づくりの流れ部分 */
	width: 980px;
	margin-left: auto;
	margin-right: auto;
	
}


.flow12 {
	margin: 0;
	padding: 0;
	
}

/* フロー青丸部分 */


.flow12 > li {
	list-style-type: none;
	position: relative;
	padding-bottom: 50px;
	display: flex;
	align-items: flex-start;
}


.flow12 > li:hover .icon1{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -3px;
}



.flow12 > li:hover .icon2{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


.flow12 > li:hover .icon3{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


.flow12 > li:hover .icon4{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}



.flow12 > li:hover .icon5{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


.flow12 > li:hover .icon6{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


.flow12 > li:hover .icon7{
	width: 75px;
	height: 75px;
	margin-left: 15px;
	margin-right: 0px;
	margin-top: -10px;
}


/* フロー青丸部分 */

/* フローグラデーション線部分 */


.flow12 > li::after {													/* フロー左線の土台部分 */
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-left: 6px dotted  #0695ae;
	border-image-source: linear-gradient(to bottom, red, yellow);
	border-image-slice: 1;

	
}

.flow12 > .list01::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#f6e576,#ffd452);
	border-image-slice: 1;
	
}



.flow12 > .list02::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ffd452,#ffac4c);
	border-image-slice: 1;
	
}


.flow12 > .list03::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ffac4c,#ff9a42);
	border-image-slice: 1;
	
}


.flow12 > .list04::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ff9a42,#ff7818);
	border-image-slice: 1;
	
}


.flow12 > .list05::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#ff7818,#ff6727);
	border-image-slice: 1;
	
}


.flow12 > .list06::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#ff6727,#ff4c1f);
	border-image-slice: 1;
	
}


.flow12 > .list07::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border: none;
	
}

/* フローグラデーション線部分 */

/* フロー白いボックス部分 */

.flow12 > li dl {
	display: inline-block;
	vertical-align: top;
	width: 800px;
	text-align: left;
	font-family: " Noto Sans TC", sans-serif;
	background-color: #ffffff;
	border-radius: 30px;
	transition: 0.5s; 										/* マウスカーソルを外すとき */
	margin-left: 15px;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 10px;
}


.flow12 > li dl:hover {													/* フロー白いボックスをホバーした時の動き */
	filter: drop-shadow(0px 6px 4px rgba(115, 137, 156, 0.6));			/* 背景シャドウがつく */
	transition: 0.5s; 													/* マウスカーソルを外すとき */
}



/* フロー青丸土台部分 */

.flow12 > li .icon1 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	font-size: 2rem;
	line-height: 100px;
	background: #f6e576;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}

.flow12 > li .icon1::-webkit-scrollbar{								/* Google・Safariでスクロールバーを非表示に */
	display: none;
  }


.flow12 > li .icon2 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	background:	#ffd452;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon2::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon3 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	background:	#ff9a42;
	border-image-slice: 1;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon3::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon4 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	text-align: center;
	vertical-align: middle;
	background:	#ff7818;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;

}


.flow12 > li .icon4::-webkit-scrollbar{
	display: none;
  }



.flow12 > li .icon5 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	font-size: 2rem;
	background:	#ff7818;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon5::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon6 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	background:#ff6727;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon6::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon7 {
	display: inline-block;
	margin: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	vertical-align: middle;
	background:	#ff4c1f;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 32px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon7::-webkit-scrollbar{
	display: none;
}


/* フロー青丸土台部分終わり */

/* 箱内テキスト見出し部分 */

.flow12 > li dt {
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-left: 30px;
	font-size: 25px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: .1em;
	border-bottom: dotted 4px #0695ae;
}

/* 箱内テキスト本文部分 */

.flow12 > li dd {
	width: 760px;
	margin: 0;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: .1em;
	margin-left: 30px;
	font-size: 16px;
	
}

/* 箱内テキストマーカー部分 */

.genkou {
	background:linear-gradient(transparent 60%, #ff6 60%);
 
}



/*自費出版価格表*/

.moneybody {
	width: 100%;
	height:2500px;
	margin-top: 30px;
}

.making_2 {													/*自費出版価格表タイトル部分*/
	font-size: 25px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #000000;
	margin-top: 100px;
	margin-bottom: 50px;

}



.moneybun {
	font-size: 18px;
	font-family: " Noto Sans TC", sans-serif;
	margin-top: -25px;
	margin-bottom: 50px;
}


.hyobun {
	display: inline-block;
	width: 100%;
	text-align: left;
	font-size: 25px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;

}

.bookhyo {
	width: 980px;
	height: 1000px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	margin-left: auto;
	margin-right: auto;

	

}


.hyopic {														/*価格表画像部分*/
	width: 980px;
	display: inline-block;

}



.hyopic img {													
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: -50px;
}


.hyoabout {
	display: inline-block;
	width: 980px;
	text-align: left;
	padding-left: 80px;
	font-family: " Noto Sans TC", sans-serif;
	font-size: 18px;
	line-height: 1.6;

}


.hyobun2 {
	display: inline-block;
	width: 960px;
	text-align: left;
	font-size: 25px;
	margin-bottom: 0px;
	margin-top: -200px;
}




/*書籍紹介部分*/



.bookmemoraise {
	width: 100%;
	height: 1200px;
	background:linear-gradient(rgba(255, 255, 255, 0.6), rgba(122, 195, 255, 0.6), rgba(89, 200, 255, 0.6));
	padding-top: 50px;


}

.bookmemoraise_1 {
	width: 100%;
	position: relative;

}



.bookmemoraise_1title {
	font-size: 35px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #0695ae;


}

/*
.newbookubun {
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 35px;
	text-align: center;
	
}*/


.bookshoukai {
	width: 1100px;
	height: 350px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 50;
	padding-top: 50px;
}





.book1 {
	width: 275px;
	height: 350px;
	text-align: center;
}



.book2 {
	width: 275px;
	height: 350px;
	text-align: center;
}


.book3 {
	width: 275px;
	height: 350px;
	text-align: center;
}


.book4 {
	width: 275px;
	height: 350px;
	text-align: center;

}


.book1 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book2 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book3 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book4 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}



.bookshoukai_title {
	width: 1100px;
	height: 300px;
	margin-top: -80px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 51;
	margin-bottom:50px;
	text-align: left;
}


.bookshoukai_2 {
	width: 275px;
	height: 80px;
	margin-right: 0px;
	padding-left: 0px;

}


.small {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	margin-right: 15px;
}



.bookbun_1 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
	text-align: left;
}


.bookbun_2 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.bookbun_3 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.bookbun_4 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.mainbun {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	margin-top: -10px;
	font-size: 15px;
}



.morebook {
	width:980px;
	text-align: right;
	margin-left: auto;
	margin-right: auto;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 0;
	padding-right: 30px;
	position: relative;

}

.booklistbun {
	display: inline-block;
	margin-bottom: 5px;
	padding-right: 20px;

}


.booklistbun::before {
  background: #e4c27e;
  content: '';
  width: 140px;
  height: 2px;
  position: absolute;
  right: 2%;
  bottom: 0;
  padding-left: 30px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
  
}
.booklistbun:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  
}





.morebook a::before {
	content: '';
	position: absolute;
	right: 2%;
	width: 23px;
	height: 23px;
	margin: auto;
	margin-top: 2px;
	border-radius: 20px;
	background-color: #e4c27e;

  }


.morebook a::after {
	content: '';
	position: absolute;
	right: 2.5%;
	margin-top: 8px;
	border-top: 6px solid transparent;
	border-right: 0 solid transparent;
	border-left: 9px solid #ffffff;
	border-bottom: 6px solid transparent;
	box-sizing: border-box;
  }







  .bookushoukai1 {
	width: 980px;
	height: 350px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 50;
	margin-top: -100px;
}












}





































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



/* フロー本づくりの流れ部分 */

.making {
	width: 100%;
	height: 3300px;
	margin-top: -400px;
	margin-bottom: 0px;
	text-align: center;
	margin-left: 0;
	margin-right: 0;
	/*background:linear-gradient(rgba(255, 255, 255, 0), rgba(122, 195, 255, 0.6), rgba(89, 200, 255, 0.6));*/
	z-index: 40;
	position: relative;
}


.making_1 {													/* フロー本づくりの流れタイトル部分 */
	font-size: 12px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #000000;
	margin-top: -100px;
	margin-bottom: 50px;
}


.flow_design {												/* フロー本づくりの流れ部分 */
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	
}


.flow12 {
	margin: 0;
	padding: 0;
	
}

/* フロー丸部分 */


.flow12 > li {
	list-style-type: none;
	position: relative;
	padding-bottom: 50px;
	display: flex;
	align-items: flex-start;
}


.flow12 > li:hover .icon1{
	width: 45px;
	height: 45px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: -3px;
}



.flow12 > li:hover .icon2{
	width: 45px;
	height: 45px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: -10px;
}


.flow12 > li:hover .icon3{
	width: 45px;
	height: 45px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: -10px;
}


.flow12 > li:hover .icon4{
	width: 45px;
	height: 45px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: -10px;
}



.flow12 > li:hover .icon5{
	width: 45px;
	height: 45px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: -10px;
}


.flow12 > li:hover .icon6{
	width: 45px;
	height: 45px;
	margin-left: 0px;
	margin-right: 15px;
	margin-top: -10px;
}


.flow12 > li:hover .icon7{
	width: 45px;
	height: 45px;
	margin-left: 0%;
	margin-right: 15px;
	margin-top: -10px;
}


/* フロー青丸部分 */

/* フローグラデーション線部分 */



.flow12 > .list01::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#f6e576,#ffd452);
	border-image-slice: 1;
	
}



.flow12 > .list02::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ffd452,#ffac4c);
	border-image-slice: 1;
	
}


.flow12 > .list03::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ffac4c,#ff9a42);
	border-image-slice: 1;
	
}


.flow12 > .list04::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	
	border-image-source: linear-gradient(to bottom,#ff9a42,#ff7818);
	border-image-slice: 1;
	
}


.flow12 > .list05::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#ff7818,#ff6727);
	border-image-slice: 1;
	
}


.flow12 > .list06::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border-image-source: linear-gradient(to bottom,#ff6727,#ff4c1f);
	border-image-slice: 1;
	
}


.flow12 > .list07::after {
	content: "";
	position: absolute;
	left: 5%;
	top: 0;
	width: 0;
	height: 100%;
	border: none;
	
}

/* フローグラデーション線部分 */

/* フロー白いボックス部分 */

.flow12 > li dl {
	display: inline-block;
	vertical-align: top;
	width: 80%;
	height: 200px;
	text-align: left;
	font-family: " Noto Sans TC", sans-serif;
	background-color: #ffffff;
	border-radius: 30px;
	transition: 0.5s; 										/* マウスカーソルを外すとき */
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 10px;
}


.flow12 > li dl:hover {													/* フロー白いボックスをホバーした時の動き */
	filter: drop-shadow(0px 6px 4px rgba(115, 137, 156, 0.6));			/* 背景シャドウがつく */
	transition: 0.5s; 													/* マウスカーソルを外すとき */
}



/* フロー青丸土台部分 */

.flow12 > li .icon1 {
	display: inline-block;
	margin: 0;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	vertical-align: middle;
	font-size: 2rem;
	line-height: 100px;
	background: #f6e576;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 8px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}

.flow12 > li .icon1::-webkit-scrollbar{								/* Google・Safariでスクロールバーを非表示に */
	display: none;
  }


.flow12 > li .icon2 {
	display: inline-block;
	margin: 0;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	vertical-align: middle;
	background:	#ffd452;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 8px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon2::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon3 {
	display: inline-block;
	margin: 0;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	background:	#ff9a42;
	border-image-slice: 1;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 8px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon3::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon4 {
	display: inline-block;
	margin: 0;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	text-align: center;
	vertical-align: middle;
	background:	#ff7818;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 8px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;

}


.flow12 > li .icon4::-webkit-scrollbar{
	display: none;
  }



.flow12 > li .icon5 {
	display: inline-block;
	margin: 0;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	vertical-align: middle;
	font-size: 2rem;
	background:	#ff7818;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 8px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon5::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon6 {
	display: inline-block;
	margin: 0;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	vertical-align: middle;
	background:#ff6727;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 8px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon6::-webkit-scrollbar{
	display: none;
  }


.flow12 > li .icon7 {
	display: inline-block;
	margin: 0;
	width: 30px;
	height: 30px;
	margin-right: 20px;
	vertical-align: middle;
	background:	#ff4c1f;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
	margin-left: 8px;
	margin-top: -5px;
	transition: 0.6s;
	overflow: scroll;
}


.flow12 > li .icon7::-webkit-scrollbar{
	display: none;
}


/* フロー青丸土台部分終わり */

/* 箱内テキスト見出し部分 */

.flow12 > li dt {
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 20px;
	margin-left: 30px;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: .1em;
	border-bottom: dotted 1px #0695ae;
}

/* 箱内テキスト本文部分 */

.flow12 > li dd {
	width: 250px;
	margin: 0;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: .1em;
	margin-left: 30px;
	font-size: 10px;
	margin-top: -10px;
	
}

/* 箱内テキストマーカー部分 */

.genkou {
	background:linear-gradient(transparent 60%, #ff6 60%);
 
}



/*自費出版価格表*/

.moneybody {
	width: 100%;
	height:300px;
	margin-top: 30px;
}

.making_2 {													/*自費出版価格表タイトル部分*/
	font-size: 12px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #000000;
	margin-top: 100px;
	margin-bottom: 50px;

}



.moneybun {
	font-size: 10px;
	font-family: " Noto Sans TC", sans-serif;
	margin-top: -25px;
	margin-bottom: 50px;
}


.hyobun {
	display: inline-block;
	width: 90%;
	text-align: left;
	font-size: 12px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;

}

.bookhyo {
	width: 100%;
	height: 1000px;
	font-family: "Zen Kaku Gothic New", sans-serif;

}


.hyopic {		
	margin-top: 60px;												/*価格表画像部分*/
	width: 100%;
	display: inline-block;

}



.hyopic img {													
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: -80px;
}


.hyoabout {
	display: inline-block;
	width: 85%;
	text-align: left;
	padding-left: 20px;
	font-family: " Noto Sans TC", sans-serif;
	font-size: 10px;
	line-height: 1.6;

}


.hyobun2 {
	display: inline-block;
	width: 90%;
	text-align: left;
	font-size: 12px;
	margin-bottom: 0px;
	margin-top: -200px;
}




/*書籍紹介部分*/



.bookmemoraise {
	width: 100%;
	height: 1200px;
	background:linear-gradient(rgba(255, 255, 255, 0.6), rgba(122, 195, 255, 0.6), rgba(89, 200, 255, 0.6));
	padding-top: 50px;


}

.bookmemoraise_1 {
	width: 100%;
	position: relative;

}



.bookmemoraise_1title {
	font-size: 35px;
	font-family: " Noto Sans TC", sans-serif;
	font-weight: 600;
	color: #0695ae;


}

/*
.newbookubun {
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 35px;
	text-align: center;
	
}*/


.bookshoukai {
	width: 1100px;
	height: 350px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 50;
	padding-top: 50px;
}





.book1 {
	width: 275px;
	height: 350px;
	text-align: center;
}



.book2 {
	width: 275px;
	height: 350px;
	text-align: center;
}


.book3 {
	width: 275px;
	height: 350px;
	text-align: center;
}


.book4 {
	width: 275px;
	height: 350px;
	text-align: center;

}


.book1 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book2 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book3 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}


.book4 img {
	width: 80%;
	filter: drop-shadow(3px 3px 3px rgba(40, 55, 81, 0.4));
}



.bookshoukai_title {
	width: 1100px;
	height: 300px;
	margin-top: -80px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 51;
	margin-bottom:50px;
	text-align: left;
}


.bookshoukai_2 {
	width: 275px;
	height: 80px;
	margin-right: 0px;
	padding-left: 0px;

}


.small {
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	margin-right: 15px;
}



.bookbun_1 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
	text-align: left;
}


.bookbun_2 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.bookbun_3 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.bookbun_4 {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	border-bottom: solid 1.5px;
}


.mainbun {
	width: 240px;
	display: inline-block;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 400;
	margin-top: -10px;
	font-size: 15px;
}



.morebook {
	width:980px;
	text-align: right;
	margin-left: auto;
	margin-right: auto;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 0;
	padding-right: 30px;
	position: relative;

}

.booklistbun {
	display: inline-block;
	margin-bottom: 5px;
	padding-right: 20px;

}


.booklistbun::before {
  background: #e4c27e;
  content: '';
  width: 140px;
  height: 2px;
  position: absolute;
  right: 2%;
  bottom: 0;
  padding-left: 30px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
  
}
.booklistbun:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  
}





.morebook a::before {
	content: '';
	position: absolute;
	right: 2%;
	width: 23px;
	height: 23px;
	margin: auto;
	margin-top: 2px;
	border-radius: 20px;
	background-color: #e4c27e;

  }


.morebook a::after {
	content: '';
	position: absolute;
	right: 2.5%;
	margin-top: 8px;
	border-top: 6px solid transparent;
	border-right: 0 solid transparent;
	border-left: 9px solid #ffffff;
	border-bottom: 6px solid transparent;
	box-sizing: border-box;
  }







  .bookushoukai1 {
	width: 980px;
	height: 350px;
	margin-left: auto;
	margin-right: auto;
	display: flex;	
	position: relative;
	z-index: 50;
	margin-top: -100px;
}







}





























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


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

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

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


