/* CSS Document */

#detail{
	overflow: hidden;
	}

#detailTitle{
	display: flex;
	flex-direction: column-reverse;
	}
	#detailTitle h2{
		display: flex;
		flex-direction: column;
		font-size: 1.7em;
		font-weight: bold;
		line-height: 1.5em;
		}
	#detailTitle h2+div{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		grid-gap: 0.5em 0;
		margin: 0 0 1em 0;
		font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
		}
	#detailTitle time{
		margin-right: 1.5em;
		font-size: 0.875em;
		}
	#detailTitle ul{
		display: flex;
		align-items: center;
		font-size: 0.75em;
		}
		#detailTitle li{
			min-width: 6em;
			border: 1px solid currentColor;
			padding: 0.3em 0.6em;
			text-align: center;
			}
		#detailTitle li+li{
			margin-left: 0.5em;
			}
	#detailTitle .tagNew{
		background: #9c1c29;
		border-color: transparent;
		color: #fff;
		text-transform: uppercase;
		}
	#detailTitle .tagCheck{
		background: #628280;
		border-color: transparent;
		color: #fff;
		text-transform: uppercase;
		}

#detailImages{}
	#detailImages li{}
		#detailImages li:not([data-caption=""]){
			position: relative;
			}
			#detailImages li:not([data-caption=""]):before{
				content: attr(data-caption);
				position: absolute;
				left: 0;
				bottom: 0;
				width: 100%;
				padding: 0.8em;
				background: rgba(0,0,0,0.5);
				color: #fff;
				}
		#detailImages li a{
			display: block;
			}
			#detailImages li a:hover{
				opacity: 0.75;
				}

#detailText{
	color: #4d4d4d;
	font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	line-height: 1.7em;
	}

#detailFiles{}
	#detailFiles ul{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		}
	#detailFiles li{}
		#detailFiles li a{
			position: relative;
			display: block;
			padding: 1em;
			padding-right: 3em;
			background: #fff;
			border: 1px solid #b3b3b3;
			color: inherit;
			text-align: center;
			line-height: 1.5em;
			text-decoration: none;
			}
		#detailFiles li i{
			position: absolute;
			top: calc(50% - 0.5em);
			right: 1em;
			}
	#detailFiles li+li{
		margin-top: 1em;
		}

#detailLinks{}
	#detailLinks ul{
		display: flex;
		flex-direction: column;
		}
	#detailLinks li{}
		#detailLinks li a{
			position: relative;
			display: inline-block;
			padding-left: 1.5em;
			color: inherit;
			line-height: 1.5em;
			}
			#detailLinks li a:hover{
				text-decoration: underline;
				}
		#detailLinks li i{
			position: absolute;
			top: calc(50% - 0.5em);
			left: 0;
			}
	#detailLinks li+li{
		margin-top: 1em;
		}

#detailFavorite{
	display: flex;
	justify-content: center;
	}
	#detailFavorite [data-fav-id]{
		position: relative;
		display: block;
		width: 100%;
		max-width: 300px;
		padding: 1em;
		padding-left: 3em;
		border: 1px solid #b3b3b3;
		background: #fff;
		color: inherit;
		fill: currentColor;
		text-align: center;
		text-decoration: none;
		cursor: pointer;
		z-index: 1;
		}
		#detailFavorite [data-fav-id] span{
			line-height: inherit;
			}
		#detailFavorite [data-fav-id] i{
			position: absolute;
			top: calc(50% - 0.5em);
			left: 1em;
			}
		#detailFavorite [data-fav-id] path+path{
			opacity: 0;
			}
		#detailFavorite [data-fav-id][data-fav-status="on"]{
			background: #9d804e;
			border-color: transparent;
			color: #fff;
			}
			#detailFavorite [data-fav-id][data-fav-status="on"] path+path{
				opacity: 1;
				}

#detailShare{
	padding-top: 0;
	}
	#detailShare dl{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		}
	#detailShare dt{
		width: 100%;
		margin-bottom: 1em;
		text-align: center;
		}
	#detailShare dd+dd{
		margin-left: 2em;
		}
	#detailShare a{
		position: relative;
		display: block;
		width: 50px;
		height: 50px;
		overflow: hidden;
		}
		#detailShare a svg{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			}

#pagenation{
	padding-top: 0;
	}
	#pagenation [rel="prev"],
	#pagenation [rel="next"]{
		display: none;
		
		}




/* for all */
@media (max-width: 1200px) {
/*1200px以下*/
}
@media (max-width: 992px) {
/*991px以下*/
}


/* for mobile */
@media (max-width: 767.98px) {
/*767以下px*/
#detailTitle{}
	#detailTitle h2+div{
		margin-left: 1.25em;
		}
#detailBody{}
	#detailBody > [id]{
		margin-top: 2em;
		}
#detailFavorite{
	margin-top: 2em;
	}
}
@media (max-width: 767.98px) and (orientation:portrait) {
/*767px以下 縦向き*/
#detailImages{}
	#detailImages li+li{
		margin-top: 1em;
		}
#detailFiles{}
	#detailFiles a{
		width: 100%;
		}
#detailLinks{}
	#detailLinks a{
		width: 100%;
		}
}
@media (max-width: 767.98px) and (orientation:landscape) {
/*767px以下 横向き*/
}
@media (min-width: 768px), (min-width: 576px) and (max-width: 767.98px) and (orientation:landscape) {
/*576px～767px横向き, 768px以上,*/
#detailLinks{}
	#detailFiles ul{
		align-items: flex-start;
		}
#detailLinks{}
	#detailLinks ul{
		align-items: flex-start;
		}
}
@media (min-width: 768px) and (max-width: 992px), (min-width: 576px) and (max-width: 767.98px) and (orientation:landscape) {
/*576px～767px横向き, 768px～991px*/
#detailImages{}
	#detailImages ul{
		display: flex;
		justify-content: center;
		}
	#detailImages li{
		width: 50%;
		}
	#detailImages li+li{
		margin-left: 1em;
		}
}


/* for TabletPC */
@media (min-width: 768px) {
/*768px以上*/
}
@media (min-width: 768px) and (max-width: 1200px) {
/*768px～1200px*/
}
@media (min-width: 768px) and (max-width: 992px) {
/*768px～992px*/
#detailBody{
	margin-top: -1em;
	}
	#detailBody > [id]{
		margin-top: 3em;
		}
#detailFavorite{
	margin-top: 3em;
	}
}


/* for PC */
@media (min-width: 992px) {
/*992px以上*/
#detailBody{
	display: -ms-grid;
	-ms-grid-columns: auto auto;
	display: grid;
	grid-template-columns: auto auto;
	margin-top: -2em;
	}
	#detailBody > [id]{
		margin-top: 4em;
		}
#detailText{
	-ms-grid-column: 1;
	-ms-grid-row: 1;
	grid-column: 1;
	}
#detailImages{
	-ms-grid-column: 2;
	-ms-grid-row: 1;
	-ms-grid-row-span: 3;
	grid-column: 2;
	grid-row: 1 / 5;
	width: 24em;
	margin-left: auto;
	padding-left: 4em;
	}
	#detailImages li+li{
		margin-top: 1em;
		}
#detailFiles{
	-ms-grid-column: 1;
	-ms-grid-row: 2;
	grid-column: 1;
	}
#detailLinks{
	-ms-grid-column: 1;
	-ms-grid-row: 3;
	grid-column: 1;
	}
#detailFavorite{
	margin-top: 4em;
	}
}
@media (min-width: 992px) and (max-width: 1200px) {
/*992px～1199px*/
}
@media (min-width: 1200px) {
/*1200px以上*/
/*#detailBody{
	padding: 0 90px;
	}*/
}




