.FaqDetail {
	padding: 30px 0 120px;
	background: #f5f6f7;
	background-size: cover;
}

.FaqDetail .main {
	width: 1590px;
	max-width: 90%;
}

.FaqDetail .breadcrumbs {
	margin-bottom: 28px;
	color: #70767c;
	font-size: 14px;
	line-height: 22px;
}

.FaqDetail .detailLayout {
	display: grid;
	grid-template-columns: minmax(0, 2.1fr) 465px;
	gap: 24px;
}

.FaqDetail article {
	padding: 48px;
	border: 1px solid var(--site-line);
	background: #fff;
}

.FaqDetail article header {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--site-line);
}

.FaqDetail article header span {
	display: inline-block;
	padding: 4px 12px;
	background: #f8ddd6;
	color: var(--site-red);
	font-size: 12px;
	line-height: 18px;
}

.FaqDetail article header time {
	margin-left: 16px;
	color: #777d82;
	font-size: 14px;
	line-height: 22px;
}

.FaqDetail article header h1 {
	margin-top: 16px;
	font-size: 32px;
	line-height: 42px;
}

.FaqDetail article header p {
	margin-top: 10px;
	color: #687077;
	font-size: 18px;
	line-height: 29px;
}

.FaqArticleContent {
	padding-top: 28px;
	font-size: 16px;
	line-height: 26px;
}

.FaqArticleContent > h2 {
	margin: var(--p40) 0 14px;
	font-size: 24px;
	line-height: 34px;
	color: vaR(--ftc);
}

.FaqArticleContent .causeBox {
	margin-top: 32px;
	padding: 28px;
	border-left: 4px solid var(--site-red);
	background: #f0f2f3;
}

.FaqArticleContent .causeBox h2 {
	font-size: 24px;
	line-height: 34px;
}

.FaqArticleContent .causeBox ul {
	display: grid;
	gap: 10px;
	margin-top: 14px;
	padding-left: 22px;
}

.FaqArticleContent .causeBox li {
	list-style: circle;
}

.FaqArticleContent .solution {
	display: grid;
	grid-template-columns: 1fr 280px;
	align-items: center;
	gap: 30px;
	margin-top: 34px;
}

.FaqArticleContent .solution.reverse > div {
	grid-column: 2;
	grid-row: 1;
}

.FaqArticleContent .solution.reverse .solutionImage {
	grid-column: 1;
	grid-row: 1;
}

.FaqArticleContent .solution b {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-right: 10px;
	border-radius: 50%;
	background: #202427;
	color: #fff;
}

.FaqArticleContent .solution h3 {
	display: inline;
	font-size: 20px;
	line-height: 30px;
}

.FaqArticleContent .solution p {
	margin-top: 12px;
	color: #636a70;
}

.FaqArticleContent .solutionImage {
	aspect-ratio: 470 / 256;
	flex-shrink: 0;
}

.FaqArticleContent .notes {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	padding-top: 18px;
	border-top: 1px solid var(--site-line);
}
.FaqArticleContent .notes .item{
    display: flex;
    align-items: center;
    gap: vaR(--p10);
}
.FaqArticleContent .notes .item img{

    flex-shrink: 0;
   width: 1em;
}
.FaqArticleContent .helpful {
	margin-top: var(--p60);
	padding: 30px;
	background: #e7e9eb;
	text-align: center;
}

.FaqArticleContent .helpful strong {
	display: block;
	margin-bottom: 14px;
	font-size: 20px;
	line-height: 30px;
}

.FaqArticleContent .helpful button {
	min-width: 100px;
	margin: 0 4px;
	padding: 10px 16px;
	border: 1px solid #333;
}

.FaqArticleContent .helpful button:first-of-type {
	background: #202427;
	color: #fff;
}

.FaqDetail aside > * {
	display: block;
	margin-bottom: 24px;
	border: 1px solid var(--site-line);
	background: #fff;
}

.FaqDetail .related {
	padding: 26px;
}

.FaqDetail .related h2 {
	padding-bottom: 18px;
	border-bottom: 1px solid var(--site-line);
	font-size: 24px;
	line-height: 34px;
}

.FaqDetail .related a {
	display: grid;
	gap: 5px;
	padding: 16px 0;
	border-bottom: 1px solid #e8eaec;
}

.FaqDetail .related strong {
	font-size: 16px;
	line-height: 26px;
}

.FaqDetail .related span {
	color: #73797f;
	font-size: 14px;
	line-height: 22px;
}

.FaqDetail .helpBox {
	padding: 28px;
	background: #303334;
	color: #fff;
}

.FaqDetail .helpBox h3 {
	font-size: 18px;
	line-height: 28px;
}

.FaqDetail .helpBox p {
	margin-top: 10px;
	color: #d2d5d7;
	font-size: 14px;
	line-height: 22px;
}

.FaqDetail .helpBox a {
	display: block;
	margin-top: 20px;
	padding: 13px;
	background: var(--site-red);
	text-align: center;
}

.FaqDetail .manual {

	padding: 24px;
}
.FaqDetail .manual ul{
    margin-top: var(--p10);
    display: grid;
    gap: var(--p10);
}
.FaqDetail .manual ul .item{
    background: #EDEEF0;
    padding: var(--p10) var(--p10);
    display: flex;
    gap: vaR(--p5);
    
}
.FaqDetail .manual ul .item span{
    flex: 1;
    display: block;
}
@media only screen and (max-width: 1440px) {
	.FaqDetail .detailLayout {
		grid-template-columns: minmax(0, 1fr) 380px;
	}
}

@media only screen and (max-width: 768px) {
	.FaqDetail .detailLayout,
	.FaqArticleContent .solution,
	.FaqArticleContent .notes {
		grid-template-columns: 1fr;
	}

	.FaqDetail article {
		padding: 24px;
	}

	.FaqArticleContent .solution.reverse > div,
	.FaqArticleContent .solution.reverse .solutionImage {
		grid-column: auto;
		grid-row: auto;
	}
}
