@charset "utf-8";

/* -----------------------------
	faq
-------------------------------- */
.faq-area{
	padding: 80px 0 150px;
	background: #f5f5f5;
	margin: 20px 0 0;
}
.faq-wrap .cate-title{
	font-size: 2rem;
	font-weight: bold;
	padding: 0 0 30px;
	line-height: 1.4;
}
.faq-wrap{
	margin: 20px 0 0;
	background: #fff;
	padding: 50px;
}
.faq-accordion ul {
	border-bottom: #ddd solid 1px;
}

.faq-accordion ul li {
	border-top: #ddd solid 1px;
	position: relative;
}

.faq-accordion .title {

	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	width: 100%;
}

.faq-accordion .quest {
	display: flex;
	position: relative;
	padding: 37px 25px 37px 95px;
	justify-content: space-between;
	width: 100%;
}

.faq-accordion .quest::before {
	content: "Q";
	color: #333;
	font-family: var(--dmsans);
	font-size: 2.6rem;
	font-weight: 500;
	position: absolute;
	left: 25px;
	top: 37px;
}

.faq-accordion .quest:hover {
	cursor: pointer;
}

.faq-accordion .answer {
	display: none;
	padding: 0px 75px 0 96px;
	position: relative;
}

.faq-accordion .answer::before {
	content: "A";
	color: #BFA049;
	font-family: var(--dmsans);
	font-size: 2.6rem;
	font-weight: 500;
	position: absolute;
	top: 3px;
	margin: auto;
	left: 26px;
}

.faq-accordion .answer-txt {
	padding: 0 0 35px 0;
	line-height: 1.8;
}

.faq-accordion .answer-txt a{
	text-decoration: underline;
}

.faq-accordion-icon {
	height: 20px;
	margin: 0 0 0 20px;
	padding: 12px 0 0 0;
	position: relative;
	width: 20px;
}

.faq-accordion-icon::before,.faq-accordion-icon::after {
	background-color: #000;
	content: "";
	height: 1px;
	position: absolute;
	width: 100%;
	transition: all .3s;
}

.faq-accordion-icon::before {
	transform: rotate(0deg);
}

.faq-accordion-icon::after {
	transform: rotate(90deg);
}

.inner .faq-accordion .quest.active .faq-accordion-icon::after {
	transform: rotate(180deg);
}

span{
	font-weight: bold;
}

.link{
    font-weight: bold;
}

.link:hover{
	transition: 0.5s;
    color: #B18867;
	
}


@media screen and (max-width: 768px){
	.faq-wrap .cate-title{
		font-size: 2rem;
		font-weight: bold;
		padding: 0 0 20px;
	}
	.faq-area {
		max-width: 100%;
		min-width: 100%;
		padding: 30px 20px 30px;
		margin: 80px 0 0;
	}
	
	.faq-wrap{
		padding: 40px 20px;
		margin: 0 0 20px;
	}
	.cate-title{
		font-size: 2rem;
		margin: 0 0 20px;
		line-height: 1.5;
	}

	.faq-accordion ul li a {
		position: relative;
	}

	.faq-accordion ul li a .title {
		font-size: 1.6rem;
	}
	
	.faq-accordion .quest {
		padding: 25px 8px 25px 35px;
	}

	.faq-accordion .quest::before {
		font-size: 2.2rem;
		top: 26px;
		left: 0;
	}

	.faq-accordion .answer {
		padding: 0 10px 0 35px;
	}

	.faq-accordion .answer::before {
		font-size: 2.2rem;
		top: 5px;
		left: 0;
	}
	
	.faq-accordion .answer-txt {
		padding: 0 0 25px 0;
		width: calc( 100% - 23px );
	}
	
	.faq-accordion-icon {
		height: 13px;
		margin: 0 0 0 10px;
		width: 13px;
	}
}

/*20240612 ボタン追加*/
.btn-area.fq-btn {
	width: 330px;
	margin: 80px auto 0;
}
.btn-area.fq-btn .btn-more {
	font-family: var(--basefont);
}
.btn-area.fq-btn .btn-more a {
    display: block;
    width: 330px;
    height: 70px;
    line-height: 70px;
    position: relative;
	background: #333;
	color: #fff;
	padding: 0 10px 0 20px;
	border-radius: 100px;
}
.btn-area.fq-btn .btn-more a::before {
    border: solid 1px #fff;
	width: 65px;
    height: 65px;
	top: 1px;
	right: 2px;
}
.btn-area.fq-btn .btn-more a::after {
    background: url("../img/btn-arrow-sp-white.png") no-repeat center / contain;
}

@media screen and (max-width: 768px) {
	.btn-area.fq-btn {
		width: 265px;
		margin: 30px auto 0;
	}
	.btn-area.fq-btn .btn-more a {
		display: block;
		width: 265px;
		height: 52px;
		line-height: 52px;
		padding: 0 5px 0 15px;
		font-size: 1.4rem;
	}
	.btn-area.fq-btn .btn-more a::before {
    	width: 48px;
		height: 48px;
	}
}