<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.col1 .inner {
	padding: 25px 33px 100px;
}

/*人物詳細モーダル*/
.detailContainer{
	display: none;
}

.detail{
	padding: 8px 0;
	background-image: url(../img/common/box_bg_top.png), url(../img/common/box_bg_top_right.png), url(../img/common/box_bg_top_left.png),
						url(../img/common/box_bg_bottom.png), url(../img/common/box_bg_bottom_right.png), url(../img/common/box_bg_bottom_left.png);
	background-repeat: repeat-x, no-repeat, no-repeat,
						repeat-x, no-repeat, no-repeat;
	background-position: left top, right top, left top,
						left bottom, right bottom, left bottom;
	background-color: #fff;
	background-color: #fff;
}

.detail .inner{
	position: relative;
	width: 564px;
	min-height: 382px;
	padding: 0 12px;
	overflow: hidden;
	background-color: #fff;
	background-image: url(../img/common/box_bg_rep_right.png), url(../img/common/box_bg_rep_left.png);
	background-repeat: repeat-y;
	background-position: right top, left top;
}

.detailPhoto{
	position: absolute;
	z-index: 10;
	left: 12px;
	bottom: 0;
}

.detailName{
	position: relative;
	z-index: 11;
	padding: 14px 0 0 213px;
}

.detail p{
	position: relative;
	z-index: 11;
	min-height: 206px;
	margin-left: 213px;
	padding: 8px 13px;
	background: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

/* スマートフォン用スタイル 画面の横幅が640x以下
==============================*/
@media screen and (max-width: 640px) {

	.col1 .inner {
		padding: 10px 20px 30px;
	}

	/*人物詳細*/
	.detail{
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.detail .inner{
		width: 100%;
		height: auto;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.detailImg{
		display: table;
		width: 100%;
		table-layout:fixed;
	}

	.detailImg li{
		display: table-cell;
		vertical-align: middle;
	}

	.detailPhoto{
		position: static;
		width: 100%;
	}

	.detailName{
		position: static;
		width: 100%;
		padding: 0;
	}

	.detail p{
		position: static;
		width: 100%;
		min-height: 0;
		margin: 0;
		padding: 7px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;

	}

}/*media*/</pre></body></html>