.faq-page {
	padding: 0 0 85px;
	background: #f2f4f4;
}

.faq-page__title {
	padding: 56px 0;
	text-align: center;
}

.faq-page__title img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

.faq-page__title h1 {
	margin: 0;
	color: #898585;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.25;
}

.faq-page__content {
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 12px;
	width: 1280px;
	margin: 0 auto;
}

.faq-page__sidebar,
.faq-page__answers {
	min-width: 0;
	float: none;
}

.faq-page__logo {
	width: 230px;
	height: 118px;
	overflow: hidden;
	background: #0bb78e;
}

.faq-page__logo img {
	display: block;
	width: 100%;
	height: auto;
}

.faq-page__nav {
	width: 230px;
	margin: 3px 0 0;
	padding: 0;
	background: #f8f8f8;
	color: #484848;
	font-size: 16px;
	list-style: none;
}

.faq-page__nav-parent,
.faq-page__nav-child {
	box-sizing: border-box;
	position: relative;
	display: block;
	width: 100%;
	border: 0;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.faq-page__nav-parent {
	height: 60px;
	padding: 0 45px 0 30px;
	border-bottom: 1px solid #f0f0f0;
	background: #fff;
	color: #484848;
	line-height: 60px;
}

.faq-page__nav-parent .qu_ico,
.faq-page__nav-child .qu_ico {
	position: absolute;
	right: 15px;
	top: 22px;
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.faq-page__nav-children {
	padding: 0;
	background: #f8f8f8;
	font-size: 14px;
}

/* The shared content stylesheet hides .u-qustion-open by default. */
.faq-page__nav-group.is-open > .faq-page__nav-children:not([hidden]) {
	display: block !important;
}

.faq-page__nav-child {
	min-height: 60px;
	padding: 0 43px 0 30px;
	background: transparent;
	color: #484848;
	line-height: 60px;
}

.faq-page__nav-child.is-active {
	color: #0bb78e;
}

.faq-page__panel {
	width: 100%;
}

.faq-page__questions {
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-page__question-item {
	width: 100% !important;
	margin-left: 0 !important;
	margin-top: 10px;
	background: #fff;
}

.faq-page__question-item:first-child {
	margin-top: 0;
}

.faq-page__question {
	box-sizing: border-box;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 70px;
	margin: 0;
	padding: 0;
	border: 0;
	background: #fff;
	color: #616161;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.faq-page__question .layouts {
	font-size: 16px;
}

.faq-page__question .problem-num {
	flex: 0 0 40px;
	margin-left: 40px;
	color: #d6d6d6;
}

.faq-page__question .problem-item-title {
	width: auto;
	min-width: 0;
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.faq-page__question .arrow-icon {
	position: static;
	top: auto;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	margin: 0 32px 0 20px;
}

.faq-page__question .arrow-icon img {
	display: block;
	width: 100%;
	height: 100%;
}

.faq-page .faq-page__question .arrow-icon.down {
	display: block !important;
}

.faq-page .faq-page__question .arrow-icon.up,
.faq-page .faq-page__question-item.is-open .arrow-icon.down {
	display: none !important;
}

.faq-page .faq-page__question-item.is-open .arrow-icon.up {
	display: block !important;
}

.faq-page__question-item.is-open .layouts {
	color: #2fc7a0;
}

.faq-page__answer {
	box-sizing: border-box;
	display: none;
	width: 100% !important;
	min-height: 85px;
	padding: 30px 50px;
	background: #f0f2f2;
}

.faq-page__answer p {
	margin: 0;
	color: #898585;
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 25px;
}

.faq-page .open-content-wrapen {
	float: none;
	width: auto;
	margin: 0;
}

.faq-page [hidden] {
	display: none !important;
}

@media screen and (max-width: 1320px) {
	.faq-page__content {
		width: calc(100% - 80px);
	}
}

@media screen and (max-width: 767px) {
	.faq-page {
		padding-bottom: 10vw;
	}

	.faq-page__title {
		padding: 8vw 0;
	}

	.faq-page__title img {
		width: 40vw;
	}

	.faq-page__title h1 {
		font-size: 6vw;
	}

	.faq-page__content {
		display: block;
		width: auto;
		margin: 0 5vw;
	}

	.faq-page__logo,
	.faq-page__nav {
		width: 100%;
	}

	.faq-page__logo {
		height: auto;
		aspect-ratio: 230 / 118;
	}

	.faq-page__nav {
		margin-top: 2vw;
	}

	.faq-page__nav-parent {
		height: 12vw;
		padding-left: 5vw;
		line-height: 12vw;
	}

	.faq-page__nav-parent .qu_ico {
		right: 5vw;
		top: calc(6vw - 8px);
	}

	.faq-page__nav-children {
		display: flex !important;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.faq-page__nav-child {
		flex: 0 0 auto;
		min-height: 11vw;
		padding: 0 7vw 0 5vw;
		line-height: 11vw;
		white-space: nowrap;
	}

	.faq-page__nav-child .qu_ico {
		right: 3vw;
		top: calc(5.5vw - 8px);
	}

	.faq-page__answers {
		margin-top: 3vw;
	}

	.faq-page__question-item {
		margin-top: 2vw;
	}

	.faq-page__question {
		min-height: 16vw;
	}

	.faq-page__question .layouts {
		font-size: 14px;
	}

	.faq-page__question .problem-num {
		flex-basis: 10vw;
		margin-left: 4vw;
	}

	.faq-page__question .problem-item-title {
		padding: 3vw 0;
		white-space: normal;
		line-height: 1.5;
	}

	.faq-page__question .arrow-icon {
		margin-right: 4vw;
		margin-left: 3vw;
	}

	.faq-page__answer {
		min-height: 0;
		padding: 5vw;
	}

	.faq-page__answer p {
		font-size: 13px;
		letter-spacing: 0;
		line-height: 1.75;
	}
}
