@charset "utf-8";
/* CSS Document */

.expand-all{
	max-width: 380px;
	margin: 40px auto 60px;
}

.dli-plus{
	position: absolute;
	width: 40px;
	height: 40px;
	text-align: center;
	bottom: 10px;
	right: 0;
	background: #ea5404;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.dli-plus::before,
.expand-all .btn::after{
	content: "\2b";
	font-family: "FontAwesome";
	font-weight: 400;
	color: #fff;
}
.close .dli-plus::before,
.expand-all.closeall .btn::after{
	content: "\f068";
}

.accordion {
	position: relative;
}

.accordion dl dt,
.accordion dl dd{
	position: relative;
	padding-left: 40px;
}
.accordion dl dt{
	cursor: pointer;
	font-size: 2rem;
	line-height: 1.6;
	text-align: left;
	font-weight: 700;
	border-bottom: 1px solid #808080;
	padding-top: 40px;
	padding-right: 45px;
	padding-bottom: 10px;
}
.accordion dl dt::before{
	content: "";
	display: block;
	background: url("/apple-pay/common/img/icon_q.svg") no-repeat center / contain;
	width: 19px;
	height: 22px;
	position: absolute;
	top: 2.3em;
	left: 0;
}

.accordion dl dd{
	display: none;
	line-height: 2;
	text-align: left;
	font-weight: 500;
	padding-top: 20px;
}
.accordion dl dd::before{
	content: "";
	display: block;
	background: url("/apple-pay/common/img/icon_a.svg") no-repeat center / contain;
	width: 19px;
	height: 18px;
	position: absolute;
	top: 1.8em;
	left: 0;
}
.accordion dl dd .indent{
	display: inline-block;
}
.accordion dl dd .min{
	font-size: 0.9em;
}

@media screen and (max-width: 767px){
	.expand-all{
		margin-bottom: 20px;
	}
	.dli-plus{
		width: 30px;
		height: 30px;
		top: 38px;
		bottom: auto;
	}
	.accordion dl dt{
		font-size: 1.7rem;
		padding-bottom: 5px;
	}
	.accordion dl dt::before{
		width: 26px;
		height: 30px;
	}
	.accordion dl dd::before{
		width: 26px;
		height: 25px;
		top: 1.3em;
	}
	.accordion dl dd{
		padding-top: 12px;
	}
}