@charset "utf-8";

.faqBtnGrid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    justify-items: center;
}

.faqTitBox {
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.faqTitBox h2 {
	position: relative;
  	display: inline;
  	padding: 0 40px;
}

.faqTitBox h2:before {
  	content: "";
	position: absolute;
  	top: 5px;
  	left: 0;
  	width: 20px;
  	height: 31px;
  	background: url(/system_panel/uploads/images/ladybug-right.png) no-repeat center;
  	background-size: contain;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:768px) {
    .faqBtnGrid {
        grid-template-columns: repeat(3, 1fr);
    }
  
  	.faqTitBox h2:before {
      width: 29px;
    }
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */