/* CSS Document */
 
.tmp_file
{
	background-color: var(--body-bg-color);
	margin-left: 0px;
	margin-top: 20px;
	display: block;
	width: fit-content;
	padding: 20px;
	margin-right: 0px;
	margin-bottom: 30px;
	border: solid 1px #ddd;
	border-radius: 4px;

}


.tmp_file li
{
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
	margin-bottom: 4px;
}

#detail
{
	padding-left: 20px;
	padding-right: 20px;
}

#detail .date
{
	margin-bottom: 20px;
}

#detail .text_box
{
	margin-bottom: 30px;
}

#detail .text_box table
{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

#detail .text_box table th
{
	font-weight: normal;
	vertical-align: top;
	text-align: justify;
	width: 160px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	padding-right: 10px;
}
#detail .text_box table td
{
	text-align: justify;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	padding-right: 10px;
}


#detail .text_box p
{
	text-align: justify;
	margin-left: 0px;
	margin-right: 0px;
	padding: 0px !important;
}


#detail .photo_box ul
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 60px;
	row-gap: 20px;
	align-items: stretch;
	margin: 0px;
	padding: 0px;
}

#detail .photo_box ul li
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#detail .photo_box ul li img
{
	width: auto;
	height: auto;
}

#detail .photo_box ul li p
{
	text-align:  center;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 6px;
}

/* PCのみ */
@media screen and (min-width:1200px)
{
}

/** タブレット */
@media screen and (max-width:979px)
{

}

/* 横置きの場合 */
@media (max-width: 979px) and (orientation: landscape)
{
}

/* 縦置きの場合 */
@media (max-width: 979px) and (orientation: portrait)
{
}


@media screen and (max-width:767px)
{

	#detail .photo_box ul
	{
		column-gap: 20px;
	}
	
}

@media screen and (max-width:599px) and (orientation: portrait)
{

	#detail .text_box table th
	{
		display: block;
		width: auto;
		border-bottom: none;
	}

	#detail .text_box table td
	{
		display: block;
		margin-bottom: 10px;
	}

	#detail .photo_box ul
	{
		column-gap: 10px;
	}
	
}
