@charset "UTF-8";
/*
page-title
================================================ */
.page-title__title{
	width: 500px;
}

.faq-title{
	display: block;
	margin: 0 auto;
	margin-top: 20px;
	width: 200px;
}

.page-title__text{
	text-align: center;
	margin-top: 32px;
	font-size: 24px;
	letter-spacing: 0.1em;
	line-height: 1.7;
    color: var(--black);
}

@media screen and (min-width: 768px) and (max-width: 1024px){
	.page-title__title{
		width: 300px;
	}

	.faq-title{
		width: 200px;
	}

	.page-title__text{
		font-size: 20px;
	}
}

@media screen and (max-width: 767px){
	.page-title__title{
		width: 200px;
	}

	.faq-title{
		width: 160px;
	}

	.page-title__text{
		font-size: 14px;
	}
}

/*
content
================================================ */
.content{
	margin-top: 80px;
	margin-bottom: 120px;
	background-color: var(--white);
	border-radius: 100px;
	padding: 120px 80px;
	position: relative;
    box-shadow: 12px 12px 0px 0px #7c7878;
}

.content::before{
	content: '';
	display: block;
	width: 64px;
	height: 48px;
	background-color: var(--orange40);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	position: absolute;
	top: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(125deg, #f4e7dc 0%, #f4e7dc 57%, #7d7878 50%, #7d7878 100%);
}

.content__list{
	width: 100%;
	max-width: 840px;
	margin: 0 auto;
	margin-top: 32px;
	color: var(--black);
	border-bottom: 1px solid var(--orange);
}

.content__list > dt{
	font-size: 22px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 32px;
	letter-spacing: 0.1em;
	display: flex;
	align-items: center;
	gap: 20px;
	position: relative;
	cursor: pointer;
}

.content__list > dt::before{
	content: '';
	display: block;
	background-image: url(../imgs/question.svg);
	background-size: cover;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}

.content__button{
	width: 28px;
	height: 28px;
	display: block;
	position: relative;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.question.active .content__button::before{
	transform: translateY(-50%) rotate(90deg);
}

.content__button::before, .content__button::after{
	content: '';
	display: block;
	width: 5px;
	height: 100%;
	background-color: var(--orange);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% ,-50%);
	transition: all .5s;
}

.content__button::after{
	transform: translate(-50% ,-50%) rotate(90deg);
}

.content__list > dd{
	letter-spacing: 0.075em;
	line-height: 2;
	height: 0px;
	overflow: hidden;
	transition: all .5s;
}

.content__item a{
	text-decoration: underline;
}

.content__item{
	padding-top: 13px;
	padding-bottom: 32px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
    padding-right: 30px;
}

.content__item > i{
	display: block;
	width: 40px;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	color: var(--orange);
	flex-shrink: 0;
	font-style: normal;
	transform: translateX(5px);
}

@media screen and (min-width: 768px) and (max-width: 1024px){
	.content{
		padding: 80px 64px;
		border-radius: 80px;
	}

	.content::before{
		width: 44px;
		height: 32px;
	}

	.content__list{
		width: 100%;
		margin-top: 24px;
	}

	.content__list > dt{
		font-size: 20px;
		margin-bottom: 24px;
	}

	.content__item{
		padding-top: 8px;
		padding-bottom: 24px;
	}

	.content__button{
		width: 24px;
		height: 24px;
	}
}

@media screen and (max-width: 767px){
	.content{
		padding: 40px 16px;
		border-radius: 40px;
		margin-top: 32px;
        margin-bottom: 20px;
	}

	    .content::before {
        width: 40px;
        height: 28px;
    }

	.content__list{
		width: 100%;
		margin-top: 16px;
	}

	.content__list > dt{
		padding-right: 32px;
		margin-bottom: 8px;
		font-size: 14px;
		gap: 8px;
        letter-spacing: 0;
        line-height: 1.1;
	}

	.content__list > dt::before{
		width: 24px;
		height: 24px;
        margin-top: -4px;
	}

	.content__button{
		width: 16px;
		height: 16px;
	}

	.content__button::before, .content__button::after{
		width: 3px;
	}

	.content__list > dd{
		width: 100%;
		font-size: 12px;
		gap: 12px;
		line-height: 1.4;
        letter-spacing: 0;
	}

	.content__item{
		padding-block: 16px;
		padding-top: 6px;
		gap: 8px;
	}

	.content__item > i{
		width: 24px;
		font-size: 24px;
		transform: translateX(4px);
        margin-top: -7px;
	}
}