/*! faq
-----------------------------------------------------------

/*! #faq MV
=========================================== */
.faq .mainTit {
	background: url(../../img/faq/bg_sp.png) no-repeat center center;
	background-size: cover;
	height: 210px;
	padding: 0 20px;
	font-size: 2.4rem;
	display: grid;
	place-items: center;
	justify-content: flex-start;
}
.faq .mainTit .tit {
	color: #fff;
	position: relative;
}
.faq .mainTit .tit:after {
	content: "";
	position: absolute;
	background: #fff;
	left: 0;
	bottom: -12px;
	width: 80px;
	height: 1px;
}
@media screen and (min-width: 600px) {
	.faq .mainTit {
		background-image: url(../../img/faq/bg_pc.png);
		height: 460px;
		min-width: 1020px;
		font-size: 4rem;
		justify-content: center;
	}
	.faq .mainTit .tit:after {
		content: "";
		position: absolute;
		background: #fff;
		left: 0;
		right: 0;
		margin: 0 auto;
		bottom: -19px;
		width: 100px;
		height: 1px;
	}
}

/*! .faq-intro
=========================================== */
.faq-intro {
	background: #f8f8f7;
}
.faq-intro__inner {
	padding: 50px 20px;
}
.faq-intro__list {
	padding: 25px 0 0;
}
@media screen and (min-width: 600px) {
	.faq-intro__inner {
		padding: 80px 0;
	}
	.faq-intro__txt {
		text-align: center;
	}
}

/*! .faq-sec
=========================================== */
.faq-sec__wrap {
	padding-bottom: 50px;
}
/*.faq-sec + .faq-sec {
	margin-top: 50px;
}*/
.faq-sec {
	padding-top: 50px;
}
@media screen and (min-width: 600px) {
	.faq-sec__wrap {
		padding-bottom: 100px;
	}
	/*.faq-sec + .faq-sec {
		margin-top: 100px;
	}*/
	.faq-sec {
		padding-top: 100px;
	}
	}

/*! .faq-pagetop
=========================================== */
.faq-pagetop {
	margin: 5px;
	position: fixed;
    bottom: 65px;
    left: 0;
    width: calc(100% - 10px);
}
.faq-pagetop__link {
	display: grid;
	place-items: center;
	color: #fff;
	background: #ac935b;
	padding: 10px;
	text-decoration: none !important;
	font-size: 1.3rem;
	line-height: 1.3;
}
.faq-pagetop__txt {
	position: relative;
	font-weight: 700;
	padding-left: 20px;
}
.faq-pagetop__txt::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: #fff;
	width: 11px;
	height: 8px;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.faq-pagetop.is-hidden {
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease-out;
}
@media screen and (min-width: 600px) {
	.faq-pagetop {
		position: fixed;
		bottom: auto;
		left: auto;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 70px;
		margin: 0;
		margin-top: 260px;
	}
	.faq-pagetop__link {
		padding: 10px 5px;
	}
	.faq-pagetop__txt {
		padding-left: 0;
		padding-top: 17px;
		text-align: center;
	}
	.faq-pagetop__txt::before {
		top: 0;
		left: 50%;
		transform: translate(-50%,0);
	}
	.faq-pagetop.is-hidden {
		transform: translate(100%,-50%);
		transition: all 0.2s ease-out;
	}
}

/*! .c-faq02
=========================================== */
.c-faq02 {
	display: grid;
	gap: 10px;
}
.c-faq02__item {
	background: #f8f8f7;
}
.c-faq02__item:first-of-type .js-toggle-content {
	display: block;
}
.c-faq02__item-head {
	position: relative;
	padding: 20px 45px;
	font-size: 1.5rem;
	line-height: 1.38;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.c-faq02__item-head:before {
	content: "Q.";
	font-size: 2rem;
	font-family: "Noto Serif Japanese", serif, san-serif;
	background: none;
	color: #ac935b;
	position: absolute;
	top: 15px;
	left: 15px;
}
.c-faq02__item-head span {
	width: 30px;
	height: 30px;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	position: absolute;
}
.c-faq02__item-head span:before,
.c-faq02__item-head span:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #ac935b;
	height: 2px;
	width: 15px;
	transition: all ease-out 0.3s;
}
.c-faq02__item-head span:after {
	transform: rotate(90deg);
}
.c-faq02__item-head.on span:after {
	transform: rotate(0);
}
.c-faq02__item-txt {
	position: relative;
	padding: 20px 20px 20px 45px;
	font-size: 1.3rem;
	line-height: 1.7;
	background-color: #f8f8f7;
}
.c-faq02__item-txt:before {
	content: "A.";
	font-size: 1.7rem;
	font-family: "Noto Serif Japanese", serif, san-serif;
	color: #707070;
	position: absolute;
	top: 15px;
	left: 15px;
}
.c-faq02__item-txt:after {
	position: absolute;
	content: "";
	width: calc(100% - 20px);
	height: 1px;
	background: #ccc;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.c-faq02__item .js-toggle-content {
	display: none;
}
@media screen and (min-width: 600px) {
	.c-faq02__item-head {
		padding: 36px 105px 36px 80px;
		font-size: 1.8rem;
	}
	.c-faq02__item-head:before {
		top: 32px;
		left: 40px;
	}
	.c-faq02__item-head span {
		right: 40px;
	}
	.c-faq02__item-txt {
		padding: 36px 40px 36px 80px;
		font-size: 1.6rem;
	}
	.c-faq02__item-txt:before {
		font-size: 2rem;
		top: 32px;
		left: 40px;
	}
	.c-faq02__item-txt:after {
		width: calc(100% - 80px);
	}
}