﻿@charset "UTF-8";

body {
	font-family: "MS Pゴシック", sans-serif;
	font-size: 20;
	margin: 10;
	padding: 10;
	text-align: left;
	color: black;
	background-color: white;
}

a:link,
a:visited {
	color: #8080C0;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a.emph:link,
a.emph:visited {
	color: #C08080;
	text-decoration: underline;
}

a.emph:hover {
	text-decoration: none;
}

ul {
	padding: 0;
}

ul li {
	color: #404040;
	border-left: solid 6px #1fa67a;
	border-bottom: solid 2px #dadada;
	background: whitesmoke;
	margin-bottom: 5px;
	line-height: 1.5;
	padding: 0.5em;
	list-style-type: none!important;
	font-weight: bold;
}

.block {
	border-left: solid 3px #666666;
}

.cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #1fa67a;
}
.cp_actab input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.cp_actab label {
	position: relative;
	display: block;
	padding: 0 0 0 1em;
	cursor: pointer;
	margin: 0 0 1px 0;
}
.cp_actab .cp_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
	color: #333333;
}
.cp_actab .cp_actab-content p {
	margin: 1em;
	margin-top: 0em;
}
/* :checked */
.cp_actab input:checked ~ .cp_actab-content {
	max-height: 50em;
}