@charset "utf-8";

.faqPositionId {
    width: 100%;
    height: 60px;
    position: absolute;
    top: -60px;
    left: 0;
    z-index: -1;
}

.black02 {
    color: var(--black02);
}

.faqBg01,
.faqBg02,
.faqBg03,
.faqBg04 {
    position: relative;
}

.faqBg01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/system_panel/uploads/images/faq_bg01.jpg);
    background-size: auto;
    background-position: center top;
    z-index: -1;
}

.faqBg02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/system_panel/uploads/images/faq_bg02.jpg);
    background-size: auto;
    background-position: center top;
    z-index: -1;
}

.faqBg03::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/system_panel/uploads/images/faq_bg03.jpg);
    background-size: auto;
    background-position: center top;
    z-index: -1;
}

.faqBg04::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120vh;
    background-image: url(/system_panel/uploads/images/faq_bg04.jpg);
    background-size: auto;
    background-position: center top;
    z-index: -1;
}

.gjs-dashed .faqBg01::before,
.gjs-dashed .faqBg02::before,
.gjs-dashed .faqBg03::before,
.gjs-dashed .faqBg04::before {
    height: 100%;
}

/*===========================================================
ボタン
===========================================================*/

.inFaqBtnArea {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

.faqBtn {
    padding: 6px 20px 6px 30px;
    width: 100%;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(16px, 15.029px + 0.259vw, 20px);
    font-weight: 700;
    font-family: var(--fontB);
    color: var(--black);
    letter-spacing: 0;
    line-height: 1.75;
    background: var(--white);
    gap: 10px;
    transition: all .3s;
}

.faqBtn:hover {
    color: var(--black);
}

.faqBtnArrow {
    position: relative;
    width: 15px;
    height: 7.5px;
    transition: all .3s;
}

.faqBtnArrow::before,
.faqBtnArrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 8px;
    border-radius: 9999px;
    background-color: var(--black);
    transform-origin: 50% calc(100% - 1px);
}

.faqBtnArrow::before {
    transform: rotate(45deg);
}

.faqBtnArrow::after {
    transform: rotate(-45deg);
}

.faqBtn:hover .faqBtnArrow {
    transform: translateY(5px);
}


/*===========================================================
アコーディオン
===========================================================*/

.gjs-dashed .accordionContent {
    display: block;
}

.accordionlist {
    cursor: pointer;
    border-bottom: 1px solid var(--primary);
    transition: all .3s;
}

.accordionlist:hover .faqAccordionBtn {
    opacity: .7;
}

.faqAccordionBtn {
    padding: 20px 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
}

.accordionlist:first-child .faqAccordionBtn {
    padding: 0 0 20px;
}

.accordionBtnInr {
    display: flex;
    align-items: flex-start;
    flex: 1;
}

.accordionIconBatch {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    aspect-ratio: 1/1;
    margin: 0 8px 0 0;
    font-size: clamp(30px, 27.573px + 0.647vw, 40px);
    line-height: 1.5em;
    border-radius: 50%;
}

.accordionIconBatchQ {
    color: var(--primary);
}

.accordionIconBatchA {
    color: var(--primary);
}

.accordionTit {
    margin: 6px 0 0;
    font-size: clamp(18px, 16.301px + 0.453vw, 25px);
}

.accordionTxt {
    flex: 1;
    font-size: clamp(15px, 14.272px + 0.194vw, 18px);
}

.accordionTxt a {
    color: var(--base-font-color);
    text-decoration: underline;
}

.accordionTxt a:hover {
    color: var(--base-font-color);
    text-decoration: none;
}

.accordionIcon {
    position: relative;
    width: 20px;
    aspect-ratio: 1/1;
    margin: 0 0 0 10px;
}

.accordionIconItem {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    margin: auto auto auto auto;
    background-color: var(--white);
    transition: all .3s;
}

.accordionIconItemColor02 {
    background: var(--black);
}

.accordionIconItem:first-of-type {
    transform: rotate(90deg);
}

.accordionIcon.active .accordionIconItem:first-of-type {
    transform: rotate(0deg);
}

.accordionContent {
    display: none;
    padding: 0 0 20px 38px;
    cursor: auto;
    border-top: 1px solid var(--base-font-color);
}

.accordionContentInr {
    display: flex;
    align-items: baseline;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:568px) {

    /*===========================================================
	ボタン
	===========================================================*/

    .inFaqBtnArea {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* min-width: 568px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:768px) {

    .faqPositionId {
        top: -100px;
    }

    /*===========================================================
	アコーディオン
	===========================================================*/

    .faqAccordionBtn {
        padding: 30px 0;
    }

    .accordionlist:first-child .faqAccordionBtn {
        padding: 0 0 30px;
    }

    .accordionIconBatch {
        width: 35px;
        margin: 0 15px 0 0;
    }

    .accordionIcon {
        width: 25px;
    }

    .accordionContent {
        padding: 0 0 30px 50px;
    }

}

/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {

    .faqPositionId {
        top: -150px;
    }

    .faqBtn {
        min-height: 70px;
        padding: 6px 10px;
    }

    /*===========================================================
	ボタン
	===========================================================*/

    .inFaqBtnArea {
        grid-template-columns: repeat(4, 1fr);
    }

}

/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1400px) {
    .faqBtn {
        padding: 6px 20px 6px 30px;
    }
}

/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */