@charset "utf-8";

.ml-about-item .ml-lead {
    border-bottom: none;
}

#productAbout {
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
}

#productAbout img {
	width: 100%;
}

/* movie */
.movie_wrap {
	position: relative;
	overflow: hidden;
}
.movie_wrap video {
	position: absolute;
	display: block;
	z-index: -10;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
.movie_wrap1 video {
	width: calc(590 / 750 * 100%);
}
.movie_wrap2 video {
	width: calc(510 / 750 * 100%);
}

/* accordion */
#accordion .aco_btn{
	display: block;
	width: calc(484/ 750 * 100%);
	cursor: pointer;
	z-index: 10;
	margin: -6% auto -6%;
	position:relative;
}
.aco_btn:hover {
	opacity: 1;
}
.aco_btn::before, .aco_btn::after {
	content: "";
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: 0.5s;
	
}
.aco_btn::before {
	background-image: url(../img/aco_btn_open.png);
	opacity: 1;
}
.aco_btn.active::before {
	opacity: 0;
}
.aco_btn::after {
	background-image: url(../img/aco_btn_close.png);
	opacity: 0;
}
.aco_btn.active::after {
	opacity: 1;
}
.acc_cnt {
	display: none;
}