#photo-left {
	width: 174px;
	margin: 1px;
	float: left;
}

.photo-tree {
	background-color: #fff;
	padding: 4px 8px;
}

#photo-center {
	width: 528px;
	margin: 1px;
	float: left;
}

.photo-content {
	background-color: #fff;
	padding: 4px 4px;
}

#photo-right {
	width: 300px;
	margin: 1px;
	float: left;
}

#photo-right-inner {
	background-color: #fff;
	padding: 4px 8px;
}

h1.round{
	margin: 0 0 15px 0;
	padding: 0;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	line-height: 1.2;
}

p.date{
	text-align: right;
	margin: 4px auto;
	padding: 0px;
	line-height: 15px;
	font-family: tahoma, arial;
	font-weight: bold;
}

.photo{
	margin: 0px auto;
	padding: 0px;
/*	width: 720px; */
/*	height: 480px; */
	text-align: center;
	overflow: hidden;
}

p.image{
	margin: 0px;
	padding: 0px;
}

h2.round {
	margin: 8px 0px;
	padding: 0px;
	color: #000;
	background-color: transparent;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}

h2.caption{
	margin: 8px 0 0;
	padding: 0px;
	color: #000;
	background-color: transparent;
	text-align: center;
	font-size: 15px;
	font-weight: normal;
	line-height: 1.2;
}


p.credit{
	text-align: right;
	margin: 0px auto;
	font-family: arial;
	font-size: 12px;
	font-style: italic;
	line-height: 15px;
}

.action{
	margin: 10px 0 4px;
	padding: 0px;
	text-align: center;
}

.dokoiku-w728 {
	width: 728px;
	padding: 0px;
	margin: 0px auto;
}

.advertisement{
	width: 720px;
	height: 60px;
	padding: 0px;
	margin: 0px auto;
}

.dokoiku{
	padding: 0px;
	margin: 0px;
	float: left;
}

.google{
	padding: 0px;
	margin: 0px;
	float: right;
}

.treeview{
	margin: 0px;
	padding: 0px;
	line-height: 0px;
}

.treeview a:link,
.treeview a:hover,
.treeview a:visited,
.treeview a:active {
	text-decoration: none;
	color: #333;
	font-size: 12px;
}

.treeview img{
	border-style: none;
}

#left table {
	font-size: 13px;
	margin: 0px;
	border-collapse: collapse;
}

#left th {
        border: none;
        padding: 0px;
        background-color: #ccc;
        text-align: center;
}

#left td {
        border: none;
        padding: 0px;
}

#left * {
	line-height: 100%;
}

.photo_outer{
	width: 512px;
	margin: 0px auto;
}

.thumbnail {
	width: 112px;
	height: 112px;
	border-style: none;
	margin: 8px 8px;
	padding: 0px;
	overflow: hidden;
	display: inline;
	float: left;
}

.close {
	margin: 0px;
	padding: 0px;
	border: 0px;
	width: 63px;
	height: 11px;
	background-repeat: no-repeat;
}

.close a {
	background-image: url('https://www.fmotor.jp/logo/btn_close-off.gif');
	background-repeat: no-repeat;
}

.close a:hover {
	background-image: url('https://www.fmotor.jp/logo/btn_close-over.gif');
	background-repeat: no-repeat;
}

.back {
	background-image: url('https://www.fmotor.jp/logo/btn_back-off.gif');
	margin: 0px;
	padding: 0px;
	width: 48px;
	height: 11px;
	background-repeat: no-repeat;
}

.back a {
	background-image: url('https://www.fmotor.jp/logo/btn_back-off.gif');
	background-repeat: no-repeat;
}

.back a:hover {
	background-image: url('https://www.fmotor.jp/logo/btn_back-over.gif');
	background-repeat: no-repeat;
}

.next {
	background-image: url('https://www.fmotor.jp/logo/btn_next-off.gif');
	margin: 0px;
	padding: 0px;
	width: 46px;
	height: 11px;
	background-repeat: no-repeat;
}

.next a {
	background-image: url('https://www.fmotor.jp/logo/btn_next-off.gif');
	background-repeat: no-repeat;
}

.next a:hover {
	background-image: url('https://www.fmotor.jp/logo/btn_next-over.gif');
	background-repeat: no-repeat;
}


#photo-disp-main {
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: auto;
	background-color: #ffe;
	padding: 0 16px 4px;
/*	height: 610px; */
}

#photo-disp-main .image img{
	max-width: 100%;
	height: auto;
}

#photo-disp-right {
	width: 160px;
	margin: 1px;
	background-color: #fff;
	float: left;
}

#photo-bottom{
	width: 998px;
	margin-top: 8px;
	background-color: #ffe;
	float: left;
	clear: both;
}

#photo-bottom-left{
	width: 530px;
	float: left;
}

#photo-bottom-right{
	width: 468px;
	float: left;
}


// モーダルウィンドウ全体のレイアウト（画面いっぱいに表示）
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.content{
    margin: 0 auto;
    padding: 40px;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}