/* **********************************************************************
 * インタビュー記事用 共通CSS
 * 001 Struct
 * 002 Left Column
 * 003 Right Column
 * ********************************************************************** */

/* *******************************************************************
 * 001 Struct
 * ******************************************************************* */
div#left {
	width: 180px;
	float: left;
}

div#right {
	width: 610px;
	float: right;
}


/* *******************************************************************
 * 002 Left Column
 * ******************************************************************* */
div#left ul {
	background-image: url( "./img/left-column-border.png" );
	background-position: left;
	background-repeat: repeat-y;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
}

div#left div#contents {
	background-image: url("./img/left-column-bottom.png" );
	background-position: bottom left;
	background-repeat: no-repeat;
	padding-bottom: 11px;
}

/* *******************************************************************
 * 003 Right Column
 * ******************************************************************* */
div.box {
	margin-top: 10px;
	background-position: top left;
	background-repeat: repeat-y;
	padding: 10px;
}

div.box img.img-left {
	float: left;
	margin-right: 10px;
	margin-bottom: 20px;
	border: solid 1px #EFEFEF;
}

div.box img.img-right {
	float: right;
	margin-left: 10px;
	margin-bottom: 20px;
	border: solid 1px #EFEFEF;
}

div.box p.question {
	color: #0066ff;
	margin-bottom: 10px;
}

div.box p.answer {
	color: #646464;
	margin-bottom: 10px;
}

div.box p.comment {
	color: #999999;
	margin-bottom: 10px;
}

div.box {
	clear: both;
}



















