@charset "UTF-8";
/* CSS Document */

.faq_header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    gap: 2rem;
	margin: 2rem 0 4rem
}
@media (min-width: 48em) {
	.faq_header {
		padding-top: 8.7rem;
		padding-bottom: 5.3rem;
		margin: 0 auto
	}
}
.faq__heading {
	color: #fff;
	font-family: 'Zen Maru Gothic', serif;
    font-weight: 900;
    font-size: clamp(3rem, 2.857rem + 0.625vw, 4rem);
	line-height: 1.3;
	text-align: center;
	text-transform: capitalize;
	display: inline-block;
}
@media (min-width: 48em) {
	.faq__heading {
		letter-spacing: 3px;
		line-height: 1.28
	}
}
.faq__subtitle{
	display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
	color: #573F1C;
	text-align: center;
}
.faq-tab__container{
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    border-radius: 1rem;
    color: #573F1C;
	filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, .76))
}

.tab{
	display: flex;
	flex-wrap: wrap;
}
.tab li a{
	display: block;
	background:#F9FAE0;
	font-family: 'Zen Maru Gothic', serif;
	font-size: 1.2rem;
	margin:0 2px;
	padding:0.75rem;
    border-radius: 1rem 1rem 0 0
    
}
@media(max-width: 48em) {
	.tab li a{
		width: 8rem;
	}
}
.tab li.active a{
	background:#FFE471;
    color: #573F1C;
	
}

.area {
	display: none;
	opacity: 0;
	background: #F9FAE0;
	padding:5rem 3rem;
    border-radius: 0 1rem 1rem 1rem
}
@media(max-width: 37.5em){
	.area{
		padding:2rem 1rem;
	}
}
.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.faq-container{
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #573F1C;
}
.faq-text{
    display: flex;
    font-size: 1rem;
    margin-bottom: 1rem
}
.faq-number{
    font-family: 'Nunito', sans-serif;
    font-weight: 1000;
    font-size: 1rem;
    letter-spacing: .9px;
    text-align: left;
    text-transform: uppercase;
    padding-right: 1rem;
}
