.faq_wrap h3 {
	font-size: 1em;
	margin-block-start: 0;
	margin-block-end: 0;
}

dt {
	cursor: pointer;
	position: relative;
	transition: background-color 0.3s ease;
	color: #fff;
	display: flex; /* これを追加 */
	align-items: flex-start; /* 上揃えにする */
}

dt::before {
	content: 'Q.';
	margin-right: .5em;
}

dd {
	display: none;
	color: #fff;
}

dd p::before {
	content: 'A.';
	display: inline;
}

.contact-text-wrap {
	text-align: center;
}

.contact-text-wrap h2{
	font-size: 2.25em;
	color: #fff;
	margin-bottom: .625em;
	padding-bottom: 0;
}

.contact-text-wrap p {
	font-size: 1em;
	color: #939da5;;
}

.contact_link {
	width: 25em;
	height: 3em;
	background: #0f7eaf;
	color: white;
	border-radius: 1.5em;
	margin: .625em;
	position: relative;
}

.contact_link a {
	color: white;
	line-height: 3em;
	text-decoration: none;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.question a {
	color: #149ED9;
}
.question a:visited {
	color: #149ED9;
}

.contact_link a:visited {
	color: white;
}

.accordion-trigger {
	background-color: transparent;
	border: none;
	padding: 0;
	margin: 0;
	outline: none;
	font: inherit;
	color: inherit;
	width: 100%;
	text-align: left;
	display: inline;
	cursor: pointer;
}

button.accordion-trigger:focus-visible {
    outline: 4px dashed white;
}