@charset "utf-8";

ul.ul02,
ul.ul03{
	padding-left: 25px; 
}

/*ul.ul01 > li{
	margin-top: 10px;
}*/

ul.ul01 {
    margin: 0;
}
ul.ul01 > li {
	padding: 0;
	margin: 0;
}

.list_none {
	list-style: none;
}

ol {
	padding-left: 1.5em;
}

/*list height*/
.li_mb05 > li {
	margin-bottom: 0.5em;
}


ul.ul02 > li,
ul.ul03 > li {
	padding: 0;
	margin: 0;
      list-style: none;
      position: relative;
}
ul.ul02 > li {
	padding-bottom: 0.3em;
	margin-bottom: 0.5em;
	border-bottom: 1px dotted #CCC;
}

ul.ul02 > li::before,
ul.ul03 > li::before {
        position: absolute;
        font-family:'FontAwesome';
    }

ul.ul02 > li::before {
        content: "\f0da";
        color: #CCC;
        left: -1em;
}
ul.ul03 > li::before  {
    font-weight: 400; 
    content: "\f0c8";
        color: #CCC;
        left: -1.3em;
}
/* テキストボックス 
------------------------------------*/
.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	width: auto;
	margin: 1em auto;
}
.cp_box label {
	font-size: 1.5rem;
	font-weight: normal;
	position: relative;
	display: block;
	width: 100%;
	margin: auto;
	padding: 0.3em 1em;
	cursor: pointer;
	transition: all 0.3s;
	text-align: left;
	color: #ffffff;
	background: #6F8CDA;
	border: 2px solid #6F8CDA;
	border-radius: 3px;
}
.cp_box label:hover {
	transition: all 0.3s;
	color: #6F8CDA;
	background: none;
}
.cp_box label::after {
	color: #6F8CDA;
}
.cp_box label:hover::after {
	color: #6F8CDA;
}
.cp_box input:checked ~ label::after {
	color: #6F8CDA;
}
.cp_box input:checked ~ label:hover::after {
	color: #6F8CDA;
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 0;
	margin-top: -1px;
	transition: height 0.3s ease-in-out,box-shadow 0.6s linear;
	background: rgba(255, 255, 255, 0.5);
}
.cp_box input:checked ~ div {
	transition: height 0.5s ease-in-out,box-shadow 0.1s linear;
}
/* 続きを読むを押すと表示されるテキストの高さ */
.cp_box input:checked ~ div.cp_container {
	height: 100%;
}