@charset "utf-8";
/* CSS Document */

#workflow_content a:hover {
	opacity: 0.5;
}

/* 第一階層タイトル（水色・丸ポチ）*/
#workflow_content h3 {
	display: block;
	color: #505050;
	line-height: 1.3;
	background: #dbebf8;
	vertical-align: middle;
	border: none;
	border-radius: 25px 0px 0px 25px;
	padding: 0.5em;
	margin: 2.5em 0 1.5em;
}
#workflow_content h3:before {
	content: '●';
	color: #fff;
	margin-right: 8px;
}

/* 第二階層 */
#workflow_content ol {
	list-style-type: none; /* 元の数字を消し、スタイルを別途適用 */
	counter-reset: item;
	margin-left: 15px;
}
/* 第二階層タイトル（水色ボーダーライン・連番）*/
#workflow_content ol li h4 {
	line-height: 1.8em;
	border-left: 5px solid #6cb4e4;
	border-bottom: 1px solid #6cb4e4;
	padding-left: 5px;
	margin: 15px 0;
}
#workflow_content ol>li h4:before {
	counter-increment: item;
	content: counter(item)'. ';
}
/* 第二階層ulコンテンツ */
/* ul共通 */
#workflow_content ul {
	margin-left: 1.5em; /* text-indentをかけているので、実質0.5em */
}
#workflow_content ul li {
	text-indent: -1em;
}
#workflow_content ul li:before {
	content: '・';
	font-weight: bold;
}

/* 第三階層タイトル（オレンジ・吹き出し）*/
#workflow_content h5 {
	position: relative;
	background: #fdba4b;
	padding: 0.4em;
	margin: 1.5em 0 1.3em 2em;
}
#workflow_content h5:after {
	position: absolute;
	content: '';
	top: 100%;
	left: 30px;
	border: 15px solid transparent;
	border-top: 15px solid #fdba4b;
	width: 0;
	height: 0;
}
/* 第三階層ulコンテンツ */
#workflow_content h5+ul {
	margin-left: 3.5em;
	margin-bottom: 1.5em;
}

/* 第三階層：Dreamweaver */
#workflow_content .dw {
	margin-top: 1.5em;
	margin-left: 2em;
	margin-bottom: 2em;
}
/* 第三階層：Dreamweaver タイトル*/
#workflow_content .dw .dw-title {
	color: #6cb4e4;
	padding: 0.25em 0.25em 0.25em 3em;
	border-top: solid 2px #6cb4e4;
	border-bottom: solid 2px #6cb4e4;
	/*background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);*/
	background: url(../images/arrow01.svg), repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
	background-repeat: no-repeat;
	background-position: 1%;
	cursor: pointer;
}
#workflow_content .dw .dw-title.open {
	background: url(../images/arrow02.svg), repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
	background-repeat: no-repeat;
	background-position: 1%;
}
/* 第三階層：Dreamweaver ulコンテンツ*/
#workflow_content .dw .dw-title+ul {
	padding-top: 0.5em;
	color: #1e9be0;
}

/* 第四階層タイトル（ピンク・付箋風）*/
#workflow_content .pink_sticky {
	position: relative;
	background: #ffb2bc;
	box-shadow: 0px 0px 0px 5px #ffb2bc;
	border: dashed 2px white;
	padding: 0.2em 0.7em;
	color: #454545;
	margin-left: 3em;
	margin-bottom: 2em
}
#workflow_content .pink_sticky:after {
	position: absolute;
	content: '';
	left: -7px;
	top: -7px;
	border-width: 0 0 15px 15px;
	border-style: solid;
	border-color: #fff #fff #fc869a;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
#workflow_content .pink_sticky .pink_title {
	font-weight: bold;
	font-style: italic;
}

/* フォルダ構造イメージ */
.img-list {
	width: 80%;
	height: auto;
	margin-bottom: 1.5em;
	border: 1px solid #ccc;
}
@media screen and (max-width:414px) {
	.img-list {
		width: 100%;
	}
}

/* パンくずリスト */
#workflow_content ul.breadcrumb {
	margin-left: 0;
	padding-left: 0;
}
#workflow_content ul.breadcrumb li{
	position: relative;
	display: inline-block;/*横に並ぶように*/
	list-style: none;
	font-weight: bold; /*太字*/
	margin-right: 12px;
	text-indent: 0;
}
#workflow_content ul.breadcrumb li:before {
	content: none; /* 打ち消し */
}
#workflow_content ul.breadcrumb li:after{/*三角の部分*/
		content: "";
		position: absolute;
		top: 0;
		left: 100%;
		border-style: solid;
		border-color: transparent;
		border-left-color: #aedfc6;/*背景色*/
		border-width: 14px 12px;
		width: 0;
		height: 0;
}
#workflow_content ul.breadcrumb li a {
		display: inline-block;
		padding: 0 3px 0 7px;
		height: 28px;
		line-height: 28px;
		text-decoration: none;
		color: #747772;
		background: #aedfc6;/*背景色*/
		font-size: 13px;
}
#workflow_content ul.breadcrumb li a:hover {
	color: #FFF;
}
#title_0,
#title_1,
#title_2,
#title_3,
#title_4,
#title_5 {
  position: relative;
  top: -100px;
  display: block;
}