/*==================================================
 レイアウト
================================================== */
.change-images-wrap {
	overflow: hidden;
	position: relative;
}

/* ビュー */
.change-images-view {
	margin: 0 0 10px;
}

/* サムネリスト */
.change-images-thumb {
}

/* キャプション */
.change-images-caption {
	display: none;
}

/*==================================================
 ビュー
================================================== */
.change-images-view {
	border: 1px solid #7d7d7d;
}

.change-images-view ul {
	height: 300px;
	position: relative;
}

.change-images-view li {
	width: 100%;
	height: 100%;
	background: #333;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: All 0.4s ease;
	z-index: 1;
}

.change-images-view li.active {
	opacity: 1;
	z-index: 5;
}

.change-images-view li a {
	height: 100%;
	display: block;
}


/*==================================================
 サムネリスト
================================================== */
.change-images-thumb {
	font-size: 0;
	letter-spacing: 0;
}

.change-images-thumb li {
	width: 155px;
	margin: 0 7px 7px 0;
	display: inline-block;
	vertical-align: top;
	position: relative;
	box-sizing: border-box;
}

.change-images-thumb li:nth-child(3n) {
	margin-right: 0;
}

.change-images-thumb li:hover {
	cursor: pointer;
}

/* ボーダー（ホバー）
-------------------------------------------------- */
.change-images-thumb li:after {
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid #7d7d7d;
	box-sizing: border-box;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	transition: All 0.4s ease;
	pointer-events: none;
}

/* ボーダー（アクティブ）
-------------------------------------------------- */
.change-images-thumb li.active:after {
	border-width: 1px;
	border-color: #4f6487;
}


/*==================================================
 キャプション
================================================== */
.change-images-caption li {
	max-width: 80%;
	padding: 10px;
	color: #fff;
	background: rgba(0,0,0,.5);
	box-shadow: 2px 2px 2px rgba(0,0,0,.1);
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 30;
	opacity: 0;
}

.change-images-caption li.active {
	opacity: 1;
}


/*==================================================
 画像の中央寄せ
================================================== */
.change-image-trim {
	width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
}

.change-image-trim img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.change-image-trim img.horizontal {
	max-width: none;
	min-height: 100%;
}

.change-image-trim img.verticav {
	min-width: 100%;
	max-height: none;
}

/* サムネ
-------------------------------------------------- */
.change-images-thumb .change-image-trim {
	height: 0;
	padding: 70.711% 0 0; /* 白銀比 */
	padding: 61.80% 0 0; /* 黄金比 */
	padding: 100% 0 0; /* 正方形 */
}

/* ビュー
-------------------------------------------------- */
.change-images-view .change-image-trim {
	height: 100%;
}


/* ギャラリーテキスト
-------------------------------------------------- */
.gallery-text{
	margin:20px 0 150px;
}

.scroll {
	width: 1000px;
	margin: 0 auto 60px;
}

.products_box .inner_img {
	max-width: 480px;
	float: left;
}

.products_box .inner_txt {
	width: 480px;
	line-height: 150%;
	float: right;
	text-align: left;
}