@charset "utf-8";

#faq .anchorWrap ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	  -webkit-box-pack: center;
	  -ms-flex-pack: center;
	  justify-content: center;
	  -webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	-ms-flex-flow:row wrap;
	flex-flow:row wrap;
	margin: 0 -1%;
    padding:0;
    border:0;
    outline:0;
}
#faq .anchorWrap li{
	margin: 0 1% 8px;
	list-style: none;
}
#faq .anchorWrap li a{
	/*color: #282929;*/
	color:#000;
	font-weight: bold;
}


#faq .contentBox{margin-top: 80px; }
#faq .contentBox>h3 {
	margin: 0;
	line-height: 2;
	padding-top: 14px;
	padding-bottom: 24px;
	font-size: 1.8rem;
	border-bottom: 1px solid #717576;
}
#faq .questionBox {border-bottom: 1px solid #dadada;}
#faq .questionBox{margin: 0;}
#faq .questionBox dt {
	position: relative;
	cursor: pointer;
	padding: 32px 2%;
	/*color: #282929;*/
	color:#000;
}
#faq .questionBox dt:hover{
	transition: all 0.3s;
	background:#F6F7F7;
}
#faq .questionBox dt:after{
	position: absolute;
	 display: inline-block;
	content: "";
	width: 10px;
	height: 9px;
	background: url(https://garni1997.itembox.design/item/img/common/icon_angle.svg)no-repeat center center/contain;
	top: 0;
	bottom: 0;
	right: calc((15 / 341 * 100%) + 5px);;
	margin: auto;
	transition: 0.2s;
}
#faq .questionBox.is-active dt{
	background:#F6F7F7;
}
#faq .questionBox.is-active dt:after{
	transform: rotate(180deg);
}
#faq .questionBox dd {
	margin: 0;
	/*line-height: 0;
	height: 0;
	visibility: hidden;
	opacity: 0;*/
	display: none;
	line-height: 2;
	padding: 24px 2% 32px;
		/*color: #707171;*/
	color:#000;
}
#faq .questionBox dd.is-open {
	/*height: auto;
	opacity: 1;
	visibility: visible;*/
	display: block;
	
  }
  #faq .contactBtn{text-align: center; padding: 32px 0;}

  @media (max-width: 767px){
	#faq .contentBox>h3{
		font-size: 1.5rem;
	}
	#faq .contentBox {
		margin-top: 32px;
	}
	#faq .anchorWrap li {
		margin: 0 2% 8px;
	}
	#faq .questionBox dt{
		padding: 28px 12% 28px 2% ;
	}
  }