main {
	background-color: #f9f8fa;
  }

/* 相手先 */
.torihiki{
	background: #1c7eac;
	color: rgb(227, 240, 247);
  }
/* プロジェクト */
.project{
	background: rgb(227, 240, 247);
	color: #6a39f1;
  }
/* 付箋 */
.fusen{
	position: relative;
	background: #ffffb2;
	box-shadow: 0px 0px 0px 5px #fcfbfa;
	border: dashed 2px white;
	padding: 0.2em 0.5em;
	color: #454545;
  }
  .fusen:after{
	position: absolute;
	content: '';
	right: -7px;
	top: -7px;
	border-width: 0 15px 15px 0;
	border-style: solid;
	border-color: #686867 #fff #070606;
	box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
  }
  .fusen p {
	margin: 0; 
	padding: 0;
  }
/* ブロック囲み */
.cp_blockdesign01 {
	border-width: 1px;
	border-color: #757575;
	border-style: solid;
	border-radius: 4px;
	box-shadow: 0px 0px 0px 1px #BDBDBD;
}
.cp_blockdesign01 .cp_authorname {
	display: flex;
	border-bottom: 1px solid #757575;
}
.cp_blockdesign01 .cp_authorname h2 {
	margin: 0 0.5em;
	width: 70%;
}
.cp_blockdesign01 .cp_authorname ul {
	margin: 0 0;
	padding: 0.5em 0;
	width: 30%;
	text-align: center;
	background: #757575;
}
.cp_blockdesign01 .cp_authorname li {
	display: inline;
	padding: 0 0.5em;
}
.cp_blockdesign01 .cp_authorname li a {
color: #ffffff;
}
.cp_blockdesign01 .cp_authorinfo {
	padding: 1em;
}
/* ぱんくずリスト */
.cp_breadcrumb *, .cp_breadcrumb *:after, .cp_breadcrumb *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_breadcrumb {
	margin: 1em auto;
	padding: 1em 2em;
	background-color: #3949AB;
	color: #fff;
	border-radius: 0.5em;
}
.cp_breadcrumb a {
	text-decoration: none;
	color: #7986CB;
}
.cp_breadcrumb .breadcrumbs {
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.cp_breadcrumb li {
	display: inline-block;
	position: relative;
	padding-right: calc(16px + 8px);
	margin-right: 8px;
	color: #7986CB;
}
.cp_breadcrumb li::before {
	content: '›';
	width: 1em;
	height: 1em;
	line-height: 1;
	text-align: center;
	font-size: 1em;
	color: inherit;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.cp_breadcrumb li:last-child {
	margin-right: 0;
	padding-right: 0;
	color: #ffffff;
}
.cp_breadcrumb li:last-child::before {
	content: normal;
}

/* 続きを読むボタン */
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;
}
.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.cp_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
	line-height: 2.5rem;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	width: 16rem;
	font-family: FontAwesome;
	content: '\f13a'' 続きをよむ';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 20px;
	background-color: rgba(27, 37, 56, 1);
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	overflow: hidden;
	height: 250px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.cp_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
	font-family: FontAwesome;
	content: '\f139'' 閉じる';
}
.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}


/* タイトル用 */
.title h1 {
	position: relative;
	padding: 0.25em 1em;
	border-top: solid 2px black;
	border-bottom: solid 2px black;
  }
  .title h1:before, h1:after {
	content: '';
	position: absolute;
	top: -7px;
	width: 2px;
	height: -webkit-calc(100% + 14px);
	height: calc(100% + 14px);
	background-color: black;
  }
  .title h1:before {
	left: 7px;
  }
  .title h1:after {
	right: 7px;
  }