@charset "utf-8";
body {
	color: #455A64;
}
p, div, li, td, a:link, a:visited, a:hover, a:active {
	font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', Hiragino Kaku Gothic Pro W3, 'ＭＳ Ｐゴシック', MS P Gothic;
	word-wrap: break-word;
}
.name, a.name {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.1;
}
.shise_wrap {
	font-size: 16px;
	font-weight: 800;
	line-height: 1.1;
}
.cm {
	font-size: 14px;
	line-height: 1.2;
}
.pen {
	background: linear-gradient(transparent 60%, pink 60%);
}
.badge-info {
	font-size: 11px;
	border-radius: 0.2em;
	color: #fff;
	background-color: #5bc0de;
}
.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/*-------------------------*/
/*swiper-containe*/
/*-------------------------*/
.swiper-container {
	width: 100%;
	height: 230px;
}
/*-------------------------*/
/*imgWrap統合*/
/*-------------------------*/
.imgWrap {
	position: relative;/*相対配置*/
	width: 100%;/*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
	padding-top: 60%;/*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）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;
	border: solid white 1px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
}
.imgWrap .topRightWrap {
	position: absolute;
	top: 5px;
	right: 5px;
	border: solid white 2px;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.8);
}
.imgWrap .bottomRightWrap {
	position: absolute;
	bottom: 5px;
	right: 5px;
	border: solid white 1px;
	color: #fff;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.5);
}
/*------------------------*/
/*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;
}
