@charset "utf-8";
/*-------------------------*/
/*----- name -----*/
/*-------------------------*/
.name, a.name {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.1;
}
.cm {
	line-height: 1.1;
}
.pen {
	background-color: #FFFF00;
}
.breadcrumb-item a.here {
	color: #999;
}
a.jump:after {
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-weight: bold;/*フォントによって必要らしい*/
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 9px;
	padding-left: 2px;
}
/*-------------------------*/
/*imgWrap統合*/
/*-------------------------*/
.imgWrap {
	position: relative;/*相対配置*/
	width: 100%;/*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
	padding-top: 50%;/*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）4:3 75%　*/
	overflow: hidden;/*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
	margin: 0 auto;
	background-color: #000;
}
.imgWrap img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	/* 画像の最大サイズは枠の1.5倍まで */
	max-width: 150%;
	max-height: 150%;
}
.imgWrap .topLeftWrap {
	position: absolute;
	top: 5px;
	left: 5px;
}
.imgWrap .topRightWrap {
	position: absolute;
	top: 5px;
	right: 5px;
}
.imgWrap .bottomRightWrap {
	position: absolute;
	bottom: 5px;
	right: 5px;
	border: solid white 1px;
	background-color: rgba(0, 0, 0, 0.5);
}
.imgWrap .areaTxt {
	font-size: 14px;
	color: #fff;
	border: solid white 1px;
	padding: 5px;
	background-color: rgba(0, 0, 0, 0.5);
	text-align: center;
}
.imgWrap .nameTxt {
	width: 50%;
	font-size: 12px;
	line-height: 1.1;
	padding: 1px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.1);
	text-align: center;
}
/*------------------------*/
/*pagetop*/
/*------------------------*/
#top_scroll {
	position: relative;
	z-index: 100;
	margin: 0;
	padding: 0;
}
#page-top1 {
	font-size: 28px;
	background-color: #ccc;
	color: #fff;
	display: block;
	position: fixed;
	z-index: 9999;
	bottom: -250px;
	right: 10px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	padding: 0;
	text-align: center;
	text-decoration: none;
	transition: 1s;
	-webkit-transition: 1s;
}
