.rounded {
    border-radius: .625rem !important
  }

.qa {
	padding: 100px 0;
	background-color: white;
	
}

.QA {
	text-align: center;
}
.QA h2{
	color: black;
	text-shadow:1px 1px 0 #e5f2ff, -1px -1px 0 #e5f2ff,
	-1px 1px 0 #e5f2ff, 1px -1px 0 #e5f2ff,
	0px 1px 0 #e5f2ff,  0-1px 0 #e5f2ff,
	-1px 0 0 #e5f2ff, 1px 0 0 #e5f2ff;
	letter-spacing: .05em;
	font-size: clamp(25px, 2.9vw, 40px);
}

img {
	max-width: 100%;
	max-height: 100%;
}

.QA-img {
	width: 15%;
	margin: 0 auto;
}

.faq_list {
	line-height: 1.5;
	border-radius: 30px;
	width: 60%;
	margin: 0 auto;
}

.faq_list dt {
	background-color: #7fbfff;
	padding: 15px 40px 15px 70px;
	font-weight: bold;
	position: relative;
	cursor: pointer;
	margin-bottom: 1rem;
	border-radius: 30px;
	font-size: clamp(15px, 2.9vw, 20px);
}

.faq_list dd {
	border-radius: 30px;
	font-weight: bold;
	font-size: clamp(15px, 2.9vw, 20px);
}

.faq_list dt::before {
	position: absolute;
	content: "";
	background: url(../image/hatena.png) no-repeat center center;
	background-size: auto 20px;
	width: 55px;
	height: calc(100% - 20px);
	border-right: 1px dashed #a76ba3;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.faq_list dt::after {
	content: "";
	position: absolute;
	border-left: #7a4b80 2px solid;
	border-bottom: #7a4b80 2px solid;
	height: 8px;
	width: 8px;
	top: 45%;
	right: 13px;
	-webkit-transform: rotate(-45deg) translateY(-55%);
	transform: rotate(-45deg) translateY(-55%)
}

.faq_list dd {
	position: relative;
  display: none;
  background-color: rgb(238, 163, 163);
  padding: 15px 20px 15px 70px;
  margin-bottom: 2rem
}

.faq_list dd::before {
	position: absolute;
	content: "";
	background: url(../image/logo.png) no-repeat center center;
	background-size: auto 20px;
	width: 55px;
	height: calc(100% - 20px);
	border-right: 1px dashed #a76ba3;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}


@media (max-width: 768px) {

	.qa {
		padding: 20px 0;
		background-color: white;
		
	}

	.faq_list {
		font-size: 20px;
		line-height: 1.5;
		border-radius: 30px;
		width: 80%;
		margin: 0 auto;
	}

	img {
		max-width: 100%;
		max-height: 100%;
	}

	.QA-img {
		width: 40%;
		margin: 0 auto;
	}

}