@charset "UTF-8";

.topic-container,
.content-wrap {
	width: 100;
	margin: 0 auto;
	overflow: hidden;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.topic-container img,
.content-wrap img {
	width: 100%;
}
.btn_wrap {
	position: relative;
    display: inline-block;
}
.base {
    display: block;
}
.btn_pc {
	position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.btn_wrap_sp {
		position: relative;
		display: inline-block;
	}
	.btn_sp {
		position: absolute;
		left: 50%;
		bottom: 90px;
		transform: translateX(-50%);
	}
}