@charset "UTF-8";

/*----- テーブルの設定 -----*/
#news table {
	border-spacing: 0;
	border-width: 0;
}

/*----- 行の設定 -----*/
/* 行の背景色を変える*/
#news tr:nth-child(even) {
	background:#eeeeee;
	border-width: 0;
}

/*----- 列の設定 -----*/
/* 投稿日 */
#news td {
	/*padding: 0.2em 0 0 0;*/
	padding: 0.2em 0 0.2em 0;
	border: 0;
	outline: 0;
	border-width: 0;
	list-style: none;
	line-height: 1.7em;
	color: #212121;
	vertical-align: top;
}
/*  */
#news td.upd-width { width: 12em; /* width: 10em; */ }		/* 投稿日：横幅を文字数で調整 */
/*#news td.pst-width { width: 80%; }

/* 投稿のタイトルと本文 */
#news .upd {
	/* font-size: small;	/* 文字の大きさ */
	font-size: x-large;	/* 文字の大きさ */
	text-align: left;
	vertical-align: middle;
	line-height: 1.7em;
	
	text-wrap: nowrap;
	
}

/* 投稿のタイトルと本文 */
#news .pst {
	font-size: medium;	/* 文字の大きさ */
	text-align: left;
	
	
}

/*----- タイトル -----*/
#news .title {
	/* font-size: large; */
	font-size: x-large;	/* 文字の大きさ */
	list-style: none;
	line-height: 1.7em;
	color: #212121;
	/*vertical-align: middle;*/
	vertical-align: top;
}

/*----- 本文 -----*/
#news .txt{
	font-size: 1.2em;
	list-style: none;
	line-height: 1.7em;
	color: #212121;
	text-align: left;
}

#news .txt p{
	/* font-size:12px; */
	font-size: 1.2em;
	margin: 0;
	padding:0 0.5em 0.5em 0;
	border: 0;
	outline: 0;

	list-style: none;
	line-height: 1.7em;
	color: #212121;
}

#news .txt .icNew {
	margin: 0;
	padding:0;
	border:1px solid #C00;
	outline: 0;

	font-size: 12px;
	color:#C00;
	width:4em;

	list-style: none;
	line-height: 1.7em;
	vertical-align: middle;
}

#news .icNew {
	margin: 0;
	padding:0;
	border:1px solid #C00;
	outline: 0;

	font-size: 12px;
	color:#C00;
	width:4em;

	list-style: none;
	line-height: 1.7em;
	
	vertical-align: 0.3em;
}


/*----- ベースになる枠 -----*/
/* 開閉のフラグ部分 */
#section {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	color: #000;
	text-align: left;
}

/*----- 閉じる -> 展開 -----*/
/* unchecked 時 */
#section .cnt_actab-content {
	overflow: hidden;
	max-height: 0;
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
}
#section input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: none;				/* □を非表示にする*/
}
/* checked 時 */
#section input:checked ~ .cnt_actab-content {
	max-height: max-content;	/* 最大展開 */
}
#section .cp_actab-content p {
	line-height: 1.1em;
}

/*----- 最大展開 -> 閉じる -----*/
/* unchecked 時 */
#section .cnt_actab-content-max {
	overflow: hidden;
	max-height: max-content;	/* 最大展開 */
	-webkit-transition: max-height 0.35s;
	transition: max-height 0.35s;
}
/* checked 時 */
#section input:checked ~ .cnt_actab-content-max {
	max-height: 0;				/* 閉じる */
}
#section .cnt_actab-content-max p {
	line-height: 1.1em;
}


/*----- クリックする文字 -----*/
#section label {
	cursor: pointer;
	width: 100%;
	/* font-size: large; */
	font-size: 1.3em;

	list-style: none;
	line-height: 1.7em;
	color: #212121;
	vertical-align: middle;
}
/* Icon ※クリックする場所 */
#section label::before {
	vertical-align: middle;
	position: absolute;
	-webkit-transition: all 0.35s;
	transition: all 0.35s;
	text-align: center;
}
/* 回転させる文字 */
#section input[type=checkbox] + label::before {
	content: '＋';
}
/* 回転させる角度 */
#section input[type=checkbox]:checked + label::before {
	transform: rotate(315deg);
}
