@charset "UTF-8";

.contents{
	max-width: var(--contens-maxwidth);
	margin: 0 auto;
}

.summary {
	text-align: center;
	margin-bottom: 60px;
}

/*----------------------------------
	カテゴリアンカーリンク
----------------------------------*/
.anchor-link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	overflow: hidden;
	margin-bottom: 80px;
}

.anchor-link__cat {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 25px * 3)/ 4);
	height: 70px;
	border: 2px solid;
	border-radius: 10px;
	font-size: var(--font-size-16px);
	font-weight: var(--weight-bold);
	color: var(--c-link);
	text-align: center;
	position: relative;
	cursor: pointer;
	transition: .3s ease;
}

.anchor-link__cat a {
	display: block;
	width: 100%;
	padding: 10px 5px 20px;
}

.anchor-link__cat a::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid;
	border-bottom: 2px solid;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.anchor-link__cat:hover {
	color: var(--bg-hover-pink);
}

/*----------------------------------
	faq内容
----------------------------------*/
.faq__inner {
	margin-bottom: 70px;
}

.faq__inner:last-child {
	margin-bottom: 0;
}

.faq__ttl {
	font-size: var(--font-size-24px);
	color: var(--c-body);
	border-bottom: 1px solid #f4b2c1;
	padding: 0 0 15px;
}

.faq__list {
	width: 100%;
	margin: 0 auto 40px;
}

.faq__question {
	display: flex;
	width: 100%;
	background-color: var(--c-white);
	border-bottom: 1px solid #f4b2c1;
	text-align: left;
	position: relative;
	cursor: pointer;
}

.faq__btn {
	display: flex;
	width: 100%;
	height: auto;
	background: var(--c-white);
	border: none;
	font-size: var(--font-size-16px);
	font-weight: var(--weight-medium)!important;
	color: var(--c-body)!important;
	text-align: left;
	padding: 35px 25px 35px 0;
}

.faq__btn::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: var(--c-pink);
	border-radius: 50%;
	vertical-align: middle;
	margin-top: 10px;
	margin-right: 10px;
}

.plus-icon {
	align-self: center;
	width: 16px;
	height: 16px;
	margin-left: auto;
	position: relative;
}

.plus-icon::before, .plus-icon::after {
	content: "";
	background-color: var(--c-body);
	border-radius: 10px;
	position: absolute;
	transition: transform .3s;
}

.plus-icon::before {
	width: 100%;
	height: 2px;
	height: 2px;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.plus-icon::after {
	width: 2px;
	height: 100%;
	top: 0;
	right: 40%;
	transform: translateX(-50%);
}

.faq__btn[aria-expanded="true"] .plus-icon::after {
	transform: translateX(-50%) rotate(90deg);
}

.faq__answer {
	display: none;
	background-color: #fff2f5;
	font-size: var(--font-size-16px);
	font-weight: var(--weight-regular);
	color: var(--c-body);
	border-bottom: 1px solid #f4b2c1;
	padding: 35px 24px;
}

@media screen and (max-width: 1079px) {
	.contents {
		padding: 0 10px;
	}
}

@media screen and (max-width: 767px) {
	.contents{
		width: 100%;
		padding: var(--contens-padding);
	}

	.summary {
		margin-bottom: 25px;
	}

	.anchor-link {
		margin-bottom: 40px;
		gap: 10px;
	}

	.anchor-link__cat {
		width: calc((100% - 10px * 1)/ 2);
		height: 60px;
		font-size: var(--font-size-14px);
	}

	.anchor-link__cat a {
		line-height: 1.2;
		padding: 10px 0 20px;
	}

	.anchor-link__cat a::after {
		top: 80%
	}

	.anchor-link__cat a span {
		display: inline-block;
	}

	.faq__inner {
		margin-bottom: 40px;
	}

	.faq__ttl {
		font-size: var(--font-size-18px);
		padding: 0 0 7px;
	}

	.faq__txt {
		font-size: var(--font-size-16px);
		text-align: left;
	}

	.faq__item {
		font-size: var(--font-size-14px);
	}

	.faq__btn {
		padding: 25px 0;
	}

	.question-txt {
		width: calc(100% - 50px);
	}

	.faq__answer {
		padding: 20px;
	}

	.faq__answer, .faq__btn {
		font-size: var(--font-size-14px);
	}
}