@charset "UTF-8";


/* faqLayout
------------------------------------*/
.faqLayout .h2_wrap .inner {
    padding-left: 80px;
    width: calc(96% - 80px);
}
.faqLayout .h2_wrap .inner::before {
  background-image: url("../img/h2_img.png");
  width: 61px;
  height: 50px;
}
.faqLayout #c01 .btn_li {
    justify-content: flex-start;
    margin-bottom: 60px;
    gap: 10px 4%;
    flex-wrap: wrap;
    flex-direction: row;
}
.faqLayout #c01 .btn_li > li {
    max-width: 250px;
    width: calc(96% / 2);
}
.faqLayout #c01 .btn_li .btn {
    font-size: 0.8rem;
    line-height: 1.2;
    padding: 15px 20px;
}
.faqLayout #c01 .faq_box {
    padding: 40px 0;
    border-bottom: 1px solid #d1d1d1;
}
.faqLayout #c01 .faq_box:first-of-type {
    padding-top: 0;
}
.faqLayout #c01 .faq_box > p {
    padding-left: 50px;
    position: relative;
}
.faqLayout #c01 .faq_box > p:not(:last-of-type) {
    margin-bottom: 30px;
}
.faqLayout #c01 .faq_box > p::before, .faqLayout #c01 .faq_box > p::after {
    position: absolute;
}
.faqLayout #c01 .faq_box > p::before {
    content: "";
    width: 36px;
    height: 36px;
    left: 0;
    top: 0;
    border-radius: 5px;
}
.faqLayout #c01 .faq_box > .q::before {
    background-color: #d80e19;
}
.faqLayout #c01 .faq_box > .a::before {
    background-color: #545454;
}
.faqLayout #c01 .faq_box > p::after {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    top: 4px;
    left: 12px;
}
.faqLayout #c01 .faq_box > .q::after {
    content: "Q";
}
.faqLayout #c01 .faq_box > .a::after {
    content: "A";
}


			/* 【タブレット用のスタイル記述】 */
			@media screen and (min-width: 760px) {
                .faqLayout .h2_wrap .inner {
                    padding-left: 130px;
                    width: calc(96% - 130px);
                }
                .faqLayout .h2_wrap .inner::before {
                  width: 97px;
                  height: 80px;
                }
                .faqLayout #c01 .btn_li {
                    margin-bottom: 80px;
                }
                .faqLayout #c01 .btn_li > li {
                    width: calc(92% / 3);
                }
                .faqLayout #c01 .btn_li .btn {
                    font-size: 1rem;
                }
                .faqLayout #c01 .faq_box {
                    padding: 50px 0;
                }
			}
			/* 【PC用のスタイル記述】 */
			@media screen and (min-width: 960px) {
                .faqLayout #c01 .btn_li > li {
                    width: 100%;
                }
			}